pub enum CreateSnapshotScheduleError {
InvalidScheduleFault(String),
ScheduleDefinitionTypeUnsupportedFault(String),
SnapshotScheduleAlreadyExistsFault(String),
SnapshotScheduleQuotaExceededFault(String),
TagLimitExceededFault(String),
}
Expand description
Errors returned by CreateSnapshotSchedule
Variants§
InvalidScheduleFault(String)
The schedule you submitted isn't valid.
ScheduleDefinitionTypeUnsupportedFault(String)
The definition you submitted is not supported.
SnapshotScheduleAlreadyExistsFault(String)
The specified snapshot schedule already exists.
SnapshotScheduleQuotaExceededFault(String)
You have exceeded the quota of snapshot schedules.
TagLimitExceededFault(String)
You have exceeded the number of tags allowed.
Implementations§
Source§impl CreateSnapshotScheduleError
impl CreateSnapshotScheduleError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateSnapshotScheduleError>
Trait Implementations§
Source§impl Debug for CreateSnapshotScheduleError
impl Debug for CreateSnapshotScheduleError
Source§impl Error for CreateSnapshotScheduleError
impl Error for CreateSnapshotScheduleError
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()
impl StructuralPartialEq for CreateSnapshotScheduleError
Auto Trait Implementations§
impl Freeze for CreateSnapshotScheduleError
impl RefUnwindSafe for CreateSnapshotScheduleError
impl Send for CreateSnapshotScheduleError
impl Sync for CreateSnapshotScheduleError
impl Unpin for CreateSnapshotScheduleError
impl UnwindSafe for CreateSnapshotScheduleError
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