DimensionReference
- class aws_cdk.aws_iot.DimensionReference(*, dimension_arn, dimension_name)
Bases:
object
A 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 import aws_iot as iot dimension_reference = 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.