Interface CfnClassifier.JsonClassifierProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnClassifier.JsonClassifierProperty.Jsii$Proxy
- Enclosing class:
- CfnClassifier
@Stability(Stable)
public static interface CfnClassifier.JsonClassifierProperty
extends software.amazon.jsii.JsiiSerializable
A classifier for
JSON content.
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.*;
JsonClassifierProperty jsonClassifierProperty = JsonClassifierProperty.builder()
.jsonPath("jsonPath")
// the properties below are optional
.name("name")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnClassifier.JsonClassifierPropertystatic final classAn implementation forCfnClassifier.JsonClassifierProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getJsonPath
AJsonPathstring defining the JSON data for the classifier to classify.AWS Glue supports a subset of
JsonPath, as described in Writing JsonPath Custom Classifiers . -
getName
The name of the classifier. -
builder
-