Class: Aws::DataPipeline::Types::DescribeObjectsOutput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-datapipeline/types.rb

Overview

Contains the output of DescribeObjects.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#has_more_resultsBoolean

Indicates whether there are more results to return.

Returns:

  • (Boolean)


229
230
231
232
233
234
235
# File 'lib/aws-sdk-datapipeline/types.rb', line 229

class DescribeObjectsOutput < Struct.new(
  :pipeline_objects,
  :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 ‘DescribeObjects` again with this marker value. If the value is null, there are no more results.

Returns:

  • (String)


229
230
231
232
233
234
235
# File 'lib/aws-sdk-datapipeline/types.rb', line 229

class DescribeObjectsOutput < Struct.new(
  :pipeline_objects,
  :marker,
  :has_more_results)
  SENSITIVE = []
  include Aws::Structure
end

#pipeline_objectsArray<Types::PipelineObject>

An array of object definitions.

Returns:



229
230
231
232
233
234
235
# File 'lib/aws-sdk-datapipeline/types.rb', line 229

class DescribeObjectsOutput < Struct.new(
  :pipeline_objects,
  :marker,
  :has_more_results)
  SENSITIVE = []
  include Aws::Structure
end