Interface CfnContainerRecipe.ComponentConfigurationProperty

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

@Stability(Stable) public static interface CfnContainerRecipe.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();