AggregationAuthorizationReference

class aws_cdk.aws_config.AggregationAuthorizationReference(*, aggregation_authorization_arn, authorized_account_id, authorized_aws_region)

Bases: object

A reference to a AggregationAuthorization resource.

Parameters:
  • aggregation_authorization_arn (str) – The ARN of the AggregationAuthorization resource.

  • authorized_account_id (str) – The AuthorizedAccountId of the AggregationAuthorization resource.

  • authorized_aws_region (str) – The AuthorizedAwsRegion of the AggregationAuthorization 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

aggregation_authorization_reference = config.AggregationAuthorizationReference(
    aggregation_authorization_arn="aggregationAuthorizationArn",
    authorized_account_id="authorizedAccountId",
    authorized_aws_region="authorizedAwsRegion"
)

Attributes

aggregation_authorization_arn

The ARN of the AggregationAuthorization resource.

authorized_account_id

The AuthorizedAccountId of the AggregationAuthorization resource.

authorized_aws_region

The AuthorizedAwsRegion of the AggregationAuthorization resource.