Class: Aws::ConfigService::Types::DescribeAggregationAuthorizationsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConfigService::Types::DescribeAggregationAuthorizationsRequest
- Defined in:
- gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb
Overview
Note:
When making an API call, you may pass DescribeAggregationAuthorizationsRequest data as a hash:
{
limit: 1,
next_token: "String",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#limit ⇒ Integer
The maximum number of AggregationAuthorizations returned on each page.
-
#next_token ⇒ String
The
nextToken
string returned on a previous page that you use to get the next page of results in a paginated response.
Instance Attribute Details
#limit ⇒ Integer
The maximum number of AggregationAuthorizations returned on each page. The default is maximum. If you specify 0, Config uses the default.
2629 2630 2631 2632 2633 2634 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 2629 class DescribeAggregationAuthorizationsRequest < Struct.new( :limit, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The nextToken
string returned on a previous page that you use to
get the next page of results in a paginated response.
2629 2630 2631 2632 2633 2634 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 2629 class DescribeAggregationAuthorizationsRequest < Struct.new( :limit, :next_token) SENSITIVE = [] include Aws::Structure end |