pub enum ResizeClusterError {
ClusterNotFoundFault(String),
InsufficientClusterCapacityFault(String),
InvalidClusterStateFault(String),
LimitExceededFault(String),
NumberOfNodesPerClusterLimitExceededFault(String),
NumberOfNodesQuotaExceededFault(String),
UnauthorizedOperation(String),
UnsupportedOperationFault(String),
UnsupportedOptionFault(String),
}
Expand description
Errors returned by ResizeCluster
Variants§
ClusterNotFoundFault(String)
The ClusterIdentifier
parameter does not refer to an existing cluster.
InsufficientClusterCapacityFault(String)
The number of nodes specified exceeds the allotted capacity of the cluster.
InvalidClusterStateFault(String)
The specified cluster is not in the available
state.
LimitExceededFault(String)
The encryption key has exceeded its grant limit in AWS KMS.
NumberOfNodesPerClusterLimitExceededFault(String)
The operation would exceed the number of nodes allowed for a cluster.
NumberOfNodesQuotaExceededFault(String)
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.
Your account is not authorized to perform the requested operation.
UnsupportedOperationFault(String)
The requested operation isn't supported.
UnsupportedOptionFault(String)
A request option was specified that is not supported.
Implementations§
Source§impl ResizeClusterError
impl ResizeClusterError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<ResizeClusterError>
Trait Implementations§
Source§impl Debug for ResizeClusterError
impl Debug for ResizeClusterError
Source§impl Display for ResizeClusterError
impl Display for ResizeClusterError
Source§impl Error for ResizeClusterError
impl Error for ResizeClusterError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for ResizeClusterError
impl PartialEq for ResizeClusterError
impl StructuralPartialEq for ResizeClusterError
Auto Trait Implementations§
impl Freeze for ResizeClusterError
impl RefUnwindSafe for ResizeClusterError
impl Send for ResizeClusterError
impl Sync for ResizeClusterError
impl Unpin for ResizeClusterError
impl UnwindSafe for ResizeClusterError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more