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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnImageRecipe.ComponentConfigurationProperty
static final class
An implementation forCfnImageRecipe.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
A group of parameter settings that Image Builder uses to configure the component for a specific recipe. -
builder
-