CfnAggregationAuthorizationProps
- class aws_cdk.aws_config.CfnAggregationAuthorizationProps(*, authorized_account_id, authorized_aws_region, tags=None)
Bases:
object
Properties for defining a
CfnAggregationAuthorization
.- Parameters:
authorized_account_id (
str
) – The 12-digit account ID of the account authorized to aggregate data.authorized_aws_region (
str
) – The region authorized to collect aggregated data.tags (
Optional
[Sequence
[Union
[CfnTag
,Dict
[str
,Any
]]]]) – An array of tag object.
- See:
- 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 cfn_aggregation_authorization_props = config.CfnAggregationAuthorizationProps( authorized_account_id="authorizedAccountId", authorized_aws_region="authorizedAwsRegion", # the properties below are optional tags=[CfnTag( key="key", value="value" )] )
Attributes
- authorized_account_id
The 12-digit account ID of the account authorized to aggregate data.
- authorized_aws_region
The region authorized to collect aggregated data.