Class: Aws::Glue::Types::UpdateJsonClassifierRequest

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

Overview

Specifies a JSON classifier to be updated.

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


22486
22487
22488
22489
22490
22491
# File 'lib/aws-sdk-glue/types.rb', line 22486

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

#nameString

The name of the classifier.

Returns:

  • (String)


22486
22487
22488
22489
22490
22491
# File 'lib/aws-sdk-glue/types.rb', line 22486

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