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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnContainerRecipe.ComponentConfigurationProperty
static final class
An implementation forCfnContainerRecipe.ComponentConfigurationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getComponentArn
The Amazon Resource Name (ARN) of the component. -
getParameters
CfnContainerRecipe.ComponentConfigurationProperty.Parameters
. -
builder
-