Class: Aws::DataPipeline::Types::QueryObjectsOutput

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#has_more_resultsBoolean

Indicates whether there are more results that can be obtained by a subsequent call.

Returns:

  • (Boolean)


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

#idsArray<String>

The identifiers that match the query selectors.

Returns:

  • (Array<String>)


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

#markerString

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.

Returns:

  • (String)


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