Interface CreateXMLClassifierRequest.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CreateXMLClassifierRequest.Builder,CreateXMLClassifierRequest>,SdkBuilder<CreateXMLClassifierRequest.Builder,CreateXMLClassifierRequest>,SdkPojo
- Enclosing class:
- CreateXMLClassifierRequest
public static interface CreateXMLClassifierRequest.Builder extends SdkPojo, CopyableBuilder<CreateXMLClassifierRequest.Builder,CreateXMLClassifierRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CreateXMLClassifierRequest.Builderclassification(String classification)An identifier of the data format that the classifier matches.CreateXMLClassifierRequest.Buildername(String name)The name of the classifier.CreateXMLClassifierRequest.BuilderrowTag(String rowTag)The XML tag designating the element that contains each record in an XML document being parsed.-
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
-
classification
CreateXMLClassifierRequest.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.
-
name
CreateXMLClassifierRequest.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.
-
rowTag
CreateXMLClassifierRequest.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.
-
-