pub enum BatchGetDeploymentGroupsError {
ApplicationDoesNotExist(String),
ApplicationNameRequired(String),
BatchLimitExceeded(String),
DeploymentConfigDoesNotExist(String),
DeploymentGroupNameRequired(String),
InvalidApplicationName(String),
InvalidDeploymentGroupName(String),
}
Expand description
Errors returned by BatchGetDeploymentGroups
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.
BatchLimitExceeded(String)
The maximum number of names or IDs allowed for this request (100) was exceeded.
DeploymentConfigDoesNotExist(String)
The deployment configuration does not exist with the IAM user or AWS account.
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§
Trait Implementations§
Source§impl Error for BatchGetDeploymentGroupsError
impl Error for BatchGetDeploymentGroupsError
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 BatchGetDeploymentGroupsError
impl PartialEq for BatchGetDeploymentGroupsError
Source§fn eq(&self, other: &BatchGetDeploymentGroupsError) -> bool
fn eq(&self, other: &BatchGetDeploymentGroupsError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for BatchGetDeploymentGroupsError
Auto Trait Implementations§
impl Freeze for BatchGetDeploymentGroupsError
impl RefUnwindSafe for BatchGetDeploymentGroupsError
impl Send for BatchGetDeploymentGroupsError
impl Sync for BatchGetDeploymentGroupsError
impl Unpin for BatchGetDeploymentGroupsError
impl UnwindSafe for BatchGetDeploymentGroupsError
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