interface OrganizationAggregationSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Config.Mixins.CfnConfigurationAggregatorPropsMixin.OrganizationAggregationSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconfig/mixins#CfnConfigurationAggregatorPropsMixin_OrganizationAggregationSourceProperty |
Java | software.amazon.awscdk.mixins.preview.services.config.mixins.CfnConfigurationAggregatorPropsMixin.OrganizationAggregationSourceProperty |
Python | aws_cdk.mixins_preview.aws_config.mixins.CfnConfigurationAggregatorPropsMixin.OrganizationAggregationSourceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_config » mixins » CfnConfigurationAggregatorPropsMixin » OrganizationAggregationSourceProperty |
This object contains regions to set up the aggregator and an IAM role to retrieve organization details.
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 organizationAggregationSourceProperty: config_mixins.CfnConfigurationAggregatorPropsMixin.OrganizationAggregationSourceProperty = {
allAwsRegions: false,
awsRegions: ['awsRegions'],
roleArn: 'roleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| all | boolean | IResolvable | If true, aggregate existing AWS Config regions and future regions. |
| aws | string[] | The source regions being aggregated. |
| role | string | ARN of the IAM role used to retrieve AWS Organizations details associated with the aggregator account. |
allAwsRegions?
Type:
boolean | IResolvable
(optional)
If true, aggregate existing AWS Config regions and future regions.
awsRegions?
Type:
string[]
(optional)
The source regions being aggregated.
roleArn?
Type:
string
(optional)
ARN of the IAM role used to retrieve AWS Organizations details associated with the aggregator account.

.NET
Go
Java
Python
TypeScript