Interface CfnClassifierPropsMixin.GrokClassifierProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnClassifierPropsMixin.GrokClassifierProperty.Jsii$Proxy
- Enclosing class:
CfnClassifierPropsMixin
@Stability(Stable)
public static interface CfnClassifierPropsMixin.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.cfnpropertymixins.services.glue.*;
GrokClassifierProperty grokClassifierProperty = GrokClassifierProperty.builder()
.classification("classification")
.customPatterns("customPatterns")
.grokPattern("grokPattern")
.name("name")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnClassifierPropsMixin.GrokClassifierPropertystatic final classAn implementation forCfnClassifierPropsMixin.GrokClassifierProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringAn identifier of the data format that the classifier matches, such as Twitter, JSON, Omniture logs, and so on.default StringOptional custom grok patterns defined by this classifier.default StringThe grok pattern applied to a data store by this classifier.default StringgetName()The name of the classifier.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getClassification
An identifier of the data format that the classifier matches, such as Twitter, JSON, Omniture logs, and so on.- See Also:
-
getCustomPatterns
Optional custom grok patterns defined by this classifier.For more information, see custom patterns in Writing Custom Classifiers .
- See Also:
-
getGrokPattern
The grok pattern applied to a data store by this classifier.For more information, see built-in patterns in Writing Custom Classifiers .
- See Also:
-
getName
The name of the classifier.- See Also:
-
builder
-