Class: Aws::Glue::Types::UpdateXMLClassifierRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::UpdateXMLClassifierRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Specifies an XML classifier to be updated.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#classification ⇒ String
An identifier of the data format that the classifier matches.
-
#name ⇒ String
The name of the classifier.
-
#row_tag ⇒ String
The XML tag designating the element that contains each record in an XML document being parsed.
Instance Attribute Details
#classification ⇒ String
An identifier of the data format that the classifier matches.
25093 25094 25095 25096 25097 25098 25099 |
# File 'lib/aws-sdk-glue/types.rb', line 25093 class UpdateXMLClassifierRequest < Struct.new( :name, :classification, :row_tag) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the classifier.
25093 25094 25095 25096 25097 25098 25099 |
# File 'lib/aws-sdk-glue/types.rb', line 25093 class UpdateXMLClassifierRequest < Struct.new( :name, :classification, :row_tag) SENSITIVE = [] include Aws::Structure end |
#row_tag ⇒ String
The XML tag designating the element that contains each record in an XML document being parsed. This cannot identify a self-closing element (closed by ‘/>`). An empty row element that contains only attributes can be parsed as long as it ends with a closing tag (for example, `<row item_a=“A” item_b=“B”></row>` is okay, but `<row item_a=“A” item_b=“B” />` is not).
25093 25094 25095 25096 25097 25098 25099 |
# File 'lib/aws-sdk-glue/types.rb', line 25093 class UpdateXMLClassifierRequest < Struct.new( :name, :classification, :row_tag) SENSITIVE = [] include Aws::Structure end |