Struct aws_sdk_glue::types::UpdateXmlClassifierRequest
source · #[non_exhaustive]pub struct UpdateXmlClassifierRequest {
pub name: String,
pub classification: Option<String>,
pub row_tag: Option<String>,
}
Expand description
Specifies an XML classifier to be updated.
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.name: String
The name of the classifier.
classification: Option<String>
An identifier of the data format that the classifier matches.
row_tag: Option<String>
The XML tag designating the element that contains each record in an XML document being parsed. This cannot 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§
source§impl UpdateXmlClassifierRequest
impl UpdateXmlClassifierRequest
sourcepub fn classification(&self) -> Option<&str>
pub fn classification(&self) -> Option<&str>
An identifier of the data format that the classifier matches.
sourcepub fn row_tag(&self) -> Option<&str>
pub fn row_tag(&self) -> Option<&str>
The XML tag designating the element that contains each record in an XML document being parsed. This cannot 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).
source§impl UpdateXmlClassifierRequest
impl UpdateXmlClassifierRequest
sourcepub fn builder() -> UpdateXmlClassifierRequestBuilder
pub fn builder() -> UpdateXmlClassifierRequestBuilder
Creates a new builder-style object to manufacture UpdateXmlClassifierRequest
.
Trait Implementations§
source§impl Clone for UpdateXmlClassifierRequest
impl Clone for UpdateXmlClassifierRequest
source§fn clone(&self) -> UpdateXmlClassifierRequest
fn clone(&self) -> UpdateXmlClassifierRequest
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateXmlClassifierRequest
impl Debug for UpdateXmlClassifierRequest
source§impl PartialEq for UpdateXmlClassifierRequest
impl PartialEq for UpdateXmlClassifierRequest
source§fn eq(&self, other: &UpdateXmlClassifierRequest) -> bool
fn eq(&self, other: &UpdateXmlClassifierRequest) -> bool
self
and other
values to be equal, and is used
by ==
.