[][src]Enum rusoto_ec2_instance_connect::SendSSHPublicKeyError

pub enum SendSSHPublicKeyError {
    Auth(String),
    EC2InstanceNotFound(String),
    InvalidArgs(String),
    Service(String),
    Throttling(String),
}

Errors returned by SendSSHPublicKey

Variants

Auth(String)

Indicates that either your AWS credentials are invalid or you do not have access to the EC2 instance.

EC2InstanceNotFound(String)

Indicates that the instance requested was not found in the given zone. Check that you have provided a valid instance ID and the correct zone.

InvalidArgs(String)

Indicates that you provided bad input. Ensure you have a valid instance ID, the correct zone, and a valid SSH public key.

Service(String)

Indicates that the service encountered an error. Follow the message's instructions and try again.

Throttling(String)

Indicates you have been making requests too frequently and have been throttled. Wait for a while and try again. If higher call volume is warranted contact AWS Support.

Implementations

impl SendSSHPublicKeyError[src]

Trait Implementations

impl Debug for SendSSHPublicKeyError[src]

impl Display for SendSSHPublicKeyError[src]

impl Error for SendSSHPublicKeyError[src]

impl PartialEq<SendSSHPublicKeyError> for SendSSHPublicKeyError[src]

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