[][src]Struct rusoto_ssm::Session

pub struct Session {
    pub details: Option<String>,
    pub document_name: Option<String>,
    pub end_date: Option<f64>,
    pub output_url: Option<SessionManagerOutputUrl>,
    pub owner: Option<String>,
    pub session_id: Option<String>,
    pub start_date: Option<f64>,
    pub status: Option<String>,
    pub target: Option<String>,
}

Information about a Session Manager connection to an instance.

Fields

details: Option<String>

Reserved for future use.

document_name: Option<String>

The name of the Session Manager SSM document used to define the parameters and plugin settings for the session. For example, SSM-SessionManagerRunShell.

end_date: Option<f64>

The date and time, in ISO-8601 Extended format, when the session was terminated.

output_url: Option<SessionManagerOutputUrl>

Reserved for future use.

owner: Option<String>

The ID of the AWS user account that started the session.

session_id: Option<String>

The ID of the session.

start_date: Option<f64>

The date and time, in ISO-8601 Extended format, when the session began.

status: Option<String>

The status of the session. For example, "Connected" or "Terminated".

target: Option<String>

The instance that the Session Manager session connected to.

Trait Implementations

impl Clone for Session[src]

impl Debug for Session[src]

impl Default for Session[src]

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

impl PartialEq<Session> for Session[src]

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