TopicRuleReference

class aws_cdk.aws_iot.TopicRuleReference(*, rule_name, topic_rule_arn)

Bases: object

A reference to a TopicRule resource.

Parameters:
  • rule_name (str) – The RuleName of the TopicRule resource.

  • topic_rule_arn (str) – The ARN of the TopicRule 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

topic_rule_reference = iot.TopicRuleReference(
    rule_name="ruleName",
    topic_rule_arn="topicRuleArn"
)

Attributes

rule_name

The RuleName of the TopicRule resource.

topic_rule_arn

The ARN of the TopicRule resource.