Interface ImageRecipeAttributes
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ImageRecipeAttributes.Jsii$Proxy
@Generated(value="jsii-pacmak/1.120.0 (build 192dc88)",
date="2025-12-05T22:26:50.064Z")
@Stability(Experimental)
public interface ImageRecipeAttributes
extends software.amazon.jsii.JsiiSerializable
(experimental) 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 software.amazon.awscdk.services.imagebuilder.alpha.*;
ImageRecipeAttributes imageRecipeAttributes = ImageRecipeAttributes.builder()
.imageRecipeArn("imageRecipeArn")
.imageRecipeName("imageRecipeName")
.imageRecipeVersion("imageRecipeVersion")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forImageRecipeAttributesstatic final classAn implementation forImageRecipeAttributes -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getImageRecipeArn
(experimental) The ARN of the image recipe.Default: - derived from the imageRecipeName
-
getImageRecipeName
(experimental) The name of the image recipe.Default: - derived from the imageRecipeArn
-
getImageRecipeVersion
(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
-
builder
- Returns:
- a
ImageRecipeAttributes.BuilderofImageRecipeAttributes
-