Enum rusoto_sts::GetSessionTokenError[][src]

pub enum GetSessionTokenError {
    RegionDisabled(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by GetSessionToken

Variants

STS is not activated in the requested region for the account that is being asked to generate credentials. The account administrator must use the IAM console to activate STS in that region. For more information, see Activating and Deactivating AWS STS in an AWS Region in the IAM User Guide.

An error occurred dispatching the HTTP request

An error was encountered with AWS credentials.

A validation error occurred. Details from AWS are provided.

An unknown error occurred. The raw HTTP response is provided.

Methods

impl GetSessionTokenError
[src]

Trait Implementations

impl Debug for GetSessionTokenError
[src]

Formats the value using the given formatter. Read more

impl PartialEq for GetSessionTokenError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl From<XmlParseError> for GetSessionTokenError
[src]

Performs the conversion.

impl From<CredentialsError> for GetSessionTokenError
[src]

Performs the conversion.

impl From<HttpDispatchError> for GetSessionTokenError
[src]

Performs the conversion.

impl From<Error> for GetSessionTokenError
[src]

Performs the conversion.

impl Display for GetSessionTokenError
[src]

Formats the value using the given formatter. Read more

impl Error for GetSessionTokenError
[src]

This method is soft-deprecated. Read more

The lower-level cause of this error, if any. Read more

Auto Trait Implementations