Class: Aws::DataPipeline::Types::Field
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataPipeline::Types::Field
- 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
-
#key ⇒ String
The field identifier.
-
#ref_value ⇒ String
The field value, expressed as the identifier of another object.
-
#string_value ⇒ String
The field value, expressed as a String.
Instance Attribute Details
#key ⇒ String
The field identifier.
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 |