@Stability(value=Stable)
public static interface CfnClassifier.JsonClassifierProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnClassifier.JsonClassifierProperty.Builder
A builder for
CfnClassifier.JsonClassifierProperty |
static class |
CfnClassifier.JsonClassifierProperty.Jsii$Proxy
An implementation for
CfnClassifier.JsonClassifierProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnClassifier.JsonClassifierProperty.Builder |
builder() |
String |
getJsonPath()
A `JsonPath` string defining the JSON data for the classifier to classify.
|
default String |
getName()
The name of the classifier.
|
@Stability(value=Stable) @NotNull String getJsonPath()
AWS Glue supports a subset of JsonPath , as described in Writing JsonPath Custom Classifiers .
@Stability(value=Stable) @Nullable default String getName()
@Stability(value=Stable) static CfnClassifier.JsonClassifierProperty.Builder builder()
Copyright © 2022. All rights reserved.