Interface AmazonManagedComponentOptions

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
AmazonManagedComponentOptions.Jsii$Proxy

@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)", date="2025-12-18T18:20:21.645Z") @Stability(Experimental) public interface AmazonManagedComponentOptions extends software.amazon.jsii.JsiiSerializable
(experimental) Options for selecting a predefined Amazon-managed image.

Example:

 ImageRecipe imageRecipe = ImageRecipe.Builder.create(this, "AmazonManagedImageRecipe")
         .baseImage(BaseImage.fromSsmParameterName("/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64"))
         .components(List.of(ComponentConfiguration.builder()
                 .component(AmazonManagedComponent.updateOs(this, "UpdateOS", AmazonManagedComponentOptions.builder()
                         .platform(Platform.LINUX)
                         .build()))
                 .build(), ComponentConfiguration.builder()
                 .component(AmazonManagedComponent.awsCliV2(this, "AwsCli", AmazonManagedComponentOptions.builder()
                         .platform(Platform.LINUX)
                         .build()))
                 .build()))
         .build();