[][src]Enum rusoto_redshift::ModifyClusterError

pub enum ModifyClusterError {
    ClusterAlreadyExistsFault(String),
    ClusterNotFoundFault(String),
    ClusterParameterGroupNotFoundFault(String),
    ClusterSecurityGroupNotFoundFault(String),
    DependentServiceRequestThrottlingFault(String),
    HsmClientCertificateNotFoundFault(String),
    HsmConfigurationNotFoundFault(String),
    InsufficientClusterCapacityFault(String),
    InvalidClusterSecurityGroupStateFault(String),
    InvalidClusterStateFault(String),
    InvalidClusterTrackFault(String),
    InvalidElasticIpFault(String),
    LimitExceededFault(String),
    NumberOfNodesPerClusterLimitExceededFault(String),
    NumberOfNodesQuotaExceededFault(String),
    TableLimitExceededFault(String),
    UnauthorizedOperation(String),
    UnsupportedOptionFault(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    ParseError(String),
    Unknown(BufferedHttpResponse),
}

Errors returned by ModifyCluster

Variants

The account already has a cluster with the given identifier.

The ClusterIdentifier parameter does not refer to an existing cluster.

The parameter group name does not refer to an existing parameter group.

The cluster security group name does not refer to an existing cluster security group.

The request cannot be completed because a dependent service is throttling requests made by Amazon Redshift on your behalf. Wait and retry the request.

There is no Amazon Redshift HSM client certificate with the specified identifier.

There is no Amazon Redshift HSM configuration with the specified identifier.

The number of nodes specified exceeds the allotted capacity of the cluster.

The state of the cluster security group is not available.

The specified cluster is not in the available state.

The provided cluster track name is not valid.

The Elastic IP (EIP) is invalid or cannot be found.

The encryption key has exceeded its grant limit in AWS KMS.

The operation would exceed the number of nodes allowed for a cluster.

The operation would exceed the number of nodes allotted to the account. For information about increasing your quota, go to Limits in Amazon Redshift in the Amazon Redshift Cluster Management Guide.

The number of tables in the cluster exceeds the limit for the requested new cluster node type.

Your account is not authorized to perform the requested operation.

A request option was specified that is not supported.

An error occurred dispatching the HTTP request

An error was encountered with AWS credentials.

A validation error occurred. Details from AWS are provided.

An error occurred parsing the response payload.

An unknown error occurred. The raw HTTP response is provided.

Methods

impl ModifyClusterError
[src]

Trait Implementations

impl From<XmlParseError> for ModifyClusterError
[src]

impl From<CredentialsError> for ModifyClusterError
[src]

impl From<HttpDispatchError> for ModifyClusterError
[src]

impl From<Error> for ModifyClusterError
[src]

impl PartialEq<ModifyClusterError> for ModifyClusterError
[src]

impl Debug for ModifyClusterError
[src]

impl Display for ModifyClusterError
[src]

impl Error for ModifyClusterError
[src]

Deprecating in 1.33.0

: replaced by Error::source, which can support downcasting

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

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

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same for T

Should always be Self

impl<T> Erased for T