ConfigRuleReference

class aws_cdk.aws_config.ConfigRuleReference(*, config_rule_arn, config_rule_name)

Bases: object

A reference to a ConfigRule resource.

Parameters:
  • config_rule_arn (str) – The ARN of the ConfigRule resource.

  • config_rule_name (str) – The ConfigRuleName of the ConfigRule 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_config as config

config_rule_reference = config.ConfigRuleReference(
    config_rule_arn="configRuleArn",
    config_rule_name="configRuleName"
)

Attributes

config_rule_arn

The ARN of the ConfigRule resource.

config_rule_name

The ConfigRuleName of the ConfigRule resource.