Class: Aws::DataPipeline::Types::QueryObjectsOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataPipeline::Types::QueryObjectsOutput
- Defined in:
- gems/aws-sdk-datapipeline/lib/aws-sdk-datapipeline/types.rb
Overview
Contains the output of QueryObjects.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#has_more_results ⇒ Boolean
Indicates whether there are more results that can be obtained by a subsequent call.
-
#ids ⇒ Array<String>
The identifiers that match the query selectors.
-
#marker ⇒ String
The starting point for the next page of results.
Instance Attribute Details
#has_more_results ⇒ Boolean
Indicates whether there are more results that can be obtained by a subsequent call.
905 906 907 908 909 910 911 |
# File 'gems/aws-sdk-datapipeline/lib/aws-sdk-datapipeline/types.rb', line 905 class QueryObjectsOutput < Struct.new( :ids, :marker, :has_more_results) SENSITIVE = [] include Aws::Structure end |
#ids ⇒ Array<String>
The identifiers that match the query selectors.
905 906 907 908 909 910 911 |
# File 'gems/aws-sdk-datapipeline/lib/aws-sdk-datapipeline/types.rb', line 905 class QueryObjectsOutput < Struct.new( :ids, :marker, :has_more_results) SENSITIVE = [] include Aws::Structure end |
#marker ⇒ String
The starting point for the next page of results. To view the next
page of results, call QueryObjects
again with this marker value.
If the value is null, there are no more results.
905 906 907 908 909 910 911 |
# File 'gems/aws-sdk-datapipeline/lib/aws-sdk-datapipeline/types.rb', line 905 class QueryObjectsOutput < Struct.new( :ids, :marker, :has_more_results) SENSITIVE = [] include Aws::Structure end |