[][src]Enum rusoto_ssm::StartSessionError

pub enum StartSessionError {
    InternalServerError(String),
    InvalidDocument(String),
    TargetNotConnected(String),
}

Errors returned by StartSession

Variants

InternalServerError(String)

An error occurred on the server side.

InvalidDocument(String)

The specified document does not exist.

TargetNotConnected(String)

The specified target instance for the session is not fully configured for use with Session Manager. For more information, see Getting started with Session Manager in the AWS Systems Manager User Guide. This error is also returned if you attempt to start a session on an instance that is located in a different account or Region

Implementations

impl StartSessionError[src]

Trait Implementations

impl Debug for StartSessionError[src]

impl Display for StartSessionError[src]

impl Error for StartSessionError[src]

impl PartialEq<StartSessionError> for StartSessionError[src]

impl StructuralPartialEq for StartSessionError[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> 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> ToString for T where
    T: Display + ?Sized
[src]

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.