| Copyright | (c) 2013-2023 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | Safe-Inferred |
| Language | Haskell2010 |
Amazonka.DataPipeline.Types.Field
Description
Documentation
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.
See: newField smart constructor.
Constructors
| Field' | |
Instances
| FromJSON Field Source # | |
| ToJSON Field Source # | |
Defined in Amazonka.DataPipeline.Types.Field | |
| Generic Field Source # | |
| Read Field Source # | |
| Show Field Source # | |
| NFData Field Source # | |
Defined in Amazonka.DataPipeline.Types.Field | |
| Eq Field Source # | |
| Hashable Field Source # | |
Defined in Amazonka.DataPipeline.Types.Field | |
| type Rep Field Source # | |
Defined in Amazonka.DataPipeline.Types.Field type Rep Field = D1 ('MetaData "Field" "Amazonka.DataPipeline.Types.Field" "amazonka-datapipeline-2.0-1cySuAk2jmdDRpZSxMUuos" 'False) (C1 ('MetaCons "Field'" 'PrefixI 'True) (S1 ('MetaSel ('Just "refValue") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "stringValue") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "key") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))) | |
Create a value of Field with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:refValue:Field', field_refValue - The field value, expressed as the identifier of another object.
$sel:stringValue:Field', field_stringValue - The field value, expressed as a String.
$sel:key:Field', field_key - The field identifier.