interface CommandParameterValueProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoT.CfnCommandPropsMixin.CommandParameterValueProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiot#CfnCommandPropsMixin_CommandParameterValueProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.iot.CfnCommandPropsMixin.CommandParameterValueProperty |
Python | aws_cdk.cfn_property_mixins.aws_iot.CfnCommandPropsMixin.CommandParameterValueProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iot » CfnCommandPropsMixin » CommandParameterValueProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_iot as iot } from '@aws-cdk/cfn-property-mixins';
const commandParameterValueProperty: iot.CfnCommandPropsMixin.CommandParameterValueProperty = {
b: false,
bin: 'bin',
d: 123,
i: 123,
l: 'l',
s: 's',
ul: 'ul',
};
Properties
| Name | Type | Description |
|---|---|---|
| b? | boolean | IResolvable | |
| bin? | string | |
| d? | number | |
| i? | number | |
| l? | string | |
| s? | string | |
| ul? | string |
b?
Type:
boolean | IResolvable
(optional)
bin?
Type:
string
(optional)
d?
Type:
number
(optional)
i?
Type:
number
(optional)
l?
Type:
string
(optional)
s?
Type:
string
(optional)
ul?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript