pub enum ModifyScheduledActionError {
InvalidScheduleFault(String),
InvalidScheduledActionFault(String),
ScheduledActionNotFoundFault(String),
ScheduledActionTypeUnsupportedFault(String),
UnauthorizedOperation(String),
}
Expand description
Errors returned by ModifyScheduledAction
Variants§
InvalidScheduleFault(String)
The schedule you submitted isn't valid.
InvalidScheduledActionFault(String)
The scheduled action is not valid.
ScheduledActionNotFoundFault(String)
The scheduled action cannot be found.
ScheduledActionTypeUnsupportedFault(String)
The action type specified for a scheduled action is not supported.
Your account is not authorized to perform the requested operation.
Implementations§
Source§impl ModifyScheduledActionError
impl ModifyScheduledActionError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<ModifyScheduledActionError>
Trait Implementations§
Source§impl Debug for ModifyScheduledActionError
impl Debug for ModifyScheduledActionError
Source§impl Display for ModifyScheduledActionError
impl Display for ModifyScheduledActionError
Source§impl Error for ModifyScheduledActionError
impl Error for ModifyScheduledActionError
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 ModifyScheduledActionError
Auto Trait Implementations§
impl Freeze for ModifyScheduledActionError
impl RefUnwindSafe for ModifyScheduledActionError
impl Send for ModifyScheduledActionError
impl Sync for ModifyScheduledActionError
impl Unpin for ModifyScheduledActionError
impl UnwindSafe for ModifyScheduledActionError
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