interface ComponentConfiguration
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ImageBuilder.Alpha.ComponentConfiguration |
Go | github.com/aws/aws-cdk-go/awsimagebuilderalpha/v2#ComponentConfiguration |
Java | software.amazon.awscdk.services.imagebuilder.alpha.ComponentConfiguration |
Python | aws_cdk.aws_imagebuilder_alpha.ComponentConfiguration |
TypeScript (source) | @aws-cdk/aws-imagebuilder-alpha ยป ComponentConfiguration |
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 * as imagebuilder_alpha from '@aws-cdk/aws-imagebuilder-alpha';
declare const component: imagebuilder_alpha.Component;
declare const componentParameterValue: imagebuilder_alpha.ComponentParameterValue;
const componentConfiguration: imagebuilder_alpha.ComponentConfiguration = {
component: component,
// the properties below are optional
parameters: {
parametersKey: componentParameterValue,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| component | IComponent | The component to execute as part of the image build. |
| parameters? | { [string]: Component } | The parameters to use when executing the component. |
component
Type:
IComponent
The component to execute as part of the image build.
parameters?
Type:
{ [string]: Component }
(optional, 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)
The parameters to use when executing the component.

.NET
Go
Java
Python
TypeScript (