interface CfnAggregationAuthorizationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Config.CfnAggregationAuthorizationProps |
Java | software.amazon.awscdk.services.config.CfnAggregationAuthorizationProps |
Python | aws_cdk.aws_config.CfnAggregationAuthorizationProps |
TypeScript | @aws-cdk/aws-config » CfnAggregationAuthorizationProps |
Properties for defining a CfnAggregationAuthorization.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as config from '@aws-cdk/aws-config';
const cfnAggregationAuthorizationProps: config.CfnAggregationAuthorizationProps = {
authorizedAccountId: 'authorizedAccountId',
authorizedAwsRegion: 'authorizedAwsRegion',
// the properties below are optional
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| authorized | string | The 12-digit account ID of the account authorized to aggregate data. |
| authorized | string | The region authorized to collect aggregated data. |
| tags? | Cfn[] | An array of tag object. |
authorizedAccountId
Type:
string
The 12-digit account ID of the account authorized to aggregate data.
authorizedAwsRegion
Type:
string
The region authorized to collect aggregated data.
tags?
Type:
Cfn[]
(optional)
An array of tag object.

.NET
Java
Python
TypeScript