interface XMLClassifierProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins.CfnClassifierPropsMixin.XMLClassifierProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsglue/mixins#CfnClassifierPropsMixin_XMLClassifierProperty |
Java | software.amazon.awscdk.mixins.preview.services.glue.mixins.CfnClassifierPropsMixin.XMLClassifierProperty |
Python | aws_cdk.mixins_preview.aws_glue.mixins.CfnClassifierPropsMixin.XMLClassifierProperty |
TypeScript | @aws-cdk/mixins-preview » aws_glue » mixins » 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 { mixins as glue_mixins } from '@aws-cdk/mixins-preview/aws-glue';
const xMLClassifierProperty: glue_mixins.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