Struct aws_sdk_glue::model::GrokClassifier
source · #[non_exhaustive]pub struct GrokClassifier { /* private fields */ }Expand description
A classifier that uses grok patterns.
Implementations§
source§impl GrokClassifier
impl GrokClassifier
sourcepub fn classification(&self) -> Option<&str>
pub fn classification(&self) -> Option<&str>
An identifier of the data format that the classifier matches, such as Twitter, JSON, Omniture logs, and so on.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
The time that this classifier was registered.
sourcepub fn last_updated(&self) -> Option<&DateTime>
pub fn last_updated(&self) -> Option<&DateTime>
The time that this classifier was last updated.
sourcepub fn grok_pattern(&self) -> Option<&str>
pub fn grok_pattern(&self) -> Option<&str>
The grok pattern applied to a data store by this classifier. For more information, see built-in patterns in Writing Custom Classifiers.
sourcepub fn custom_patterns(&self) -> Option<&str>
pub fn custom_patterns(&self) -> Option<&str>
Optional custom grok patterns defined by this classifier. For more information, see custom patterns in Writing Custom Classifiers.
source§impl GrokClassifier
impl GrokClassifier
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture GrokClassifier.
Trait Implementations§
source§impl Clone for GrokClassifier
impl Clone for GrokClassifier
source§fn clone(&self) -> GrokClassifier
fn clone(&self) -> GrokClassifier
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for GrokClassifier
impl Debug for GrokClassifier
source§impl PartialEq<GrokClassifier> for GrokClassifier
impl PartialEq<GrokClassifier> for GrokClassifier
source§fn eq(&self, other: &GrokClassifier) -> bool
fn eq(&self, other: &GrokClassifier) -> bool
This method tests for
self and other values to be equal, and is used
by ==.