Interface CfnConfigurationAggregator.AccountAggregationSourceProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnConfigurationAggregator.AccountAggregationSourceProperty.Jsii$Proxy
Enclosing class:
CfnConfigurationAggregator

@Stability(Stable) public static interface CfnConfigurationAggregator.AccountAggregationSourceProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.config.*;
 AccountAggregationSourceProperty accountAggregationSourceProperty = AccountAggregationSourceProperty.builder()
         .accountIds(List.of("accountIds"))
         // the properties below are optional
         .allAwsRegions(false)
         .awsRegions(List.of("awsRegions"))
         .build();
 

See Also: