Class: Aws::ConfigService::Types::ListStoredQueriesResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConfigService::Types::ListStoredQueriesResponse
- Defined in:
- gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
If the previous paginated request didn't return all of the remaining results, the response object's
NextToken
parameter value is set to a token. -
#stored_query_metadata ⇒ Array<Types::StoredQueryMetadata>
A list of
StoredQueryMetadata
objects.
Instance Attribute Details
#next_token ⇒ String
If the previous paginated request didn't return all of the
remaining results, the response object's NextToken
parameter
value is set to a token. To retrieve the next set of results, call
this action again and assign that token to the request object's
NextToken
parameter. If there are no remaining results, the
previous response object's NextToken
parameter is set to null
.
5641 5642 5643 5644 5645 5646 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 5641 class ListStoredQueriesResponse < Struct.new( :stored_query_metadata, :next_token) SENSITIVE = [] include Aws::Structure end |
#stored_query_metadata ⇒ Array<Types::StoredQueryMetadata>
A list of StoredQueryMetadata
objects.
5641 5642 5643 5644 5645 5646 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 5641 class ListStoredQueriesResponse < Struct.new( :stored_query_metadata, :next_token) SENSITIVE = [] include Aws::Structure end |