pub enum ListDeploymentsError {
ApplicationDoesNotExist(String),
ApplicationNameRequired(String),
DeploymentGroupDoesNotExist(String),
DeploymentGroupNameRequired(String),
InvalidApplicationName(String),
InvalidDeploymentGroupName(String),
InvalidDeploymentStatus(String),
InvalidExternalId(String),
InvalidInput(String),
InvalidNextToken(String),
InvalidTimeRange(String),
}
Expand description
Errors returned by ListDeployments
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.
DeploymentGroupDoesNotExist(String)
The named deployment group with the IAM user or AWS account does not exist.
DeploymentGroupNameRequired(String)
The deployment group name was not specified.
InvalidApplicationName(String)
The application name was specified in an invalid format.
InvalidDeploymentGroupName(String)
The deployment group name was specified in an invalid format.
InvalidDeploymentStatus(String)
The specified deployment status doesn't exist or cannot be determined.
InvalidExternalId(String)
The external ID was specified in an invalid format.
InvalidInput(String)
The input was specified in an invalid format.
InvalidNextToken(String)
The next token was specified in an invalid format.
InvalidTimeRange(String)
The specified time range was specified in an invalid format.
Implementations§
Source§impl ListDeploymentsError
impl ListDeploymentsError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<ListDeploymentsError>
Trait Implementations§
Source§impl Debug for ListDeploymentsError
impl Debug for ListDeploymentsError
Source§impl Display for ListDeploymentsError
impl Display for ListDeploymentsError
Source§impl Error for ListDeploymentsError
impl Error for ListDeploymentsError
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 ListDeploymentsError
impl PartialEq for ListDeploymentsError
impl StructuralPartialEq for ListDeploymentsError
Auto Trait Implementations§
impl Freeze for ListDeploymentsError
impl RefUnwindSafe for ListDeploymentsError
impl Send for ListDeploymentsError
impl Sync for ListDeploymentsError
impl Unpin for ListDeploymentsError
impl UnwindSafe for ListDeploymentsError
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