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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnConfigurationAggregator.AccountAggregationSourceProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAccountIds
The 12-digit account ID of the account being aggregated.- See Also:
-
getAllAwsRegions
If true, aggregate existing AWS Config regions and future regions.- See Also:
-
getAwsRegions
The source regions being aggregated.- See Also:
-
builder
@Stability(Stable) static CfnConfigurationAggregator.AccountAggregationSourceProperty.Builder builder()
-