pub enum StartStreamProcessorError {
AccessDenied(String),
InternalServerError(String),
InvalidParameter(String),
ProvisionedThroughputExceeded(String),
ResourceInUse(String),
ResourceNotFound(String),
Throttling(String),
}Expand description
Errors returned by StartStreamProcessor
Variants§
AccessDenied(String)
You are not authorized to perform the action.
InternalServerError(String)
Amazon Rekognition experienced a service issue. Try your call again.
InvalidParameter(String)
Input parameter violated a constraint. Validate your parameter before calling the API operation again.
ProvisionedThroughputExceeded(String)
The number of requests exceeded your throughput limit. If you want to increase this limit, contact Amazon Rekognition.
ResourceInUse(String)
The specified resource is already being used.
ResourceNotFound(String)
The resource specified in the request cannot be found.
Throttling(String)
Amazon Rekognition is temporarily unable to process the request. Try your call again.
Implementations§
Source§impl StartStreamProcessorError
impl StartStreamProcessorError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<StartStreamProcessorError>
Trait Implementations§
Source§impl Debug for StartStreamProcessorError
impl Debug for StartStreamProcessorError
Source§impl Display for StartStreamProcessorError
impl Display for StartStreamProcessorError
Source§impl Error for StartStreamProcessorError
impl Error for StartStreamProcessorError
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 StartStreamProcessorError
Auto Trait Implementations§
impl Freeze for StartStreamProcessorError
impl RefUnwindSafe for StartStreamProcessorError
impl Send for StartStreamProcessorError
impl Sync for StartStreamProcessorError
impl Unpin for StartStreamProcessorError
impl UnwindSafe for StartStreamProcessorError
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