Struct rusoto_glue::UpdateGrokClassifierRequest[][src]

pub struct UpdateGrokClassifierRequest {
    pub classification: Option<String>,
    pub custom_patterns: Option<String>,
    pub grok_pattern: Option<String>,
    pub name: String,
}

Specifies a grok classifier to update when passed to UpdateClassifier.

Fields

An identifier of the data format that the classifier matches, such as Twitter, JSON, Omniture logs, Amazon CloudWatch Logs, and so on.

Optional custom grok patterns used by this classifier.

The grok pattern used by this classifier.

The name of the GrokClassifier.

Trait Implementations

impl Default for UpdateGrokClassifierRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for UpdateGrokClassifierRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateGrokClassifierRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for UpdateGrokClassifierRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations