#[non_exhaustive]
pub enum ResizeClusterErrorKind {
Show 16 variants
ClusterNotFoundFault(ClusterNotFoundFault),
DependentServiceUnavailableFault(DependentServiceUnavailableFault),
InsufficientClusterCapacityFault(InsufficientClusterCapacityFault),
InvalidClusterStateFault(InvalidClusterStateFault),
InvalidReservedNodeStateFault(InvalidReservedNodeStateFault),
LimitExceededFault(LimitExceededFault),
NumberOfNodesPerClusterLimitExceededFault(NumberOfNodesPerClusterLimitExceededFault),
NumberOfNodesQuotaExceededFault(NumberOfNodesQuotaExceededFault),
ReservedNodeAlreadyExistsFault(ReservedNodeAlreadyExistsFault),
ReservedNodeAlreadyMigratedFault(ReservedNodeAlreadyMigratedFault),
ReservedNodeNotFoundFault(ReservedNodeNotFoundFault),
ReservedNodeOfferingNotFoundFault(ReservedNodeOfferingNotFoundFault),
UnauthorizedOperation(UnauthorizedOperation),
UnsupportedOperationFault(UnsupportedOperationFault),
UnsupportedOptionFault(UnsupportedOptionFault),
Unhandled(Box<dyn Error + Send + Sync + 'static>),
}
Expand description
Types of errors that can occur for the ResizeCluster
operation.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
ClusterNotFoundFault(ClusterNotFoundFault)
The ClusterIdentifier
parameter does not refer to an existing cluster.
DependentServiceUnavailableFault(DependentServiceUnavailableFault)
Your request cannot be completed because a dependent internal service is temporarily unavailable. Wait 30 to 60 seconds and try again.
InsufficientClusterCapacityFault(InsufficientClusterCapacityFault)
The number of nodes specified exceeds the allotted capacity of the cluster.
InvalidClusterStateFault(InvalidClusterStateFault)
The specified cluster is not in the available
state.
InvalidReservedNodeStateFault(InvalidReservedNodeStateFault)
Indicates that the Reserved Node being exchanged is not in an active state.
LimitExceededFault(LimitExceededFault)
The encryption key has exceeded its grant limit in Amazon Web Services KMS.
NumberOfNodesPerClusterLimitExceededFault(NumberOfNodesPerClusterLimitExceededFault)
The operation would exceed the number of nodes allowed for a cluster.
NumberOfNodesQuotaExceededFault(NumberOfNodesQuotaExceededFault)
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.
ReservedNodeAlreadyExistsFault(ReservedNodeAlreadyExistsFault)
User already has a reservation with the given identifier.
ReservedNodeAlreadyMigratedFault(ReservedNodeAlreadyMigratedFault)
Indicates that the reserved node has already been exchanged.
ReservedNodeNotFoundFault(ReservedNodeNotFoundFault)
The specified reserved compute node not found.
ReservedNodeOfferingNotFoundFault(ReservedNodeOfferingNotFoundFault)
Specified offering does not exist.
UnauthorizedOperation(UnauthorizedOperation)
Your account is not authorized to perform the requested operation.
UnsupportedOperationFault(UnsupportedOperationFault)
The requested operation isn't supported.
UnsupportedOptionFault(UnsupportedOptionFault)
A request option was specified that is not supported.
Unhandled(Box<dyn Error + Send + Sync + 'static>)
An unexpected error, e.g. invalid JSON returned by the service or an unknown error code
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for ResizeClusterErrorKind
impl Send for ResizeClusterErrorKind
impl Sync for ResizeClusterErrorKind
impl Unpin for ResizeClusterErrorKind
impl !UnwindSafe for ResizeClusterErrorKind
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more