[][src]Struct rusoto_ssm::GetCalendarStateResponse

pub struct GetCalendarStateResponse {
    pub at_time: Option<String>,
    pub next_transition_time: Option<String>,
    pub state: Option<String>,
}

Fields

at_time: Option<String>

The time, as an ISO 8601 string, that you specified in your command. If you did not specify a time, GetCalendarState uses the current time.

next_transition_time: Option<String>

The time, as an ISO 8601 string, that the calendar state will change. If the current calendar state is OPEN, NextTransitionTime indicates when the calendar state changes to CLOSED, and vice-versa.

state: Option<String>

The state of the calendar. An OPEN calendar indicates that actions are allowed to proceed, and a CLOSED calendar indicates that actions are not allowed to proceed.

Trait Implementations

impl Clone for GetCalendarStateResponse[src]

impl Debug for GetCalendarStateResponse[src]

impl Default for GetCalendarStateResponse[src]

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

impl PartialEq<GetCalendarStateResponse> for GetCalendarStateResponse[src]

impl StructuralPartialEq for GetCalendarStateResponse[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.