Interface CfnImageRecipe.ComponentConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnImageRecipe.ComponentConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnImageRecipe

@Stability(Stable) public static interface CfnImageRecipe.ComponentConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Configuration details of the component.

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.*;
 ComponentConfigurationProperty componentConfigurationProperty = ComponentConfigurationProperty.builder()
         .componentArn("componentArn")
         .parameters(List.of(ComponentParameterProperty.builder()
                 .name("name")
                 .value(List.of("value"))
                 .build()))
         .build();
 

See Also: