public static interface CfnImageRecipe.ComponentParameterProperty
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.*; ComponentParameterProperty componentParameterProperty = ComponentParameterProperty.builder() .name("name") .value(List.of("value")) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnImageRecipe.ComponentParameterProperty.Builder
A builder for
CfnImageRecipe.ComponentParameterProperty |
static class |
CfnImageRecipe.ComponentParameterProperty.Jsii$Proxy
An implementation for
CfnImageRecipe.ComponentParameterProperty |
Modifier and Type | Method and Description |
---|---|
static CfnImageRecipe.ComponentParameterProperty.Builder |
builder() |
java.lang.String |
getName()
The name of the component parameter to set.
|
java.util.List<java.lang.String> |
getValue()
Sets the value for the named component parameter.
|
java.lang.String getName()
java.util.List<java.lang.String> getValue()
static CfnImageRecipe.ComponentParameterProperty.Builder builder()