AggregationAuthorizationReference
- class aws_cdk.interfaces.aws_config.AggregationAuthorizationReference(*, aggregation_authorization_arn, authorized_account_id, authorized_aws_region)
Bases:
objectA 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.interfaces import aws_config as interfaces_aws_config aggregation_authorization_reference = interfaces_aws_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.