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();
 
  • Method Details

    • getImageRecipeArn

      @Stability(Experimental) @Nullable default String getImageRecipeArn()
      (experimental) The ARN of the image recipe.

      Default: - derived from the imageRecipeName

    • getImageRecipeName

      @Stability(Experimental) @Nullable default String getImageRecipeName()
      (experimental) The name of the image recipe.

      Default: - derived from the imageRecipeArn

    • getImageRecipeVersion

      @Stability(Experimental) @Nullable default String 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

      @Stability(Experimental) static ImageRecipeAttributes.Builder builder()
      Returns:
      a ImageRecipeAttributes.Builder of ImageRecipeAttributes