interface CfnConfigurationAggregatorMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Config.Mixins.CfnConfigurationAggregatorMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconfig/mixins#CfnConfigurationAggregatorMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.config.mixins.CfnConfigurationAggregatorMixinProps |
Python | aws_cdk.mixins_preview.aws_config.mixins.CfnConfigurationAggregatorMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_config » mixins » CfnConfigurationAggregatorMixinProps |
Properties for CfnConfigurationAggregatorPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as config_mixins } from '@aws-cdk/mixins-preview/aws-config';
const cfnConfigurationAggregatorMixinProps: config_mixins.CfnConfigurationAggregatorMixinProps = {
accountAggregationSources: [{
accountIds: ['accountIds'],
allAwsRegions: false,
awsRegions: ['awsRegions'],
}],
configurationAggregatorName: 'configurationAggregatorName',
organizationAggregationSource: {
allAwsRegions: false,
awsRegions: ['awsRegions'],
roleArn: 'roleArn',
},
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
Go
Java
Python
TypeScript