pub enum StopDeliveryStreamEncryptionError {
InvalidArgument(String),
LimitExceeded(String),
ResourceInUse(String),
ResourceNotFound(String),
}Expand description
Errors returned by StopDeliveryStreamEncryption
Variants§
InvalidArgument(String)
The specified input parameter has a value that is not valid.
LimitExceeded(String)
You have already reached the limit for a requested resource.
ResourceInUse(String)
The resource is already in use and not available for this operation.
ResourceNotFound(String)
The specified resource could not be found.
Implementations§
Trait Implementations§
Source§impl Error for StopDeliveryStreamEncryptionError
impl Error for StopDeliveryStreamEncryptionError
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 StopDeliveryStreamEncryptionError
impl PartialEq for StopDeliveryStreamEncryptionError
Source§fn eq(&self, other: &StopDeliveryStreamEncryptionError) -> bool
fn eq(&self, other: &StopDeliveryStreamEncryptionError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StopDeliveryStreamEncryptionError
Auto Trait Implementations§
impl Freeze for StopDeliveryStreamEncryptionError
impl RefUnwindSafe for StopDeliveryStreamEncryptionError
impl Send for StopDeliveryStreamEncryptionError
impl Sync for StopDeliveryStreamEncryptionError
impl Unpin for StopDeliveryStreamEncryptionError
impl UnwindSafe for StopDeliveryStreamEncryptionError
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