interface ContainerRecipeReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.ImageBuilder.ContainerRecipeReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsimagebuilder#ContainerRecipeReference |
Java | software.amazon.awscdk.interfaces.imagebuilder.ContainerRecipeReference |
Python | aws_cdk.interfaces.aws_imagebuilder.ContainerRecipeReference |
TypeScript | aws-cdk-lib » interfaces » aws_imagebuilder » ContainerRecipeReference |
A reference to a ContainerRecipe resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_imagebuilder as interfaces_imagebuilder } from 'aws-cdk-lib/interfaces';
const containerRecipeReference: interfaces_imagebuilder.ContainerRecipeReference = {
containerRecipeArn: 'containerRecipeArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| container | string | The Arn of the ContainerRecipe resource. |
containerRecipeArn
Type:
string
The Arn of the ContainerRecipe resource.

.NET
Go
Java
Python
TypeScript