ThingReference
- class aws_cdk.interfaces.aws_iot.ThingReference(*, thing_arn, thing_name)
Bases:
objectA reference to a Thing resource.
- Parameters:
thing_arn (
str) – The ARN of the Thing resource.thing_name (
str) – The ThingName of the Thing 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.interfaces import aws_iot as interfaces_iot thing_reference = interfaces_iot.ThingReference( thing_arn="thingArn", thing_name="thingName" )
Attributes
- thing_arn
The ARN of the Thing resource.
- thing_name
The ThingName of the Thing resource.