ConfigurationAggregatorReference

class aws_cdk.aws_config.ConfigurationAggregatorReference(*, configuration_aggregator_arn, configuration_aggregator_name)

Bases: object

A reference to a ConfigurationAggregator resource.

Parameters:
  • configuration_aggregator_arn (str) – The ARN of the ConfigurationAggregator resource.

  • configuration_aggregator_name (str) – The ConfigurationAggregatorName of the ConfigurationAggregator 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

configuration_aggregator_reference = config.ConfigurationAggregatorReference(
    configuration_aggregator_arn="configurationAggregatorArn",
    configuration_aggregator_name="configurationAggregatorName"
)

Attributes

configuration_aggregator_arn

The ARN of the ConfigurationAggregator resource.

configuration_aggregator_name

The ConfigurationAggregatorName of the ConfigurationAggregator resource.