interface ImageRecipeAttributes
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ImageBuilder.Alpha.ImageRecipeAttributes |
Go | github.com/aws/aws-cdk-go/awsimagebuilderalpha/v2#ImageRecipeAttributes |
Java | software.amazon.awscdk.services.imagebuilder.alpha.ImageRecipeAttributes |
Python | aws_cdk.aws_imagebuilder_alpha.ImageRecipeAttributes |
TypeScript (source) | @aws-cdk/aws-imagebuilder-alpha ยป ImageRecipeAttributes |
Properties for an EC2 Image Builder image 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 imageRecipeAttributes: imagebuilder_alpha.ImageRecipeAttributes = {
imageRecipeArn: 'imageRecipeArn',
imageRecipeName: 'imageRecipeName',
imageRecipeVersion: 'imageRecipeVersion',
};
Properties
| Name | Type | Description |
|---|---|---|
| image | string | The ARN of the image recipe. |
| image | string | The name of the image recipe. |
| image | string | The version of the image recipe. |
imageRecipeArn?
Type:
string
(optional, default: derived from the imageRecipeName)
The ARN of the image recipe.
imageRecipeName?
Type:
string
(optional, default: derived from the imageRecipeArn)
The name of the image recipe.
imageRecipeVersion?
Type:
string
(optional, default: derived from imageRecipeArn. if a imageRecipeName is provided, the latest version, x.x.x, will
be used)
The version of the image recipe.

.NET
Go
Java
Python
TypeScript (