pub enum CreateLogStreamError {
InvalidParameter(String),
ResourceAlreadyExists(String),
ResourceNotFound(String),
ServiceUnavailable(String),
}Expand description
Errors returned by CreateLogStream
Variants§
InvalidParameter(String)
A parameter is specified incorrectly.
ResourceAlreadyExists(String)
The specified resource already exists.
ResourceNotFound(String)
The specified resource does not exist.
The service cannot complete the request.
Implementations§
Source§impl CreateLogStreamError
impl CreateLogStreamError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateLogStreamError>
Trait Implementations§
Source§impl Debug for CreateLogStreamError
impl Debug for CreateLogStreamError
Source§impl Display for CreateLogStreamError
impl Display for CreateLogStreamError
Source§impl Error for CreateLogStreamError
impl Error for CreateLogStreamError
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 CreateLogStreamError
impl PartialEq for CreateLogStreamError
impl StructuralPartialEq for CreateLogStreamError
Auto Trait Implementations§
impl Freeze for CreateLogStreamError
impl RefUnwindSafe for CreateLogStreamError
impl Send for CreateLogStreamError
impl Sync for CreateLogStreamError
impl Unpin for CreateLogStreamError
impl UnwindSafe for CreateLogStreamError
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