interface CfnCommandMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoT.Mixins.CfnCommandMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiot/mixins#CfnCommandMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.iot.mixins.CfnCommandMixinProps |
Python | aws_cdk.mixins_preview.aws_iot.mixins.CfnCommandMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_iot » mixins » CfnCommandMixinProps |
Properties for CfnCommandPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-command.html
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 cfnCommandMixinProps: iot_mixins.CfnCommandMixinProps = {
commandId: 'commandId',
createdAt: 'createdAt',
deprecated: false,
description: 'description',
displayName: 'displayName',
lastUpdatedAt: 'lastUpdatedAt',
mandatoryParameters: [{
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',
},
}],
namespace: 'namespace',
payload: {
content: 'content',
contentType: 'contentType',
},
pendingDeletion: false,
roleArn: 'roleArn',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| command | string | The unique identifier of the command. |
| created | string | The timestamp, when the command was created. |
| deprecated? | boolean | IResolvable | Indicates whether the command has been deprecated. |
| description? | string | The description of the command parameter. |
| display | string | The display name of the command. |
| last | string | The timestamp, when the command was last updated. |
| mandatory | IResolvable | (IResolvable | Command)[] | |
| namespace? | string | The namespace to which the command belongs. |
| payload? | IResolvable | Command | |
| pending | boolean | IResolvable | Indicates whether the command is pending deletion. |
| role | string | The customer role associated with the command. |
| tags? | Cfn[] | The tags to be associated with the command. |
commandId?
Type:
string
(optional)
The unique identifier of the command.
createdAt?
Type:
string
(optional)
The timestamp, when the command was created.
deprecated?
Type:
boolean | IResolvable
(optional)
Indicates whether the command has been deprecated.
description?
Type:
string
(optional)
The description of the command parameter.
displayName?
Type:
string
(optional)
The display name of the command.
lastUpdatedAt?
Type:
string
(optional)
The timestamp, when the command was last updated.
mandatoryParameters?
Type:
IResolvable | (IResolvable | Command)[]
(optional)
namespace?
Type:
string
(optional)
The namespace to which the command belongs.
payload?
Type:
IResolvable | Command
(optional)
pendingDeletion?
Type:
boolean | IResolvable
(optional)
Indicates whether the command is pending deletion.
roleArn?
Type:
string
(optional)
The customer role associated with the command.
tags?
Type:
Cfn[]
(optional)
The tags to be associated with the command.

.NET
Go
Java
Python
TypeScript