interface ComponentConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ImageBuilder.CfnContainerRecipePropsMixin.ComponentConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsimagebuilder#CfnContainerRecipePropsMixin_ComponentConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.imagebuilder.CfnContainerRecipePropsMixin.ComponentConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_imagebuilder.CfnContainerRecipePropsMixin.ComponentConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_imagebuilder » CfnContainerRecipePropsMixin » 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.CfnContainerRecipePropsMixin.ComponentConfigurationProperty = {
componentArn: 'componentArn',
parameters: [{
name: 'name',
value: ['value'],
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| component | string | 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
(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