Interface CfnClassifierProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnClassifierProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.106.0 (build e852934)",
date="2025-01-25T00:20:56.355Z")
@Stability(Stable)
public interface CfnClassifierProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnClassifier
.
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) .containsCustomDatatype(List.of("containsCustomDatatype")) .containsHeader("containsHeader") .customDatatypeConfigured(false) .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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnClassifierProps
static final class
An implementation forCfnClassifierProps
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCsvClassifier
A classifier for comma-separated values (CSV).- See Also:
-
getGrokClassifier
A classifier that usesgrok
.- See Also:
-
getJsonClassifier
A classifier for JSON content.- See Also:
-
getXmlClassifier
A classifier for XML content.- See Also:
-
builder
- Returns:
- a
CfnClassifierProps.Builder
ofCfnClassifierProps
-