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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnImageRecipe.ComponentConfigurationPropertystatic final classAn 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.- See Also:
-
getParameters
A group of parameter settings that Image Builder uses to configure the component for a specific recipe.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnImageRecipe.ComponentParameterProperty>- See Also:
-
builder
-