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

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

Overview

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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The field identifier.

Returns:

  • (String)


323
324
325
326
327
328
329
# File 'gems/aws-sdk-datapipeline/lib/aws-sdk-datapipeline/types.rb', line 323

class Field < Struct.new(
  :key,
  :string_value,
  :ref_value)
  SENSITIVE = []
  include Aws::Structure
end

#ref_valueString

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

Returns:

  • (String)


323
324
325
326
327
328
329
# File 'gems/aws-sdk-datapipeline/lib/aws-sdk-datapipeline/types.rb', line 323

class Field < Struct.new(
  :key,
  :string_value,
  :ref_value)
  SENSITIVE = []
  include Aws::Structure
end

#string_valueString

The field value, expressed as a String.

Returns:

  • (String)


323
324
325
326
327
328
329
# File 'gems/aws-sdk-datapipeline/lib/aws-sdk-datapipeline/types.rb', line 323

class Field < Struct.new(
  :key,
  :string_value,
  :ref_value)
  SENSITIVE = []
  include Aws::Structure
end