public static interface CfnImageRecipe.ComponentConfigurationProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnImageRecipe.ComponentConfigurationProperty.Builder
A builder for
CfnImageRecipe.ComponentConfigurationProperty |
static class |
CfnImageRecipe.ComponentConfigurationProperty.Jsii$Proxy
An implementation for
CfnImageRecipe.ComponentConfigurationProperty |
Modifier and Type | Method and Description |
---|---|
static CfnImageRecipe.ComponentConfigurationProperty.Builder |
builder() |
default java.lang.String |
getComponentArn()
The Amazon Resource Name (ARN) of the component.
|
default java.lang.Object |
getParameters()
A group of parameter settings that are used to configure the component for a specific recipe.
|
default java.lang.String getComponentArn()
default java.lang.Object getParameters()
static CfnImageRecipe.ComponentConfigurationProperty.Builder builder()