Enum rusoto_workspaces::ModifyWorkspacePropertiesError [] [src]

pub enum ModifyWorkspacePropertiesError {
    AccessDenied(String),
    InvalidParameterValues(String),
    InvalidResourceState(String),
    OperationInProgress(String),
    ResourceNotFound(String),
    ResourceUnavailable(String),
    UnsupportedWorkspaceConfiguration(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by ModifyWorkspaceProperties

Variants

The user is not authorized to access a resource.

One or more parameter values are not valid.

The state of the WorkSpace is not valid for this operation.

The properties of this WorkSpace are currently being modified. Try again in a moment.

The resource could not be found.

The specified resource is not available.

The configuration of this WorkSpace is not supported for this operation. For more information, see the Amazon WorkSpaces Administration 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 ModifyWorkspacePropertiesError
[src]

Trait Implementations

impl Debug for ModifyWorkspacePropertiesError
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for ModifyWorkspacePropertiesError
[src]

[src]

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

[src]

This method tests for !=.

impl From<Error> for ModifyWorkspacePropertiesError
[src]

[src]

Performs the conversion.

impl From<CredentialsError> for ModifyWorkspacePropertiesError
[src]

[src]

Performs the conversion.

impl From<HttpDispatchError> for ModifyWorkspacePropertiesError
[src]

[src]

Performs the conversion.

impl From<Error> for ModifyWorkspacePropertiesError
[src]

[src]

Performs the conversion.

impl Display for ModifyWorkspacePropertiesError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for ModifyWorkspacePropertiesError
[src]

[src]

A short description of the error. Read more

1.0.0
[src]

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

Auto Trait Implementations