Class: Aws::ConfigService::Types::DescribePendingAggregationRequestsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConfigService::Types::DescribePendingAggregationRequestsRequest
- Defined in:
- gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb
Overview
Note:
When making an API call, you may pass DescribePendingAggregationRequestsRequest data as a hash:
{
limit: 1,
next_token: "String",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#limit ⇒ Integer
The maximum number of evaluation results 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 evaluation results returned on each page. The default is maximum. If you specify 0, Config uses the default.
3550 3551 3552 3553 3554 3555 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 3550 class DescribePendingAggregationRequestsRequest < 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.
3550 3551 3552 3553 3554 3555 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 3550 class DescribePendingAggregationRequestsRequest < Struct.new( :limit, :next_token) SENSITIVE = [] include Aws::Structure end |