[][src]Struct rusoto_ssm::OpsItemSummary

pub struct OpsItemSummary {
    pub created_by: Option<String>,
    pub created_time: Option<f64>,
    pub last_modified_by: Option<String>,
    pub last_modified_time: Option<f64>,
    pub operational_data: Option<HashMap<String, OpsItemDataValue>>,
    pub ops_item_id: Option<String>,
    pub priority: Option<i64>,
    pub source: Option<String>,
    pub status: Option<String>,
    pub title: Option<String>,
}

A count of OpsItems.

Fields

created_by: Option<String>

The Amazon Resource Name (ARN) of the IAM entity that created the OpsItem.

created_time: Option<f64>

The date and time the OpsItem was created.

last_modified_by: Option<String>

The Amazon Resource Name (ARN) of the IAM entity that created the OpsItem.

last_modified_time: Option<f64>

The date and time the OpsItem was last updated.

operational_data: Option<HashMap<String, OpsItemDataValue>>

Operational data is custom data that provides useful reference details about the OpsItem.

ops_item_id: Option<String>

The ID of the OpsItem.

priority: Option<i64>

The importance of this OpsItem in relation to other OpsItems in the system.

source: Option<String>

The impacted AWS resource.

status: Option<String>

The OpsItem status. Status can be Open, In Progress, or Resolved.

title: Option<String>

A short heading that describes the nature of the OpsItem and the impacted resource.

Trait Implementations

impl Clone for OpsItemSummary[src]

impl Default for OpsItemSummary[src]

impl PartialEq<OpsItemSummary> for OpsItemSummary[src]

impl Debug for OpsItemSummary[src]

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

Auto Trait Implementations

Blanket Implementations

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

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

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.

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

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self