interface ComponentParameterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ImageBuilder.Mixins.CfnContainerRecipePropsMixin.ComponentParameterProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsimagebuilder/mixins#CfnContainerRecipePropsMixin_ComponentParameterProperty |
Java | software.amazon.awscdk.mixins.preview.services.imagebuilder.mixins.CfnContainerRecipePropsMixin.ComponentParameterProperty |
Python | aws_cdk.mixins_preview.aws_imagebuilder.mixins.CfnContainerRecipePropsMixin.ComponentParameterProperty |
TypeScript | @aws-cdk/mixins-preview » aws_imagebuilder » mixins » CfnContainerRecipePropsMixin » ComponentParameterProperty |
Contains a key/value pair that sets the named component parameter.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as imagebuilder_mixins } from '@aws-cdk/mixins-preview/aws-imagebuilder';
const componentParameterProperty: imagebuilder_mixins.CfnContainerRecipePropsMixin.ComponentParameterProperty = {
name: 'name',
value: ['value'],
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The name of the component parameter to set. |
| value? | string[] | Sets the value for the named component parameter. |
name?
Type:
string
(optional)
The name of the component parameter to set.
value?
Type:
string[]
(optional)
Sets the value for the named component parameter.

.NET
Go
Java
Python
TypeScript