Interface CfnClassifierMixinProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnClassifierMixinProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-11T13:19:59.663Z") @Stability(Stable) public interface CfnClassifierMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnClassifierPropsMixin.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.glue.*;
 CfnClassifierMixinProps cfnClassifierMixinProps = CfnClassifierMixinProps.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")
                 .customPatterns("customPatterns")
                 .grokPattern("grokPattern")
                 .name("name")
                 .build())
         .jsonClassifier(JsonClassifierProperty.builder()
                 .jsonPath("jsonPath")
                 .name("name")
                 .build())
         .xmlClassifier(XMLClassifierProperty.builder()
                 .classification("classification")
                 .name("name")
                 .rowTag("rowTag")
                 .build())
         .build();
 

See Also: