pub enum LabelParameterVersionError {
InternalServerError(String),
ParameterNotFound(String),
ParameterVersionLabelLimitExceeded(String),
ParameterVersionNotFound(String),
TooManyUpdates(String),
}Expand description
Errors returned by LabelParameterVersion
Variants§
InternalServerError(String)
An error occurred on the server side.
ParameterNotFound(String)
The parameter could not be found. Verify the name and try again.
ParameterVersionLabelLimitExceeded(String)
A parameter version can have a maximum of ten labels.
ParameterVersionNotFound(String)
The specified parameter version was not found. Verify the parameter name and version, and try again.
TooManyUpdates(String)
There are concurrent updates for a resource that supports one update at a time.
Implementations§
Source§impl LabelParameterVersionError
impl LabelParameterVersionError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<LabelParameterVersionError>
Trait Implementations§
Source§impl Debug for LabelParameterVersionError
impl Debug for LabelParameterVersionError
Source§impl Display for LabelParameterVersionError
impl Display for LabelParameterVersionError
Source§impl Error for LabelParameterVersionError
impl Error for LabelParameterVersionError
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()
impl StructuralPartialEq for LabelParameterVersionError
Auto Trait Implementations§
impl Freeze for LabelParameterVersionError
impl RefUnwindSafe for LabelParameterVersionError
impl Send for LabelParameterVersionError
impl Sync for LabelParameterVersionError
impl Unpin for LabelParameterVersionError
impl UnwindSafe for LabelParameterVersionError
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