DimensionReference
- class aws_cdk.interfaces.aws_iot.DimensionReference(*, dimension_arn, dimension_name)
Bases:
objectA reference to a Dimension resource.
- Parameters:
dimension_arn (
str) – The ARN of the Dimension resource.dimension_name (
str) – The Name of the Dimension 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 dimension_reference = interfaces_aws_iot.DimensionReference( dimension_arn="dimensionArn", dimension_name="dimensionName" )
Attributes
- dimension_arn
The ARN of the Dimension resource.
- dimension_name
The Name of the Dimension resource.