interface ParametersItemsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ImageBuilder.CfnAllWorkflowBuildVersionsPropsMixin.ParametersItemsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsimagebuilder#CfnAllWorkflowBuildVersionsPropsMixin_ParametersItemsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.imagebuilder.CfnAllWorkflowBuildVersionsPropsMixin.ParametersItemsProperty |
Python | aws_cdk.cfn_property_mixins.aws_imagebuilder.CfnAllWorkflowBuildVersionsPropsMixin.ParametersItemsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_imagebuilder » CfnAllWorkflowBuildVersionsPropsMixin » ParametersItemsProperty |
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 parametersItemsProperty: imagebuilder.CfnAllWorkflowBuildVersionsPropsMixin.ParametersItemsProperty = {
defaultValue: ['defaultValue'],
description: 'description',
name: 'name',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| default | string[] | The default value of this parameter if no input is provided. |
| description? | string | Describes this parameter. |
| name? | string | The name of this input parameter. |
| type? | string | The type of input this parameter provides. |
defaultValue?
Type:
string[]
(optional)
The default value of this parameter if no input is provided.
description?
Type:
string
(optional)
Describes this parameter.
name?
Type:
string
(optional)
The name of this input parameter.
type?
Type:
string
(optional)
The type of input this parameter provides.

.NET
Go
Java
Python
TypeScript