Struct aws_sdk_glue::model::CreateXmlClassifierRequest
source ·
[−]#[non_exhaustive]pub struct CreateXmlClassifierRequest {
pub classification: Option<String>,
pub name: Option<String>,
pub row_tag: Option<String>,
}
Expand description
Specifies an XML classifier for CreateClassifier
to create.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.classification: Option<String>
An identifier of the data format that the classifier matches.
name: Option<String>
The name of the classifier.
row_tag: Option<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,
is okay, but
is not).
Implementations
An identifier of the data format that the classifier matches.
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,
is okay, but
is not).
Creates a new builder-style object to manufacture CreateXmlClassifierRequest
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for CreateXmlClassifierRequest
impl Send for CreateXmlClassifierRequest
impl Sync for CreateXmlClassifierRequest
impl Unpin for CreateXmlClassifierRequest
impl UnwindSafe for CreateXmlClassifierRequest
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more