Interface CfnClassifier.GrokClassifierProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnClassifier.GrokClassifierProperty.Jsii$Proxy
Enclosing class:
CfnClassifier

@Stability(Stable) public static interface CfnClassifier.GrokClassifierProperty extends software.amazon.jsii.JsiiSerializable
A classifier that uses grok patterns.

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.*;
 GrokClassifierProperty grokClassifierProperty = GrokClassifierProperty.builder()
         .classification("classification")
         .grokPattern("grokPattern")
         // the properties below are optional
         .customPatterns("customPatterns")
         .name("name")
         .build();
 

See Also: