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 UpdateXMLClassifierRequest = UpdateXMLClassifierRequest' {}
- newUpdateXMLClassifierRequest :: Text -> UpdateXMLClassifierRequest
- updateXMLClassifierRequest_classification :: Lens' UpdateXMLClassifierRequest (Maybe Text)
- updateXMLClassifierRequest_rowTag :: Lens' UpdateXMLClassifierRequest (Maybe Text)
- updateXMLClassifierRequest_name :: Lens' UpdateXMLClassifierRequest Text
Documentation
data UpdateXMLClassifierRequest Source #
Specifies an XML classifier to be updated.
See: newUpdateXMLClassifierRequest
smart constructor.
UpdateXMLClassifierRequest' | |
|
Instances
newUpdateXMLClassifierRequest Source #
Create a value of UpdateXMLClassifierRequest
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:classification:UpdateXMLClassifierRequest'
, updateXMLClassifierRequest_classification
- An identifier of the data format that the classifier matches.
$sel:rowTag:UpdateXMLClassifierRequest'
, updateXMLClassifierRequest_rowTag
- The XML tag designating the element that contains each record in an XML
document being parsed. This cannot 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:UpdateXMLClassifierRequest'
, updateXMLClassifierRequest_name
- The name of the classifier.
updateXMLClassifierRequest_classification :: Lens' UpdateXMLClassifierRequest (Maybe Text) Source #
An identifier of the data format that the classifier matches.
updateXMLClassifierRequest_rowTag :: Lens' UpdateXMLClassifierRequest (Maybe Text) Source #
The XML tag designating the element that contains each record in an XML
document being parsed. This cannot 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).
updateXMLClassifierRequest_name :: Lens' UpdateXMLClassifierRequest Text Source #
The name of the classifier.