interface ContainerRecipeAttributes
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ImageBuilder.Alpha.ContainerRecipeAttributes |
Go | github.com/aws/aws-cdk-go/awsimagebuilderalpha/v2#ContainerRecipeAttributes |
Java | software.amazon.awscdk.services.imagebuilder.alpha.ContainerRecipeAttributes |
Python | aws_cdk.aws_imagebuilder_alpha.ContainerRecipeAttributes |
TypeScript (source) | @aws-cdk/aws-imagebuilder-alpha ยป ContainerRecipeAttributes |
Properties for an EC2 Image Builder container recipe.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as imagebuilder_alpha from '@aws-cdk/aws-imagebuilder-alpha';
const containerRecipeAttributes: imagebuilder_alpha.ContainerRecipeAttributes = {
containerRecipeArn: 'containerRecipeArn',
containerRecipeName: 'containerRecipeName',
containerRecipeVersion: 'containerRecipeVersion',
};
Properties
| Name | Type | Description |
|---|---|---|
| container | string | The ARN of the container recipe. |
| container | string | The name of the container recipe. |
| container | string | The version of the container recipe. |
containerRecipeArn?
Type:
string
(optional, default: derived from containerRecipeName)
The ARN of the container recipe.
containerRecipeName?
Type:
string
(optional, default: derived from containerRecipeArn)
The name of the container recipe.
containerRecipeVersion?
Type:
string
(optional, default: derived from containerRecipeArn. if a containerRecipeName is provided, the latest version, x.x.x, will
be used.)
The version of the container recipe.

.NET
Go
Java
Python
TypeScript (