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

Class: Aws::DataPipeline::Types::Field

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

Overview

Note:

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

{
  key: "fieldNameString", # required
  string_value: "fieldStringValue",
  ref_value: "fieldNameString",
}

A key-value pair that describes a property of a pipeline object. The value is specified as either a string value (StringValue) or a reference to another object (RefValue) but not as both.

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The field identifier.

Returns:

  • (String)

    The field identifier.

#ref_valueString

The field value, expressed as the identifier of another object.

Returns:

  • (String)

    The field value, expressed as the identifier of another object.

#string_valueString

The field value, expressed as a String.

Returns:

  • (String)

    The field value, expressed as a String.