Class: Aws::ConfigService::Types::OrganizationAggregationSource

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 OrganizationAggregationSource data as a hash:

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

This object contains regions to setup the aggregator and an IAM role to retrieve organization details.

Instance Attribute Summary collapse

Instance Attribute Details

#all_aws_regionsBoolean

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

Returns:

  • (Boolean)


3234
3235
3236
3237
3238
3239
# File 'lib/aws-sdk-configservice/types.rb', line 3234

class OrganizationAggregationSource < Struct.new(
  :role_arn,
  :aws_regions,
  :all_aws_regions)
  include Aws::Structure
end

#aws_regionsArray<String>

The source regions being aggregated.

Returns:

  • (Array<String>)


3234
3235
3236
3237
3238
3239
# File 'lib/aws-sdk-configservice/types.rb', line 3234

class OrganizationAggregationSource < Struct.new(
  :role_arn,
  :aws_regions,
  :all_aws_regions)
  include Aws::Structure
end

#role_arnString

ARN of the IAM role used to retreive AWS Organization details associated with the aggregator account.

Returns:

  • (String)


3234
3235
3236
3237
3238
3239
# File 'lib/aws-sdk-configservice/types.rb', line 3234

class OrganizationAggregationSource < Struct.new(
  :role_arn,
  :aws_regions,
  :all_aws_regions)
  include Aws::Structure
end