ThingGroupReference
- class aws_cdk.interfaces.aws_iot.ThingGroupReference(*, thing_group_arn, thing_group_name)
Bases:
objectA 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.interfaces import aws_iot as interfaces_aws_iot thing_group_reference = interfaces_aws_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.