Struct aws_sdk_glue::model::CreateGrokClassifierRequest
source ·
[−]#[non_exhaustive]pub struct CreateGrokClassifierRequest {
pub classification: Option<String>,
pub name: Option<String>,
pub grok_pattern: Option<String>,
pub custom_patterns: Option<String>,
}
Expand description
Specifies a grok
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, such as Twitter, JSON, Omniture logs, Amazon CloudWatch Logs, and so on.
name: Option<String>
The name of the new classifier.
grok_pattern: Option<String>
The grok pattern used by this classifier.
custom_patterns: Option<String>
Optional custom grok patterns used by this classifier.
Implementations
An identifier of the data format that the classifier matches, such as Twitter, JSON, Omniture logs, Amazon CloudWatch Logs, and so on.
The grok pattern used by this classifier.
Optional custom grok patterns used by this classifier.
Creates a new builder-style object to manufacture CreateGrokClassifierRequest
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 CreateGrokClassifierRequest
impl Send for CreateGrokClassifierRequest
impl Sync for CreateGrokClassifierRequest
impl Unpin for CreateGrokClassifierRequest
impl UnwindSafe for CreateGrokClassifierRequest
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