Interface XMLClassifier.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<XMLClassifier.Builder,XMLClassifier>,SdkBuilder<XMLClassifier.Builder,XMLClassifier>,SdkPojo
- Enclosing class:
- XMLClassifier
public static interface XMLClassifier.Builder extends SdkPojo, CopyableBuilder<XMLClassifier.Builder,XMLClassifier>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description XMLClassifier.Builderclassification(String classification)An identifier of the data format that the classifier matches.XMLClassifier.BuildercreationTime(Instant creationTime)The time that this classifier was registered.XMLClassifier.BuilderlastUpdated(Instant lastUpdated)The time that this classifier was last updated.XMLClassifier.Buildername(String name)The name of the classifier.XMLClassifier.BuilderrowTag(String rowTag)The XML tag designating the element that contains each record in an XML document being parsed.XMLClassifier.Builderversion(Long version)The version of this classifier.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
name
XMLClassifier.Builder name(String name)
The name of the classifier.
- Parameters:
name- The name of the classifier.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
classification
XMLClassifier.Builder classification(String classification)
An identifier of the data format that the classifier matches.
- Parameters:
classification- An identifier of the data format that the classifier matches.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
creationTime
XMLClassifier.Builder creationTime(Instant creationTime)
The time that this classifier was registered.
- Parameters:
creationTime- The time that this classifier was registered.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastUpdated
XMLClassifier.Builder lastUpdated(Instant lastUpdated)
The time that this classifier was last updated.
- Parameters:
lastUpdated- The time that this classifier was last updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
version
XMLClassifier.Builder version(Long version)
The version of this classifier.
- Parameters:
version- The version of this classifier.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
rowTag
XMLClassifier.Builder rowTag(String 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).- Parameters:
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).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-