[][src]Enum rusoto_redshift::CreateClusterError

pub enum CreateClusterError {
    ClusterAlreadyExistsFault(String),
    ClusterParameterGroupNotFoundFault(String),
    ClusterQuotaExceededFault(String),
    ClusterSecurityGroupNotFoundFault(String),
    ClusterSubnetGroupNotFoundFault(String),
    DependentServiceRequestThrottlingFault(String),
    HsmClientCertificateNotFoundFault(String),
    HsmConfigurationNotFoundFault(String),
    InsufficientClusterCapacityFault(String),
    InvalidClusterSubnetGroupStateFault(String),
    InvalidClusterTrackFault(String),
    InvalidElasticIpFault(String),
    InvalidSubnet(String),
    InvalidTagFault(String),
    InvalidVPCNetworkStateFault(String),
    LimitExceededFault(String),
    NumberOfNodesPerClusterLimitExceededFault(String),
    NumberOfNodesQuotaExceededFault(String),
    TagLimitExceededFault(String),
    UnauthorizedOperation(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    ParseError(String),
    Unknown(BufferedHttpResponse),
}

Errors returned by CreateCluster

Variants

The account already has a cluster with the given identifier.

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

The request would exceed the allowed number of cluster instances for this account. For information about increasing your quota, go to Limits in Amazon Redshift in the Amazon Redshift Cluster Management Guide.

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

The cluster subnet group name does not refer to an existing cluster subnet 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 cluster subnet group cannot be deleted because it is in use.

The provided cluster track name is not valid.

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

The requested subnet is not valid, or not all of the subnets are in the same VPC.

The tag is invalid.

The cluster subnet group does not cover all Availability Zones.

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 your source cluster exceeds the limit for the target cluster. Resize to a larger cluster node type.

Your account is not authorized to perform the requested operation.

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

Trait Implementations

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

Performs the conversion.

impl From<CredentialsError> for CreateClusterError
[src]

Performs the conversion.

impl From<HttpDispatchError> for CreateClusterError
[src]

Performs the conversion.

impl From<Error> for CreateClusterError
[src]

Performs the conversion.

impl Debug for CreateClusterError
[src]

Formats the value using the given formatter. Read more

impl Display for CreateClusterError
[src]

Formats the value using the given formatter. Read more

impl Error for CreateClusterError
[src]

This method is soft-deprecated. Read more

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, U> Into for T where
    U: From<T>, 
[src]

Performs the conversion.

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

Converts the given value to a String. Read more

impl<T> From for T
[src]

Performs the conversion.

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.

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

Performs the conversion.

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

Immutably borrows from an owned value. Read more

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

Mutably borrows from an owned value. Read more

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.

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

Performs the conversion.

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

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

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more

impl<T> Same for T

Should always be Self

impl<T> Erased for T