ThingGroupReference
- class aws_cdk.aws_iot.ThingGroupReference(*, thing_group_arn, thing_group_name)
Bases:
object
A reference to a ThingGroup resource.
- Parameters:
thing_group_arn (
str
) – The ARN of the ThingGroup resource.thing_group_name (
str
) – The ThingGroupName of the ThingGroup 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_group_reference = iot.ThingGroupReference( thing_group_arn="thingGroupArn", thing_group_name="thingGroupName" )
Attributes
- thing_group_arn
The ARN of the ThingGroup resource.
- thing_group_name
The ThingGroupName of the ThingGroup resource.