Enum rusoto_sts::AssumeRoleWithSAMLError[][src]

pub enum AssumeRoleWithSAMLError {
    ExpiredToken(String),
    IDPRejectedClaim(String),
    InvalidIdentityToken(String),
    MalformedPolicyDocument(String),
    PackedPolicyTooLarge(String),
    RegionDisabled(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by AssumeRoleWithSAML

Variants

The web identity token that was passed is expired or is not valid. Get a new identity token from the identity provider and then retry the request.

The identity provider (IdP) reported that authentication failed. This might be because the claim is invalid.

If this error is returned for the AssumeRoleWithWebIdentity operation, it can also mean that the claim has expired or has been explicitly revoked.

The web identity token that was passed could not be validated by AWS. Get a new identity token from the identity provider and then retry the request.

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

Trait Implementations

impl Debug for AssumeRoleWithSAMLError
[src]

Formats the value using the given formatter. Read more

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

Performs the conversion.

impl From<CredentialsError> for AssumeRoleWithSAMLError
[src]

Performs the conversion.

impl From<HttpDispatchError> for AssumeRoleWithSAMLError
[src]

Performs the conversion.

impl From<Error> for AssumeRoleWithSAMLError
[src]

Performs the conversion.

impl Display for AssumeRoleWithSAMLError
[src]

Formats the value using the given formatter. Read more

impl Error for AssumeRoleWithSAMLError
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations