pub enum CreateDataRepositoryTaskError {
BadRequest(String),
DataRepositoryTaskExecuting(String),
FileSystemNotFound(String),
IncompatibleParameterError(String),
InternalServerError(String),
ServiceLimitExceeded(String),
UnsupportedOperation(String),
}Expand description
Errors returned by CreateDataRepositoryTask
Variants§
BadRequest(String)
A generic error indicating a failure with a client request.
DataRepositoryTaskExecuting(String)
An existing data repository task is currently executing on the file system. Wait until the existing task has completed, then create the new task.
FileSystemNotFound(String)
No Amazon FSx file systems were found based upon supplied parameters.
IncompatibleParameterError(String)
The error returned when a second request is received with the same client request token but different parameters settings. A client request token should always uniquely identify a single request.
InternalServerError(String)
A generic error indicating a server-side failure.
ServiceLimitExceeded(String)
An error indicating that a particular service limit was exceeded. You can increase some service limits by contacting AWS Support.
UnsupportedOperation(String)
The requested operation is not supported for this resource or API.
Implementations§
Trait Implementations§
Source§impl Error for CreateDataRepositoryTaskError
impl Error for CreateDataRepositoryTaskError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
Source§impl PartialEq for CreateDataRepositoryTaskError
impl PartialEq for CreateDataRepositoryTaskError
Source§fn eq(&self, other: &CreateDataRepositoryTaskError) -> bool
fn eq(&self, other: &CreateDataRepositoryTaskError) -> bool
self and other values to be equal, and is used by ==.