pub enum CreateDeliveryStreamError {
InvalidArgument(String),
InvalidKMSResource(String),
LimitExceeded(String),
ResourceInUse(String),
}Expand description
Errors returned by CreateDeliveryStream
Variants§
InvalidArgument(String)
The specified input parameter has a value that is not valid.
InvalidKMSResource(String)
Kinesis Data Firehose throws this exception when an attempt to put records or to start or stop delivery stream encryption fails. This happens when the KMS service throws one of the following exception types: AccessDeniedException, InvalidStateException, DisabledException, or NotFoundException.
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.
Implementations§
Source§impl CreateDeliveryStreamError
impl CreateDeliveryStreamError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateDeliveryStreamError>
Trait Implementations§
Source§impl Debug for CreateDeliveryStreamError
impl Debug for CreateDeliveryStreamError
Source§impl Display for CreateDeliveryStreamError
impl Display for CreateDeliveryStreamError
Source§impl Error for CreateDeliveryStreamError
impl Error for CreateDeliveryStreamError
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 CreateDeliveryStreamError
Auto Trait Implementations§
impl Freeze for CreateDeliveryStreamError
impl RefUnwindSafe for CreateDeliveryStreamError
impl Send for CreateDeliveryStreamError
impl Sync for CreateDeliveryStreamError
impl Unpin for CreateDeliveryStreamError
impl UnwindSafe for CreateDeliveryStreamError
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