interface ComponentParameterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ImageBuilder.CfnContainerRecipePropsMixin.ComponentParameterProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsimagebuilder#CfnContainerRecipePropsMixin_ComponentParameterProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.imagebuilder.CfnContainerRecipePropsMixin.ComponentParameterProperty |
Python | aws_cdk.cfn_property_mixins.aws_imagebuilder.CfnContainerRecipePropsMixin.ComponentParameterProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_imagebuilder » 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 { aws_imagebuilder as imagebuilder } from '@aws-cdk/cfn-property-mixins';
const componentParameterProperty: imagebuilder.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