interface CommandParameterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoT.Mixins.CfnCommandPropsMixin.CommandParameterProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiot/mixins#CfnCommandPropsMixin_CommandParameterProperty |
Java | software.amazon.awscdk.mixins.preview.services.iot.mixins.CfnCommandPropsMixin.CommandParameterProperty |
Python | aws_cdk.mixins_preview.aws_iot.mixins.CfnCommandPropsMixin.CommandParameterProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iot » mixins » CfnCommandPropsMixin » CommandParameterProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as iot_mixins } from '@aws-cdk/mixins-preview/aws-iot';
const commandParameterProperty: iot_mixins.CfnCommandPropsMixin.CommandParameterProperty = {
defaultValue: {
b: false,
bin: 'bin',
d: 123,
i: 123,
l: 'l',
s: 's',
ul: 'ul',
},
description: 'description',
name: 'name',
value: {
b: false,
bin: 'bin',
d: 123,
i: 123,
l: 'l',
s: 's',
ul: 'ul',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| default | IResolvable | Command | |
| description? | string | |
| name? | string | |
| value? | IResolvable | Command |
defaultValue?
Type:
IResolvable | Command
(optional)
description?
Type:
string
(optional)
name?
Type:
string
(optional)
value?
Type:
IResolvable | Command
(optional)

.NET
Go
Java
Python
TypeScript