pub enum GetApprovalRuleTemplateError {
ApprovalRuleTemplateDoesNotExist(String),
ApprovalRuleTemplateNameRequired(String),
InvalidApprovalRuleTemplateName(String),
}Expand description
Errors returned by GetApprovalRuleTemplate
Variants§
ApprovalRuleTemplateDoesNotExist(String)
The specified approval rule template does not exist. Verify that the name is correct and that you are signed in to the AWS Region where the template was created, and then try again.
ApprovalRuleTemplateNameRequired(String)
An approval rule template name is required, but was not specified.
InvalidApprovalRuleTemplateName(String)
The name of the approval rule template is not valid. Template names must be between 1 and 100 valid characters in length. For more information about limits in AWS CodeCommit, see AWS CodeCommit User Guide.
Implementations§
Trait Implementations§
Source§impl Debug for GetApprovalRuleTemplateError
impl Debug for GetApprovalRuleTemplateError
Source§impl Error for GetApprovalRuleTemplateError
impl Error for GetApprovalRuleTemplateError
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 GetApprovalRuleTemplateError
impl PartialEq for GetApprovalRuleTemplateError
Source§fn eq(&self, other: &GetApprovalRuleTemplateError) -> bool
fn eq(&self, other: &GetApprovalRuleTemplateError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetApprovalRuleTemplateError
Auto Trait Implementations§
impl Freeze for GetApprovalRuleTemplateError
impl RefUnwindSafe for GetApprovalRuleTemplateError
impl Send for GetApprovalRuleTemplateError
impl Sync for GetApprovalRuleTemplateError
impl Unpin for GetApprovalRuleTemplateError
impl UnwindSafe for GetApprovalRuleTemplateError
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