Class: Aws::Glue::Types::XMLClassifier
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::XMLClassifier
- Defined in:
- gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb
Overview
A classifier for XML
content.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#classification ⇒ String
An identifier of the data format that the classifier matches.
-
#creation_time ⇒ Time
The time that this classifier was registered.
-
#last_updated ⇒ Time
The time that this classifier was last updated.
-
#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.
-
#version ⇒ Integer
The version of this classifier.
Instance Attribute Details
#classification ⇒ String
An identifier of the data format that the classifier matches.
28262 28263 28264 28265 28266 28267 28268 28269 28270 28271 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 28262 class XMLClassifier < Struct.new( :name, :classification, :creation_time, :last_updated, :version, :row_tag) SENSITIVE = [] include Aws::Structure end |
#creation_time ⇒ Time
The time that this classifier was registered.
28262 28263 28264 28265 28266 28267 28268 28269 28270 28271 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 28262 class XMLClassifier < Struct.new( :name, :classification, :creation_time, :last_updated, :version, :row_tag) SENSITIVE = [] include Aws::Structure end |
#last_updated ⇒ Time
The time that this classifier was last updated.
28262 28263 28264 28265 28266 28267 28268 28269 28270 28271 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 28262 class XMLClassifier < Struct.new( :name, :classification, :creation_time, :last_updated, :version, :row_tag) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the classifier.
28262 28263 28264 28265 28266 28267 28268 28269 28270 28271 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 28262 class XMLClassifier < Struct.new( :name, :classification, :creation_time, :last_updated, :version, :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 can't 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).
28262 28263 28264 28265 28266 28267 28268 28269 28270 28271 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 28262 class XMLClassifier < Struct.new( :name, :classification, :creation_time, :last_updated, :version, :row_tag) SENSITIVE = [] include Aws::Structure end |
#version ⇒ Integer
The version of this classifier.
28262 28263 28264 28265 28266 28267 28268 28269 28270 28271 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 28262 class XMLClassifier < Struct.new( :name, :classification, :creation_time, :last_updated, :version, :row_tag) SENSITIVE = [] include Aws::Structure end |