Interface ComponentConfiguration
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ComponentConfiguration.Jsii$Proxy
@Generated(value="jsii-pacmak/1.120.0 (build 192dc88)",
date="2025-12-05T22:26:50.012Z")
@Stability(Experimental)
public interface ComponentConfiguration
extends software.amazon.jsii.JsiiSerializable
(experimental) Configuration details for a component, to include in a recipe.
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.alpha.*;
Component component;
ComponentParameterValue componentParameterValue;
ComponentConfiguration componentConfiguration = ComponentConfiguration.builder()
.component(component)
// the properties below are optional
.parameters(Map.of(
"parametersKey", componentParameterValue))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forComponentConfigurationstatic final classAn implementation forComponentConfiguration -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) The component to execute as part of the image build.default Map<String, ComponentParameterValue> (experimental) The parameters to use when executing the component.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getComponent
(experimental) The component to execute as part of the image build. -
getParameters
(experimental) The parameters to use when executing the component.Default: - no parameters. if the component contains parameters, their default values will be used. otherwise, any required parameters that are not included will result in a build failure
-
builder
- Returns:
- a
ComponentConfiguration.BuilderofComponentConfiguration
-