interface CfnConfigurationAggregatorProps
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.Config.CfnConfigurationAggregatorProps | 
  Java | software.amazon.awscdk.services.config.CfnConfigurationAggregatorProps | 
  Python | aws_cdk.aws_config.CfnConfigurationAggregatorProps | 
  TypeScript  | @aws-cdk/aws-config » CfnConfigurationAggregatorProps | 
Properties for defining a CfnConfigurationAggregator.
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 cfnConfigurationAggregatorProps: config.CfnConfigurationAggregatorProps = {
  accountAggregationSources: [{
    accountIds: ['accountIds'],
    // the properties below are optional
    allAwsRegions: false,
    awsRegions: ['awsRegions'],
  }],
  configurationAggregatorName: 'configurationAggregatorName',
  organizationAggregationSource: {
    roleArn: 'roleArn',
    // the properties below are optional
    allAwsRegions: false,
    awsRegions: ['awsRegions'],
  },
  tags: [{
    key: 'key',
    value: 'value',
  }],
};
Properties
| Name | Type | Description | 
|---|---|---|
| account | IResolvable | IResolvable | Account[] | Provides a list of source accounts and regions to be aggregated. | 
| configuration | string | The name of the aggregator. | 
| organization | IResolvable | Organization | Provides an organization and list of regions to be aggregated. | 
| tags? | Cfn[] | An array of tag object. | 
accountAggregationSources?
Type:
IResolvable | IResolvable | Account[]
(optional)
Provides a list of source accounts and regions to be aggregated.
configurationAggregatorName?
Type:
string
(optional)
The name of the aggregator.
organizationAggregationSource?
Type:
IResolvable | Organization
(optional)
Provides an organization and list of regions to be aggregated.
tags?
Type:
Cfn[]
(optional)
An array of tag object.

 .NET
 Java
 Python
 TypeScript