aws-cdk-lib.aws_glue.CfnClassifier.JsonClassifierProperty

interface JsonClassifierProperty

LanguageType name
.NETAmazon.CDK.AWS.Glue.CfnClassifier.JsonClassifierProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnClassifier_JsonClassifierProperty
Javasoftware.amazon.awscdk.services.glue.CfnClassifier.JsonClassifierProperty
Pythonaws_cdk.aws_glue.CfnClassifier.JsonClassifierProperty
TypeScript aws-cdk-lib » aws_glue » CfnClassifier » JsonClassifierProperty

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 { aws_glue as glue } from 'aws-cdk-lib';
const jsonClassifierProperty: glue.CfnClassifier.JsonClassifierProperty = {
  jsonPath: 'jsonPath',

  // the properties below are optional
  name: 'name',
};

Properties

NameTypeDescription
jsonPathstringA JsonPath string defining the JSON data for the classifier to classify.
name?stringThe name of the classifier.

jsonPath

Type: string

A JsonPath string defining the JSON data for the classifier to classify.

AWS Glue supports a subset of JsonPath , as described in Writing JsonPath Custom Classifiers .


name?

Type: string (optional)

The name of the classifier.