pub enum GetDeploymentConfigError {
DeploymentConfigDoesNotExist(String),
DeploymentConfigNameRequired(String),
InvalidComputePlatform(String),
InvalidDeploymentConfigName(String),
}
Expand description
Errors returned by GetDeploymentConfig
Variants§
DeploymentConfigDoesNotExist(String)
The deployment configuration does not exist with the IAM user or AWS account.
DeploymentConfigNameRequired(String)
The deployment configuration name was not specified.
InvalidComputePlatform(String)
The computePlatform is invalid. The computePlatform should be Lambda
, Server
, or ECS
.
InvalidDeploymentConfigName(String)
The deployment configuration name was specified in an invalid format.
Implementations§
Source§impl GetDeploymentConfigError
impl GetDeploymentConfigError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<GetDeploymentConfigError>
Trait Implementations§
Source§impl Debug for GetDeploymentConfigError
impl Debug for GetDeploymentConfigError
Source§impl Display for GetDeploymentConfigError
impl Display for GetDeploymentConfigError
Source§impl Error for GetDeploymentConfigError
impl Error for GetDeploymentConfigError
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 GetDeploymentConfigError
impl PartialEq for GetDeploymentConfigError
impl StructuralPartialEq for GetDeploymentConfigError
Auto Trait Implementations§
impl Freeze for GetDeploymentConfigError
impl RefUnwindSafe for GetDeploymentConfigError
impl Send for GetDeploymentConfigError
impl Sync for GetDeploymentConfigError
impl Unpin for GetDeploymentConfigError
impl UnwindSafe for GetDeploymentConfigError
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