Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Synopsis
- data FieldTypeDetails = FieldTypeDetails' {
- supportedValues :: Maybe [Text]
- fieldType :: Text
- filterOperators :: [Operator]
- newFieldTypeDetails :: Text -> FieldTypeDetails
- fieldTypeDetails_supportedValues :: Lens' FieldTypeDetails (Maybe [Text])
- fieldTypeDetails_fieldType :: Lens' FieldTypeDetails Text
- fieldTypeDetails_filterOperators :: Lens' FieldTypeDetails [Operator]
Documentation
data FieldTypeDetails Source #
Contains details regarding the supported field type and the operators that can be applied for filtering.
See: newFieldTypeDetails
smart constructor.
FieldTypeDetails' | |
|
Instances
Create a value of FieldTypeDetails
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:supportedValues:FieldTypeDetails'
, fieldTypeDetails_supportedValues
- The list of values that a field can contain. For example, a Boolean
fieldType
can have two values: "true" and "false".
$sel:fieldType:FieldTypeDetails'
, fieldTypeDetails_fieldType
- The type of field, such as string, integer, date, and so on.
$sel:filterOperators:FieldTypeDetails'
, fieldTypeDetails_filterOperators
- The list of operators supported by a field.
fieldTypeDetails_supportedValues :: Lens' FieldTypeDetails (Maybe [Text]) Source #
The list of values that a field can contain. For example, a Boolean
fieldType
can have two values: "true" and "false".
fieldTypeDetails_fieldType :: Lens' FieldTypeDetails Text Source #
The type of field, such as string, integer, date, and so on.
fieldTypeDetails_filterOperators :: Lens' FieldTypeDetails [Operator] Source #
The list of operators supported by a field.