Enum rusoto_sts::GetFederationTokenError[][src]

pub enum GetFederationTokenError {
    MalformedPolicyDocument(String),
    PackedPolicyTooLarge(String),
    RegionDisabled(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by GetFederationToken

Variants

The request was rejected because the policy document was malformed. The error message describes the specific error.

The request was rejected because the policy document was too large. The error message describes how big the policy document is, in packed form, as a percentage of what the API allows.

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 GetFederationTokenError
[src]

Trait Implementations

impl Debug for GetFederationTokenError
[src]

Formats the value using the given formatter. Read more

impl PartialEq for GetFederationTokenError
[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 GetFederationTokenError
[src]

Performs the conversion.

impl From<CredentialsError> for GetFederationTokenError
[src]

Performs the conversion.

impl From<HttpDispatchError> for GetFederationTokenError
[src]

Performs the conversion.

impl From<Error> for GetFederationTokenError
[src]

Performs the conversion.

impl Display for GetFederationTokenError
[src]

Formats the value using the given formatter. Read more

impl Error for GetFederationTokenError
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations