interface JsonClassifierProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Glue.CfnClassifierPropsMixin.JsonClassifierProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsglue#CfnClassifierPropsMixin_JsonClassifierProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.glue.CfnClassifierPropsMixin.JsonClassifierProperty |
Python | aws_cdk.cfn_property_mixins.aws_glue.CfnClassifierPropsMixin.JsonClassifierProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_glue » 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 { aws_glue as glue } from '@aws-cdk/cfn-property-mixins';
const jsonClassifierProperty: glue.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