pub enum DeleteRealtimeLogConfigError {
AccessDenied(String),
InvalidArgument(String),
NoSuchRealtimeLogConfig(String),
RealtimeLogConfigInUse(String),
}
Expand description
Errors returned by DeleteRealtimeLogConfig
Variants§
AccessDenied(String)
Access denied.
InvalidArgument(String)
An argument is invalid.
NoSuchRealtimeLogConfig(String)
The real-time log configuration does not exist.
RealtimeLogConfigInUse(String)
Cannot delete the real-time log configuration because it is attached to one or more cache behaviors.
Implementations§
Trait Implementations§
Source§impl Debug for DeleteRealtimeLogConfigError
impl Debug for DeleteRealtimeLogConfigError
Source§impl Error for DeleteRealtimeLogConfigError
impl Error for DeleteRealtimeLogConfigError
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()
Source§impl PartialEq for DeleteRealtimeLogConfigError
impl PartialEq for DeleteRealtimeLogConfigError
Source§fn eq(&self, other: &DeleteRealtimeLogConfigError) -> bool
fn eq(&self, other: &DeleteRealtimeLogConfigError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DeleteRealtimeLogConfigError
Auto Trait Implementations§
impl Freeze for DeleteRealtimeLogConfigError
impl RefUnwindSafe for DeleteRealtimeLogConfigError
impl Send for DeleteRealtimeLogConfigError
impl Sync for DeleteRealtimeLogConfigError
impl Unpin for DeleteRealtimeLogConfigError
impl UnwindSafe for DeleteRealtimeLogConfigError
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