@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:37.722Z") @Stability(value=Stable) public interface CfnConfigurationAggregatorProps extends software.amazon.jsii.JsiiSerializable
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.*;
CfnConfigurationAggregatorProps cfnConfigurationAggregatorProps = CfnConfigurationAggregatorProps.builder()
.accountAggregationSources(List.of(AccountAggregationSourceProperty.builder()
.accountIds(List.of("accountIds"))
// the properties below are optional
.allAwsRegions(false)
.awsRegions(List.of("awsRegions"))
.build()))
.configurationAggregatorName("configurationAggregatorName")
.organizationAggregationSource(OrganizationAggregationSourceProperty.builder()
.roleArn("roleArn")
// the properties below are optional
.allAwsRegions(false)
.awsRegions(List.of("awsRegions"))
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnConfigurationAggregatorProps.Builder
A builder for
CfnConfigurationAggregatorProps |
static class |
CfnConfigurationAggregatorProps.Jsii$Proxy
An implementation for
CfnConfigurationAggregatorProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnConfigurationAggregatorProps.Builder |
builder() |
default Object |
getAccountAggregationSources()
Provides a list of source accounts and regions to be aggregated.
|
default String |
getConfigurationAggregatorName()
The name of the aggregator.
|
default Object |
getOrganizationAggregationSource()
Provides an organization and list of regions to be aggregated.
|
default List<CfnTag> |
getTags()
An array of tag object.
|
@Stability(value=Stable) @Nullable default Object getAccountAggregationSources()
@Stability(value=Stable) @Nullable default String getConfigurationAggregatorName()
@Stability(value=Stable) @Nullable default Object getOrganizationAggregationSource()
@Stability(value=Stable) static CfnConfigurationAggregatorProps.Builder builder()
Copyright © 2022. All rights reserved.