interface CfnAggregationAuthorizationProps
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.Config.CfnAggregationAuthorizationProps | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconfig#CfnAggregationAuthorizationProps | 
|  Java | software.amazon.awscdk.services.config.CfnAggregationAuthorizationProps | 
|  Python | aws_cdk.aws_config.CfnAggregationAuthorizationProps | 
|  TypeScript | aws-cdk-lib»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 { aws_config as config } from 'aws-cdk-lib';
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.
