interface AccountAggregationSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Config.Mixins.CfnConfigurationAggregatorPropsMixin.AccountAggregationSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconfig/mixins#CfnConfigurationAggregatorPropsMixin_AccountAggregationSourceProperty |
Java | software.amazon.awscdk.mixins.preview.services.config.mixins.CfnConfigurationAggregatorPropsMixin.AccountAggregationSourceProperty |
Python | aws_cdk.mixins_preview.aws_config.mixins.CfnConfigurationAggregatorPropsMixin.AccountAggregationSourceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_config » mixins » CfnConfigurationAggregatorPropsMixin » AccountAggregationSourceProperty |
A collection of accounts and regions.
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 accountAggregationSourceProperty: config_mixins.CfnConfigurationAggregatorPropsMixin.AccountAggregationSourceProperty = {
accountIds: ['accountIds'],
allAwsRegions: false,
awsRegions: ['awsRegions'],
};
Properties
| Name | Type | Description |
|---|---|---|
| account | string[] | The 12-digit account ID of the account being aggregated. |
| all | boolean | IResolvable | If true, aggregate existing AWS Config regions and future regions. |
| aws | string[] | The source regions being aggregated. |
accountIds?
Type:
string[]
(optional)
The 12-digit account ID of the account being aggregated.
allAwsRegions?
Type:
boolean | IResolvable
(optional)
If true, aggregate existing AWS Config regions and future regions.
awsRegions?
Type:
string[]
(optional)
The source regions being aggregated.

.NET
Go
Java
Python
TypeScript