@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:39.526Z") @Stability(value=Stable) public interface CfnClassifierProps 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.*;
CfnClassifierProps cfnClassifierProps = CfnClassifierProps.builder()
.csvClassifier(CsvClassifierProperty.builder()
.allowSingleColumn(false)
.containsHeader("containsHeader")
.delimiter("delimiter")
.disableValueTrimming(false)
.header(List.of("header"))
.name("name")
.quoteSymbol("quoteSymbol")
.build())
.grokClassifier(GrokClassifierProperty.builder()
.classification("classification")
.grokPattern("grokPattern")
// the properties below are optional
.customPatterns("customPatterns")
.name("name")
.build())
.jsonClassifier(JsonClassifierProperty.builder()
.jsonPath("jsonPath")
// the properties below are optional
.name("name")
.build())
.xmlClassifier(XMLClassifierProperty.builder()
.classification("classification")
.rowTag("rowTag")
// the properties below are optional
.name("name")
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnClassifierProps.Builder
A builder for
CfnClassifierProps |
static class |
CfnClassifierProps.Jsii$Proxy
An implementation for
CfnClassifierProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnClassifierProps.Builder |
builder() |
default Object |
getCsvClassifier()
A classifier for comma-separated values (CSV).
|
default Object |
getGrokClassifier()
A classifier that uses `grok` .
|
default Object |
getJsonClassifier()
A classifier for JSON content.
|
default Object |
getXmlClassifier()
A classifier for XML content.
|
@Stability(value=Stable) @Nullable default Object getCsvClassifier()
@Stability(value=Stable) @Nullable default Object getGrokClassifier()
@Stability(value=Stable) @Nullable default Object getJsonClassifier()
@Stability(value=Stable) @Nullable default Object getXmlClassifier()
@Stability(value=Stable) static CfnClassifierProps.Builder builder()
CfnClassifierProps.Builder of CfnClassifierPropsCopyright © 2022. All rights reserved.