pub enum ModifySnapshotScheduleError {
InvalidScheduleFault(String),
SnapshotScheduleNotFoundFault(String),
SnapshotScheduleUpdateInProgressFault(String),
}
Expand description
Errors returned by ModifySnapshotSchedule
Variants§
InvalidScheduleFault(String)
The schedule you submitted isn't valid.
SnapshotScheduleNotFoundFault(String)
We could not find the specified snapshot schedule.
SnapshotScheduleUpdateInProgressFault(String)
The specified snapshot schedule is already being updated.
Implementations§
Source§impl ModifySnapshotScheduleError
impl ModifySnapshotScheduleError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<ModifySnapshotScheduleError>
Trait Implementations§
Source§impl Debug for ModifySnapshotScheduleError
impl Debug for ModifySnapshotScheduleError
Source§impl Error for ModifySnapshotScheduleError
impl Error for ModifySnapshotScheduleError
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 ModifySnapshotScheduleError
Auto Trait Implementations§
impl Freeze for ModifySnapshotScheduleError
impl RefUnwindSafe for ModifySnapshotScheduleError
impl Send for ModifySnapshotScheduleError
impl Sync for ModifySnapshotScheduleError
impl Unpin for ModifySnapshotScheduleError
impl UnwindSafe for ModifySnapshotScheduleError
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