ImageRecipeAttributes
- class aws_cdk.aws_imagebuilder_alpha.ImageRecipeAttributes(*, image_recipe_arn=None, image_recipe_name=None, image_recipe_version=None)
Bases:
object(experimental) Properties for an EC2 Image Builder image recipe.
- Parameters:
image_recipe_arn (
Optional[str]) – (experimental) The ARN of the image recipe. Default: - derived from the imageRecipeNameimage_recipe_name (
Optional[str]) – (experimental) The name of the image recipe. Default: - derived from the imageRecipeArnimage_recipe_version (
Optional[str]) – (experimental) The version of the image recipe. Default: - derived from imageRecipeArn. if a imageRecipeName is provided, the latest version, x.x.x, will be used
- Stability:
experimental
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_imagebuilder_alpha as imagebuilder_alpha image_recipe_attributes = imagebuilder_alpha.ImageRecipeAttributes( image_recipe_arn="imageRecipeArn", image_recipe_name="imageRecipeName", image_recipe_version="imageRecipeVersion" )
Attributes
- image_recipe_arn
(experimental) The ARN of the image recipe.
- Default:
derived from the imageRecipeName
- Stability:
experimental
- image_recipe_name
(experimental) The name of the image recipe.
- Default:
derived from the imageRecipeArn
- Stability:
experimental
- image_recipe_version
(experimental) The version of the image recipe.
- Default:
derived from imageRecipeArn. if a imageRecipeName is provided, the latest version, x.x.x, will
be used
- Stability:
experimental