Class: Aws::ConfigService::Types::ListStoredQueriesRequest

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

{
  next_token: "String",
  max_results: 1,
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#max_resultsInteger

The maximum number of results to be returned with a single call.

Returns:

  • (Integer)


5323
5324
5325
5326
5327
5328
# File 'lib/aws-sdk-configservice/types.rb', line 5323

class ListStoredQueriesRequest < Struct.new(
  :next_token,
  :max_results)
  SENSITIVE = []
  include Aws::Structure
end

#next_tokenString

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

Returns:

  • (String)


5323
5324
5325
5326
5327
5328
# File 'lib/aws-sdk-configservice/types.rb', line 5323

class ListStoredQueriesRequest < Struct.new(
  :next_token,
  :max_results)
  SENSITIVE = []
  include Aws::Structure
end