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 XMLClassifier = XMLClassifier' {}
- newXMLClassifier :: Text -> Text -> XMLClassifier
- xMLClassifier_creationTime :: Lens' XMLClassifier (Maybe UTCTime)
- xMLClassifier_lastUpdated :: Lens' XMLClassifier (Maybe UTCTime)
- xMLClassifier_version :: Lens' XMLClassifier (Maybe Integer)
- xMLClassifier_rowTag :: Lens' XMLClassifier (Maybe Text)
- xMLClassifier_name :: Lens' XMLClassifier Text
- xMLClassifier_classification :: Lens' XMLClassifier Text
Documentation
data XMLClassifier Source #
A classifier for XML
content.
See: newXMLClassifier
smart constructor.
XMLClassifier' | |
|
Instances
Create a value of XMLClassifier
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:XMLClassifier'
, xMLClassifier_creationTime
- The time that this classifier was registered.
$sel:lastUpdated:XMLClassifier'
, xMLClassifier_lastUpdated
- The time that this classifier was last updated.
$sel:version:XMLClassifier'
, xMLClassifier_version
- The version of this classifier.
$sel:rowTag:XMLClassifier'
, xMLClassifier_rowTag
- The XML tag designating the element that contains each record in an XML
document being parsed. This can't identify a self-closing element
(closed by />
). An empty row element that contains only attributes
can be parsed as long as it ends with a closing tag (for example,
<row item_a="A" item_b="B"></row>
is okay, but
<row item_a="A" item_b="B" />
is not).
$sel:name:XMLClassifier'
, xMLClassifier_name
- The name of the classifier.
$sel:classification:XMLClassifier'
, xMLClassifier_classification
- An identifier of the data format that the classifier matches.
xMLClassifier_creationTime :: Lens' XMLClassifier (Maybe UTCTime) Source #
The time that this classifier was registered.
xMLClassifier_lastUpdated :: Lens' XMLClassifier (Maybe UTCTime) Source #
The time that this classifier was last updated.
xMLClassifier_version :: Lens' XMLClassifier (Maybe Integer) Source #
The version of this classifier.
xMLClassifier_rowTag :: Lens' XMLClassifier (Maybe Text) Source #
The XML tag designating the element that contains each record in an XML
document being parsed. This can't identify a self-closing element
(closed by />
). An empty row element that contains only attributes
can be parsed as long as it ends with a closing tag (for example,
<row item_a="A" item_b="B"></row>
is okay, but
<row item_a="A" item_b="B" />
is not).
xMLClassifier_name :: Lens' XMLClassifier Text Source #
The name of the classifier.
xMLClassifier_classification :: Lens' XMLClassifier Text Source #
An identifier of the data format that the classifier matches.