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

Class: Aws::DataPipeline::Types::PipelineObject

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

Overview

Note:

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

{
  id: "id", # required
  name: "id", # required
  fields: [ # required
    {
      key: "fieldNameString", # required
      string_value: "fieldStringValue",
      ref_value: "fieldNameString",
    },
  ],
}

Contains information about a pipeline object. This can be a logical, physical, or physical attempt pipeline object. The complete set of components of a pipeline defines the pipeline.

Instance Attribute Summary collapse

Instance Attribute Details

#fieldsArray<Types::Field>

Key-value pairs that define the properties of the object.

Returns:

  • (Array<Types::Field>)

    Key-value pairs that define the properties of the object.

#idString

The ID of the object.

Returns:

  • (String)

    The ID of the object.

#nameString

The name of the object.

Returns:

  • (String)

    The name of the object.