Enum rusoto_importexport::UpdateJobError[][src]

pub enum UpdateJobError {
    BucketPermission(String),
    CanceledJobId(String),
    ExpiredJobId(String),
    InvalidAccessKeyId(String),
    InvalidAddress(String),
    InvalidCustoms(String),
    InvalidFileSystem(String),
    InvalidJobId(String),
    InvalidManifestField(String),
    InvalidParameter(String),
    InvalidVersion(String),
    MalformedManifest(String),
    MissingCustoms(String),
    MissingManifestField(String),
    MissingParameter(String),
    MultipleRegions(String),
    NoSuchBucket(String),
    UnableToUpdateJobId(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by UpdateJob

Variants

The account specified does not have the appropriate bucket permissions.

The specified job ID has been canceled and is no longer valid.

Indicates that the specified job has expired out of the system.

The AWS Access Key ID specified in the request did not match the manifest's accessKeyId value. The manifest and the request authentication must use the same AWS Access Key ID.

The address specified in the manifest is invalid.

One or more customs parameters was invalid. Please correct and resubmit.

File system specified in export manifest is invalid.

The JOBID was missing, not found, or not associated with the AWS account.

One or more manifest fields was invalid. Please correct and resubmit.

One or more parameters had an invalid value.

The client tool version is invalid.

Your manifest is not well-formed.

One or more required customs parameters was missing from the manifest.

One or more required fields were missing from the manifest file. Please correct and resubmit.

One or more required parameters was missing from the request.

Your manifest file contained buckets from multiple regions. A job is restricted to buckets from one region. Please correct and resubmit.

The specified bucket does not exist. Create the specified bucket or change the manifest's bucket, exportBucket, or logBucket field to a bucket that the account, as specified by the manifest's Access Key ID, has write permissions to.

AWS Import/Export cannot update the job

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

Trait Implementations

impl Debug for UpdateJobError
[src]

Formats the value using the given formatter. Read more

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

Performs the conversion.

impl From<CredentialsError> for UpdateJobError
[src]

Performs the conversion.

impl From<HttpDispatchError> for UpdateJobError
[src]

Performs the conversion.

impl From<Error> for UpdateJobError
[src]

Performs the conversion.

impl Display for UpdateJobError
[src]

Formats the value using the given formatter. Read more

impl Error for UpdateJobError
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations