Enum rusoto_clouddirectory::UpgradeAppliedSchemaError[][src]

pub enum UpgradeAppliedSchemaError {
    AccessDenied(String),
    IncompatibleSchema(String),
    InternalService(String),
    InvalidArn(String),
    InvalidAttachment(String),
    ResourceNotFound(String),
    RetryableConflict(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by UpgradeAppliedSchema

Variants

Access denied. Check your permissions.

Indicates a failure occurred while performing a check for backward compatibility between the specified schema and the schema that is currently applied to the directory.

Indicates a problem that must be resolved by Amazon Web Services. This might be a transient error in which case you can retry your request until it succeeds. Otherwise, go to the AWS Service Health Dashboard site to see if there are any operational issues with the service.

Indicates that the provided ARN value is not valid.

Indicates that an attempt to attach an object with the same link name or to apply a schema with the same name has occurred. Rename the link or the schema and then try again.

The specified resource could not be found.

Occurs when a conflict with a previous successful write is detected. For example, if a write operation occurs on an object and then an attempt is made to read the object using “SERIALIZABLE” consistency, this exception may result. This generally occurs when the previous write did not have time to propagate to the host serving the current request. A retry (with appropriate backoff logic) is the recommended response to this exception.

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

Trait Implementations

impl Debug for UpgradeAppliedSchemaError
[src]

Formats the value using the given formatter. Read more

impl PartialEq for UpgradeAppliedSchemaError
[src]

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

This method tests for !=.

impl From<Error> for UpgradeAppliedSchemaError
[src]

Performs the conversion.

impl From<CredentialsError> for UpgradeAppliedSchemaError
[src]

Performs the conversion.

impl From<HttpDispatchError> for UpgradeAppliedSchemaError
[src]

Performs the conversion.

impl From<Error> for UpgradeAppliedSchemaError
[src]

Performs the conversion.

impl Display for UpgradeAppliedSchemaError
[src]

Formats the value using the given formatter. Read more

impl Error for UpgradeAppliedSchemaError
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations