pub enum CreateParameterGroupError {
InvalidParameterCombination(String),
InvalidParameterGroupStateFault(String),
InvalidParameterValue(String),
ParameterGroupAlreadyExistsFault(String),
ParameterGroupQuotaExceededFault(String),
ServiceLinkedRoleNotFoundFault(String),
}
Expand description
Errors returned by CreateParameterGroup
Variants§
InvalidParameterCombination(String)
Two or more incompatible parameters were specified.
InvalidParameterGroupStateFault(String)
One or more parameters in a parameter group are in an invalid state.
InvalidParameterValue(String)
The value for a parameter is invalid.
ParameterGroupAlreadyExistsFault(String)
The specified parameter group already exists.
ParameterGroupQuotaExceededFault(String)
You have attempted to exceed the maximum number of parameter groups.
ServiceLinkedRoleNotFoundFault(String)
The specified service linked role (SLR) was not found.
Implementations§
Source§impl CreateParameterGroupError
impl CreateParameterGroupError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateParameterGroupError>
Trait Implementations§
Source§impl Debug for CreateParameterGroupError
impl Debug for CreateParameterGroupError
Source§impl Display for CreateParameterGroupError
impl Display for CreateParameterGroupError
Source§impl Error for CreateParameterGroupError
impl Error for CreateParameterGroupError
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 CreateParameterGroupError
Auto Trait Implementations§
impl Freeze for CreateParameterGroupError
impl RefUnwindSafe for CreateParameterGroupError
impl Send for CreateParameterGroupError
impl Sync for CreateParameterGroupError
impl Unpin for CreateParameterGroupError
impl UnwindSafe for CreateParameterGroupError
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