ThingTypeReference
- class aws_cdk.aws_iot.ThingTypeReference(*, thing_type_arn, thing_type_name)
Bases:
object
A reference to a ThingType resource.
- Parameters:
thing_type_arn (
str
) – The ARN of the ThingType resource.thing_type_name (
str
) – The ThingTypeName of the ThingType 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_type_reference = iot.ThingTypeReference( thing_type_arn="thingTypeArn", thing_type_name="thingTypeName" )
Attributes
- thing_type_arn
The ARN of the ThingType resource.
- thing_type_name
The ThingTypeName of the ThingType resource.