pub enum GetDeploymentGroupError {
ApplicationDoesNotExist(String),
ApplicationNameRequired(String),
DeploymentConfigDoesNotExist(String),
DeploymentGroupDoesNotExist(String),
DeploymentGroupNameRequired(String),
InvalidApplicationName(String),
InvalidDeploymentGroupName(String),
}
Expand description
Errors returned by GetDeploymentGroup
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.
DeploymentConfigDoesNotExist(String)
The deployment configuration does not exist with the IAM user or AWS account.
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.
Implementations§
Source§impl GetDeploymentGroupError
impl GetDeploymentGroupError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<GetDeploymentGroupError>
Trait Implementations§
Source§impl Debug for GetDeploymentGroupError
impl Debug for GetDeploymentGroupError
Source§impl Display for GetDeploymentGroupError
impl Display for GetDeploymentGroupError
Source§impl Error for GetDeploymentGroupError
impl Error for GetDeploymentGroupError
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 GetDeploymentGroupError
impl PartialEq for GetDeploymentGroupError
impl StructuralPartialEq for GetDeploymentGroupError
Auto Trait Implementations§
impl Freeze for GetDeploymentGroupError
impl RefUnwindSafe for GetDeploymentGroupError
impl Send for GetDeploymentGroupError
impl Sync for GetDeploymentGroupError
impl Unpin for GetDeploymentGroupError
impl UnwindSafe for GetDeploymentGroupError
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