interface ComponentConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ImageBuilder.CfnImageRecipePropsMixin.ComponentConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsimagebuilder#CfnImageRecipePropsMixin_ComponentConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.imagebuilder.CfnImageRecipePropsMixin.ComponentConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_imagebuilder.CfnImageRecipePropsMixin.ComponentConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_imagebuilder » CfnImageRecipePropsMixin » ComponentConfigurationProperty |
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 { aws_imagebuilder as imagebuilder } from '@aws-cdk/cfn-property-mixins';
const componentConfigurationProperty: imagebuilder.CfnImageRecipePropsMixin.ComponentConfigurationProperty = {
componentArn: 'componentArn',
parameters: [{
name: 'name',
value: ['value'],
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| component | string | IComponent | The Amazon Resource Name (ARN) of the component. |
| parameters? | IResolvable | (IResolvable | Component)[] | A group of parameter settings that Image Builder uses to configure the component for a specific recipe. |
componentArn?
Type:
string | IComponent
(optional)
The Amazon Resource Name (ARN) of the component.
parameters?
Type:
IResolvable | (IResolvable | Component)[]
(optional)
A group of parameter settings that Image Builder uses to configure the component for a specific recipe.

.NET
Go
Java
Python
TypeScript