Class: Aws::Glue::Types::CreateJsonClassifierRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-glue/types.rb

Overview

Note:

When making an API call, you may pass CreateJsonClassifierRequest data as a hash:

{
  name: "NameString", # required
  json_path: "JsonPath", # required
}

Specifies a JSON classifier for ‘CreateClassifier` to create.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#json_pathString

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].

[1]: docs.aws.amazon.com/glue/latest/dg/custom-classifier.html#custom-classifier-json

Returns:

  • (String)


3554
3555
3556
3557
3558
3559
# File 'lib/aws-sdk-glue/types.rb', line 3554

class CreateJsonClassifierRequest < Struct.new(
  :name,
  :json_path)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of the classifier.

Returns:

  • (String)


3554
3555
3556
3557
3558
3559
# File 'lib/aws-sdk-glue/types.rb', line 3554

class CreateJsonClassifierRequest < Struct.new(
  :name,
  :json_path)
  SENSITIVE = []
  include Aws::Structure
end