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 CreateXMLClassifierRequest = CreateXMLClassifierRequest' {}
- newCreateXMLClassifierRequest :: Text -> Text -> CreateXMLClassifierRequest
- createXMLClassifierRequest_rowTag :: Lens' CreateXMLClassifierRequest (Maybe Text)
- createXMLClassifierRequest_classification :: Lens' CreateXMLClassifierRequest Text
- createXMLClassifierRequest_name :: Lens' CreateXMLClassifierRequest Text
Documentation
data CreateXMLClassifierRequest Source #
Specifies an XML classifier for CreateClassifier
to create.
See: newCreateXMLClassifierRequest
smart constructor.
CreateXMLClassifierRequest' | |
|
Instances
newCreateXMLClassifierRequest Source #
:: Text | |
-> Text | |
-> CreateXMLClassifierRequest |
Create a value of CreateXMLClassifierRequest
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:rowTag:CreateXMLClassifierRequest'
, createXMLClassifierRequest_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:classification:CreateXMLClassifierRequest'
, createXMLClassifierRequest_classification
- An identifier of the data format that the classifier matches.
$sel:name:CreateXMLClassifierRequest'
, createXMLClassifierRequest_name
- The name of the classifier.
createXMLClassifierRequest_rowTag :: Lens' CreateXMLClassifierRequest (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).
createXMLClassifierRequest_classification :: Lens' CreateXMLClassifierRequest Text Source #
An identifier of the data format that the classifier matches.
createXMLClassifierRequest_name :: Lens' CreateXMLClassifierRequest Text Source #
The name of the classifier.