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