interface JsonClassifierProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins.CfnClassifierPropsMixin.JsonClassifierProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsglue/mixins#CfnClassifierPropsMixin_JsonClassifierProperty |
Java | software.amazon.awscdk.mixins.preview.services.glue.mixins.CfnClassifierPropsMixin.JsonClassifierProperty |
Python | aws_cdk.mixins_preview.aws_glue.mixins.CfnClassifierPropsMixin.JsonClassifierProperty |
TypeScript | @aws-cdk/mixins-preview » aws_glue » mixins » CfnClassifierPropsMixin » 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 { mixins as glue_mixins } from '@aws-cdk/mixins-preview/aws-glue';
const jsonClassifierProperty: glue_mixins.CfnClassifierPropsMixin.JsonClassifierProperty = {
jsonPath: 'jsonPath',
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| json | string | A JsonPath string defining the JSON data for the classifier to classify. |
| name? | string | The name of the classifier. |
jsonPath?
Type:
string
(optional)
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.

.NET
Go
Java
Python
TypeScript