Class: Aws::ConfigService::Types::DescribeConfigurationAggregatorsRequest

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

{
  configuration_aggregator_names: ["ConfigurationAggregatorName"],
  next_token: "String",
  limit: 1,
}

Instance Attribute Summary collapse

Instance Attribute Details

#configuration_aggregator_namesArray<String>

The name of the configuration aggregators.

Returns:

  • (Array<String>)


2020
2021
2022
2023
2024
2025
# File 'lib/aws-sdk-configservice/types.rb', line 2020

class DescribeConfigurationAggregatorsRequest < Struct.new(
  :configuration_aggregator_names,
  :next_token,
  :limit)
  include Aws::Structure
end

#limitInteger

The maximum number of configuration aggregators returned on each page. The default is maximum. If you specify 0, AWS Config uses the default.

Returns:

  • (Integer)


2020
2021
2022
2023
2024
2025
# File 'lib/aws-sdk-configservice/types.rb', line 2020

class DescribeConfigurationAggregatorsRequest < Struct.new(
  :configuration_aggregator_names,
  :next_token,
  :limit)
  include Aws::Structure
end

#next_tokenString

The nextToken string returned on a previous page that you use to get the next page of results in a paginated response.

Returns:

  • (String)


2020
2021
2022
2023
2024
2025
# File 'lib/aws-sdk-configservice/types.rb', line 2020

class DescribeConfigurationAggregatorsRequest < Struct.new(
  :configuration_aggregator_names,
  :next_token,
  :limit)
  include Aws::Structure
end