Struct aws_sdk_glue::types::UpdateGrokClassifierRequest
source · #[non_exhaustive]pub struct UpdateGrokClassifierRequest {
pub name: String,
pub classification: Option<String>,
pub grok_pattern: Option<String>,
pub custom_patterns: Option<String>,
}
Expand description
Specifies a grok classifier to update when passed to UpdateClassifier
.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.name: String
The name of the GrokClassifier
.
classification: Option<String>
An identifier of the data format that the classifier matches, such as Twitter, JSON, Omniture logs, Amazon CloudWatch Logs, and so on.
grok_pattern: Option<String>
The grok pattern used by this classifier.
custom_patterns: Option<String>
Optional custom grok patterns used by this classifier.
Implementations§
source§impl UpdateGrokClassifierRequest
impl UpdateGrokClassifierRequest
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, Amazon CloudWatch Logs, and so on.
sourcepub fn grok_pattern(&self) -> Option<&str>
pub fn grok_pattern(&self) -> Option<&str>
The grok pattern used by this classifier.
sourcepub fn custom_patterns(&self) -> Option<&str>
pub fn custom_patterns(&self) -> Option<&str>
Optional custom grok patterns used by this classifier.
source§impl UpdateGrokClassifierRequest
impl UpdateGrokClassifierRequest
sourcepub fn builder() -> UpdateGrokClassifierRequestBuilder
pub fn builder() -> UpdateGrokClassifierRequestBuilder
Creates a new builder-style object to manufacture UpdateGrokClassifierRequest
.
Trait Implementations§
source§impl Clone for UpdateGrokClassifierRequest
impl Clone for UpdateGrokClassifierRequest
source§fn clone(&self) -> UpdateGrokClassifierRequest
fn clone(&self) -> UpdateGrokClassifierRequest
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 UpdateGrokClassifierRequest
impl Debug for UpdateGrokClassifierRequest
source§impl PartialEq for UpdateGrokClassifierRequest
impl PartialEq for UpdateGrokClassifierRequest
source§fn eq(&self, other: &UpdateGrokClassifierRequest) -> bool
fn eq(&self, other: &UpdateGrokClassifierRequest) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdateGrokClassifierRequest
Auto Trait Implementations§
impl RefUnwindSafe for UpdateGrokClassifierRequest
impl Send for UpdateGrokClassifierRequest
impl Sync for UpdateGrokClassifierRequest
impl Unpin for UpdateGrokClassifierRequest
impl UnwindSafe for UpdateGrokClassifierRequest
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.