pub enum DescribeParameterGroupsError {
InvalidParameterCombination(String),
InvalidParameterValue(String),
ParameterGroupNotFoundFault(String),
ServiceLinkedRoleNotFoundFault(String),
}
Expand description
Errors returned by DescribeParameterGroups
Variants§
InvalidParameterCombination(String)
Two or more incompatible parameters were specified.
InvalidParameterValue(String)
The value for a parameter is invalid.
ParameterGroupNotFoundFault(String)
The specified parameter group does not exist.
ServiceLinkedRoleNotFoundFault(String)
The specified service linked role (SLR) was not found.
Implementations§
Trait Implementations§
Source§impl Debug for DescribeParameterGroupsError
impl Debug for DescribeParameterGroupsError
Source§impl Error for DescribeParameterGroupsError
impl Error for DescribeParameterGroupsError
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 DescribeParameterGroupsError
impl PartialEq for DescribeParameterGroupsError
Source§fn eq(&self, other: &DescribeParameterGroupsError) -> bool
fn eq(&self, other: &DescribeParameterGroupsError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeParameterGroupsError
Auto Trait Implementations§
impl Freeze for DescribeParameterGroupsError
impl RefUnwindSafe for DescribeParameterGroupsError
impl Send for DescribeParameterGroupsError
impl Sync for DescribeParameterGroupsError
impl Unpin for DescribeParameterGroupsError
impl UnwindSafe for DescribeParameterGroupsError
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