[][src]Struct rusoto_ssm::OpsItemEventSummary

pub struct OpsItemEventSummary {
    pub created_by: Option<OpsItemIdentity>,
    pub created_time: Option<f64>,
    pub detail: Option<String>,
    pub detail_type: Option<String>,
    pub event_id: Option<String>,
    pub ops_item_id: Option<String>,
    pub source: Option<String>,
}

Summary information about an OpsItem event.

Fields

created_by: Option<OpsItemIdentity>

Information about the user or resource that created the OpsItem event.

created_time: Option<f64>

The date and time the OpsItem event was created.

detail: Option<String>

Specific information about the OpsItem event.

detail_type: Option<String>

The type of information provided as a detail.

event_id: Option<String>

The ID of the OpsItem event.

ops_item_id: Option<String>

The ID of the OpsItem.

source: Option<String>

The source of the OpsItem event.

Trait Implementations

impl Clone for OpsItemEventSummary[src]

impl Debug for OpsItemEventSummary[src]

impl Default for OpsItemEventSummary[src]

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

impl PartialEq<OpsItemEventSummary> for OpsItemEventSummary[src]

impl StructuralPartialEq for OpsItemEventSummary[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: for<'de> Deserialize<'de>, 
[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.