You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::Glue::Types::CreateXMLClassifierRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing CreateXMLClassifierRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  classification: "Classification", # required
  name: "NameString", # required
  row_tag: "RowTag",
}

Specifies an XML classifier for CreateClassifier to create.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#classificationString

An identifier of the data format that the classifier matches.

Returns:

  • (String)

    An identifier of the data format that the classifier matches.

#nameString

The name of the classifier.

Returns:

  • (String)

    The name of the classifier.

#row_tagString

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

Returns:

  • (String)

    The XML tag designating the element that contains each record in an XML document being parsed.