pub enum ListApplicationRevisionsError {
ApplicationDoesNotExist(String),
ApplicationNameRequired(String),
BucketNameFilterRequired(String),
InvalidApplicationName(String),
InvalidBucketNameFilter(String),
InvalidDeployedStateFilter(String),
InvalidKeyPrefixFilter(String),
InvalidNextToken(String),
InvalidSortBy(String),
InvalidSortOrder(String),
}
Expand description
Errors returned by ListApplicationRevisions
Variants§
ApplicationDoesNotExist(String)
The application does not exist with the IAM user or AWS account.
ApplicationNameRequired(String)
The minimum number of required application names was not specified.
BucketNameFilterRequired(String)
A bucket name is required, but was not provided.
InvalidApplicationName(String)
The application name was specified in an invalid format.
InvalidBucketNameFilter(String)
The bucket name either doesn't exist or was specified in an invalid format.
InvalidDeployedStateFilter(String)
The deployed state filter was specified in an invalid format.
InvalidKeyPrefixFilter(String)
The specified key prefix filter was specified in an invalid format.
InvalidNextToken(String)
The next token was specified in an invalid format.
InvalidSortBy(String)
The column name to sort by is either not present or was specified in an invalid format.
InvalidSortOrder(String)
The sort order was specified in an invalid format.
Implementations§
Trait Implementations§
Source§impl Error for ListApplicationRevisionsError
impl Error for ListApplicationRevisionsError
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 ListApplicationRevisionsError
impl PartialEq for ListApplicationRevisionsError
Source§fn eq(&self, other: &ListApplicationRevisionsError) -> bool
fn eq(&self, other: &ListApplicationRevisionsError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListApplicationRevisionsError
Auto Trait Implementations§
impl Freeze for ListApplicationRevisionsError
impl RefUnwindSafe for ListApplicationRevisionsError
impl Send for ListApplicationRevisionsError
impl Sync for ListApplicationRevisionsError
impl Unpin for ListApplicationRevisionsError
impl UnwindSafe for ListApplicationRevisionsError
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