pub enum CreateScheduledActionError {
InvalidScheduleFault(String),
InvalidScheduledActionFault(String),
ScheduledActionAlreadyExistsFault(String),
ScheduledActionQuotaExceededFault(String),
ScheduledActionTypeUnsupportedFault(String),
UnauthorizedOperation(String),
}
Expand description
Errors returned by CreateScheduledAction
Variants§
InvalidScheduleFault(String)
The schedule you submitted isn't valid.
InvalidScheduledActionFault(String)
The scheduled action is not valid.
ScheduledActionAlreadyExistsFault(String)
The scheduled action already exists.
ScheduledActionQuotaExceededFault(String)
The quota for scheduled actions exceeded.
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 CreateScheduledActionError
impl CreateScheduledActionError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateScheduledActionError>
Trait Implementations§
Source§impl Debug for CreateScheduledActionError
impl Debug for CreateScheduledActionError
Source§impl Display for CreateScheduledActionError
impl Display for CreateScheduledActionError
Source§impl Error for CreateScheduledActionError
impl Error for CreateScheduledActionError
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 CreateScheduledActionError
Auto Trait Implementations§
impl Freeze for CreateScheduledActionError
impl RefUnwindSafe for CreateScheduledActionError
impl Send for CreateScheduledActionError
impl Sync for CreateScheduledActionError
impl Unpin for CreateScheduledActionError
impl UnwindSafe for CreateScheduledActionError
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