You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::DataPipeline::Types::DescribeObjectsInput

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing DescribeObjectsInput as input to an Aws::Client method, you can use a vanilla Hash:

{
  pipeline_id: "id", # required
  object_ids: ["id"], # required
  evaluate_expressions: false,
  marker: "string",
}

Contains the parameters for DescribeObjects.

Instance Attribute Summary collapse

Instance Attribute Details

#evaluate_expressionsBoolean

Indicates whether any expressions in the object should be evaluated when the object descriptions are returned.

Returns:

  • (Boolean)

    Indicates whether any expressions in the object should be evaluated when the object descriptions are returned.

#markerString

The starting point for the results to be returned. For the first call, this value should be empty. As long as there are more results, continue to call DescribeObjects with the marker value from the previous call to retrieve the next set of results.

Returns:

  • (String)

    The starting point for the results to be returned.

#object_idsArray<String>

The IDs of the pipeline objects that contain the definitions to be described. You can pass as many as 25 identifiers in a single call to DescribeObjects.

Returns:

  • (Array<String>)

    The IDs of the pipeline objects that contain the definitions to be described.

#pipeline_idString

The ID of the pipeline that contains the object definitions.

Returns:

  • (String)

    The ID of the pipeline that contains the object definitions.