[][src]Struct rusoto_support::SeverityLevel

pub struct SeverityLevel {
    pub code: Option<String>,
    pub name: Option<String>,
}

A code and name pair that represents the severity level of a support case. The available values depend on the support plan for the account. For more information, see Choosing a Severity.

Fields

code: Option<String>

The code for case severity level.

Valid values: low | normal | high | urgent | critical

name: Option<String>

The name of the severity level that corresponds to the severity level code.

The values returned by the API differ from the values that are displayed in the AWS Support Center. For example, for the code "low", the API name is "Low", but the name in the Support Center is "General guidance". These are the Support Center code/name mappings:

  • low: General guidance

  • normal: System impaired

  • high: Production system impaired

  • urgent: Production system down

  • critical: Business-critical system down

For more information, see Choosing a Severity

Trait Implementations

impl Clone for SeverityLevel[src]

impl Debug for SeverityLevel[src]

impl Default for SeverityLevel[src]

impl<'de> Deserialize<'de> for SeverityLevel[src]

impl PartialEq<SeverityLevel> for SeverityLevel[src]

impl StructuralPartialEq for SeverityLevel[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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> 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.