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 JsonClassifier = JsonClassifier' {}
- newJsonClassifier :: Text -> Text -> JsonClassifier
- jsonClassifier_creationTime :: Lens' JsonClassifier (Maybe UTCTime)
- jsonClassifier_lastUpdated :: Lens' JsonClassifier (Maybe UTCTime)
- jsonClassifier_version :: Lens' JsonClassifier (Maybe Integer)
- jsonClassifier_name :: Lens' JsonClassifier Text
- jsonClassifier_jsonPath :: Lens' JsonClassifier Text
Documentation
data JsonClassifier Source #
A classifier for JSON
content.
See: newJsonClassifier
smart constructor.
JsonClassifier' | |
|
Instances
Create a value of JsonClassifier
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:creationTime:JsonClassifier'
, jsonClassifier_creationTime
- The time that this classifier was registered.
$sel:lastUpdated:JsonClassifier'
, jsonClassifier_lastUpdated
- The time that this classifier was last updated.
$sel:version:JsonClassifier'
, jsonClassifier_version
- The version of this classifier.
$sel:name:JsonClassifier'
, jsonClassifier_name
- The name of the classifier.
$sel:jsonPath:JsonClassifier'
, jsonClassifier_jsonPath
- A JsonPath
string defining the JSON data for the classifier to
classify. Glue supports a subset of JsonPath, as described in
Writing JsonPath Custom Classifiers.
jsonClassifier_creationTime :: Lens' JsonClassifier (Maybe UTCTime) Source #
The time that this classifier was registered.
jsonClassifier_lastUpdated :: Lens' JsonClassifier (Maybe UTCTime) Source #
The time that this classifier was last updated.
jsonClassifier_version :: Lens' JsonClassifier (Maybe Integer) Source #
The version of this classifier.
jsonClassifier_name :: Lens' JsonClassifier Text Source #
The name of the classifier.
jsonClassifier_jsonPath :: Lens' JsonClassifier Text Source #
A JsonPath
string defining the JSON data for the classifier to
classify. Glue supports a subset of JsonPath, as described in
Writing JsonPath Custom Classifiers.