interface ComponentParameterProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.ImageBuilder.CfnContainerRecipe.ComponentParameterProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsimagebuilder#CfnContainerRecipe_ComponentParameterProperty |
Java | software.amazon.awscdk.services.imagebuilder.CfnContainerRecipe.ComponentParameterProperty |
Python | aws_cdk.aws_imagebuilder.CfnContainerRecipe.ComponentParameterProperty |
TypeScript | aws-cdk-lib » aws_imagebuilder » CfnContainerRecipe » 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-lib';
const componentParameterProperty: imagebuilder.CfnContainerRecipe.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
The name of the component parameter to set.
value
Type:
string[]
Sets the value for the named component parameter.