interface XMLClassifierProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Glue.CfnClassifierPropsMixin.XMLClassifierProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsglue#CfnClassifierPropsMixin_XMLClassifierProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.glue.CfnClassifierPropsMixin.XMLClassifierProperty |
Python | aws_cdk.cfn_property_mixins.aws_glue.CfnClassifierPropsMixin.XMLClassifierProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_glue » CfnClassifierPropsMixin » XMLClassifierProperty |
A classifier for XML content.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_glue as glue } from '@aws-cdk/cfn-property-mixins';
const xMLClassifierProperty: glue.CfnClassifierPropsMixin.XMLClassifierProperty = {
classification: 'classification',
name: 'name',
rowTag: 'rowTag',
};
Properties
| Name | Type | Description |
|---|---|---|
| classification? | string | An identifier of the data format that the classifier matches. |
| name? | string | The name of the classifier. |
| row | string | The XML tag designating the element that contains each record in an XML document being parsed. |
classification?
Type:
string
(optional)
An identifier of the data format that the classifier matches.
name?
Type:
string
(optional)
The name of the classifier.
rowTag?
Type:
string
(optional)
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).

.NET
Go
Java
Python
TypeScript