ContainerRecipeAttributes
- class aws_cdk.aws_imagebuilder_alpha.ContainerRecipeAttributes(*, container_recipe_arn=None, container_recipe_name=None, container_recipe_version=None)
Bases:
object(experimental) Properties for an EC2 Image Builder container recipe.
- Parameters:
container_recipe_arn (
Optional[str]) – (experimental) The ARN of the container recipe. Default: - derived from containerRecipeNamecontainer_recipe_name (
Optional[str]) – (experimental) The name of the container recipe. Default: - derived from containerRecipeArncontainer_recipe_version (
Optional[str]) – (experimental) The version of the container recipe. Default: - derived from containerRecipeArn. if a containerRecipeName 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 container_recipe_attributes = imagebuilder_alpha.ContainerRecipeAttributes( container_recipe_arn="containerRecipeArn", container_recipe_name="containerRecipeName", container_recipe_version="containerRecipeVersion" )
Attributes
- container_recipe_arn
(experimental) The ARN of the container recipe.
- Default:
derived from containerRecipeName
- Stability:
experimental
- container_recipe_name
(experimental) The name of the container recipe.
- Default:
derived from containerRecipeArn
- Stability:
experimental
- container_recipe_version
(experimental) The version of the container recipe.
- Default:
derived from containerRecipeArn. if a containerRecipeName is provided, the latest version, x.x.x, will
be used.
- Stability:
experimental