@Stability(value=Stable)
public static interface CfnClassifier.XMLClassifierProperty
extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.glue.*;
XMLClassifierProperty xMLClassifierProperty = XMLClassifierProperty.builder()
.classification("classification")
.rowTag("rowTag")
// the properties below are optional
.name("name")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnClassifier.XMLClassifierProperty.Builder
A builder for
CfnClassifier.XMLClassifierProperty |
static class |
CfnClassifier.XMLClassifierProperty.Jsii$Proxy
An implementation for
CfnClassifier.XMLClassifierProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnClassifier.XMLClassifierProperty.Builder |
builder() |
String |
getClassification()
An identifier of the data format that the classifier matches.
|
default String |
getName()
The name of the classifier.
|
String |
getRowTag()
The XML tag designating the element that contains each record in an XML document being parsed.
|
@Stability(value=Stable) @NotNull String getClassification()
@Stability(value=Stable) @NotNull String getRowTag()
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).
@Stability(value=Stable) @Nullable default String getName()
@Stability(value=Stable) static CfnClassifier.XMLClassifierProperty.Builder builder()
Copyright © 2022. All rights reserved.