ThingReference

class aws_cdk.aws_iot.ThingReference(*, thing_arn, thing_name)

Bases: object

A 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 import aws_iot as iot

thing_reference = 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.