@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)",
date="2023-03-22T19:35:50.731Z")
public interface CfnConfigurationAggregatorProps
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 java.lang.Object |
getAccountAggregationSources()
Provides a list of source accounts and regions to be aggregated.
|
default java.lang.String |
getConfigurationAggregatorName()
The name of the aggregator.
|
default java.lang.Object |
getOrganizationAggregationSource()
Provides an organization and list of regions to be aggregated.
|
default java.util.List<CfnTag> |
getTags()
An array of tag object.
|
default java.lang.Object getAccountAggregationSources()
default java.lang.String getConfigurationAggregatorName()
default java.lang.Object getOrganizationAggregationSource()
default java.util.List<CfnTag> getTags()
static CfnConfigurationAggregatorProps.Builder builder()