import { ResourceBase, ResourceTag } from '../resource'; import { Value, List } from '../dataTypes'; export declare class AccountAggregationSource { AllAwsRegions?: Value; AwsRegions?: List>; AccountIds: List>; constructor(properties: AccountAggregationSource); } export declare class OrganizationAggregationSource { AllAwsRegions?: Value; AwsRegions?: List>; RoleArn: Value; constructor(properties: OrganizationAggregationSource); } export interface ConfigurationAggregatorProperties { AccountAggregationSources?: List; ConfigurationAggregatorName?: Value; OrganizationAggregationSource?: OrganizationAggregationSource; Tags?: List; } export default class ConfigurationAggregator extends ResourceBase { static AccountAggregationSource: typeof AccountAggregationSource; static OrganizationAggregationSource: typeof OrganizationAggregationSource; constructor(properties?: ConfigurationAggregatorProperties); }