Class: Aws::ConfigService::Types::AccountAggregationSource

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-configservice/types.rb

Overview

Note:

When making an API call, you may pass AccountAggregationSource data as a hash:

{
  account_ids: ["AccountId"], # required
  all_aws_regions: false,
  aws_regions: ["String"],
}

A collection of accounts and regions.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#account_idsArray<String>

The 12-digit account ID of the account being aggregated.

Returns:

  • (Array<String>)


38
39
40
41
42
43
44
# File 'lib/aws-sdk-configservice/types.rb', line 38

class AccountAggregationSource < Struct.new(
  :account_ids,
  :all_aws_regions,
  :aws_regions)
  SENSITIVE = []
  include Aws::Structure
end

#all_aws_regionsBoolean

If true, aggregate existing AWS Config regions and future regions.

Returns:

  • (Boolean)


38
39
40
41
42
43
44
# File 'lib/aws-sdk-configservice/types.rb', line 38

class AccountAggregationSource < Struct.new(
  :account_ids,
  :all_aws_regions,
  :aws_regions)
  SENSITIVE = []
  include Aws::Structure
end

#aws_regionsArray<String>

The source regions being aggregated.

Returns:

  • (Array<String>)


38
39
40
41
42
43
44
# File 'lib/aws-sdk-configservice/types.rb', line 38

class AccountAggregationSource < Struct.new(
  :account_ids,
  :all_aws_regions,
  :aws_regions)
  SENSITIVE = []
  include Aws::Structure
end