[][src]Struct rusoto_application_insights::CreateLogPatternRequest

pub struct CreateLogPatternRequest {
    pub pattern: String,
    pub pattern_name: String,
    pub pattern_set_name: String,
    pub rank: i64,
    pub resource_group_name: String,
}

Fields

pattern: String

The log pattern. The pattern must be DFA compatible. Patterns that utilize forward lookahead or backreference constructions are not supported.

pattern_name: String

The name of the log pattern.

pattern_set_name: String

The name of the log pattern set.

rank: i64

Rank of the log pattern. Must be a value between 1 and 1,000,000. The patterns are sorted by rank, so we recommend that you set your highest priority patterns with the lowest rank. A pattern of rank 1 will be the first to get matched to a log line. A pattern of rank 1,000,000 will be last to get matched. When you configure custom log patterns from the console, a Low severity pattern translates to a 750,000 rank. A Medium severity pattern translates to a 500,000 rank. And a High severity pattern translates to a 250,000 rank. Rank values less than 1 or greater than 1,000,000 are reserved for AWS-provided patterns.

resource_group_name: String

The name of the resource group.

Trait Implementations

impl Clone for CreateLogPatternRequest[src]

impl Debug for CreateLogPatternRequest[src]

impl Default for CreateLogPatternRequest[src]

impl PartialEq<CreateLogPatternRequest> for CreateLogPatternRequest[src]

impl Serialize for CreateLogPatternRequest[src]

impl StructuralPartialEq for CreateLogPatternRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.