Interface CfnConfigurationAggregator.OrganizationAggregationSourceProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConfigurationAggregator.OrganizationAggregationSourceProperty.Jsii$Proxy
- Enclosing class:
CfnConfigurationAggregator
@Stability(Stable)
public static interface CfnConfigurationAggregator.OrganizationAggregationSourceProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.config.*;
OrganizationAggregationSourceProperty organizationAggregationSourceProperty = OrganizationAggregationSourceProperty.builder()
.roleArn("roleArn")
// the properties below are optional
.allAwsRegions(false)
.awsRegions(List.of("awsRegions"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnConfigurationAggregator.OrganizationAggregationSourceProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRoleArn
ARN of the IAM role used to retrieve AWS Organizations details associated with the aggregator account.- See Also:
-
getAllAwsRegions
If true, aggregate existing AWS Config regions and future regions.Returns union: either
BooleanorIResolvable- See Also:
-
getAwsRegions
The source regions being aggregated.- See Also:
-
builder
@Stability(Stable) static CfnConfigurationAggregator.OrganizationAggregationSourceProperty.Builder builder()
-