public static interface XMLClassifier.Builder extends SdkPojo, CopyableBuilder<XMLClassifier.Builder,XMLClassifier>
Modifier and Type | Method and Description |
---|---|
XMLClassifier.Builder |
classification(String classification)
An identifier of the data format that the classifier matches.
|
XMLClassifier.Builder |
creationTime(Instant creationTime)
The time this classifier was registered.
|
XMLClassifier.Builder |
lastUpdated(Instant lastUpdated)
The time this classifier was last updated.
|
XMLClassifier.Builder |
name(String name)
The name of the classifier.
|
XMLClassifier.Builder |
rowTag(String rowTag)
The XML tag designating the element that contains each record in an XML document being parsed.
|
XMLClassifier.Builder |
version(Long version)
The version of this classifier.
|
copy
applyMutation, build
XMLClassifier.Builder name(String name)
The name of the classifier.
name
- The name of the classifier.XMLClassifier.Builder classification(String classification)
An identifier of the data format that the classifier matches.
classification
- An identifier of the data format that the classifier matches.XMLClassifier.Builder creationTime(Instant creationTime)
The time this classifier was registered.
creationTime
- The time this classifier was registered.XMLClassifier.Builder lastUpdated(Instant lastUpdated)
The time this classifier was last updated.
lastUpdated
- The time this classifier was last updated.XMLClassifier.Builder version(Long version)
The version of this classifier.
version
- The version of this classifier.XMLClassifier.Builder rowTag(String rowTag)
The XML tag designating the element that contains each record in an XML document being parsed. Note that 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).
rowTag
- The XML tag designating the element that contains each record in an XML document being parsed. Note
that 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).Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.