CommandReference
- class aws_cdk.aws_iot.CommandReference(*, command_arn, command_id)
Bases:
object
A reference to a Command resource.
- Parameters:
command_arn (
str
) – The ARN of the Command resource.command_id (
str
) – The CommandId of the Command resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_iot as iot command_reference = iot.CommandReference( command_arn="commandArn", command_id="commandId" )
Attributes
- command_arn
The ARN of the Command resource.
- command_id
The CommandId of the Command resource.