pub enum UpdateApprovalRuleTemplateNameError {
ApprovalRuleTemplateDoesNotExist(String),
ApprovalRuleTemplateNameAlreadyExists(String),
ApprovalRuleTemplateNameRequired(String),
InvalidApprovalRuleTemplateName(String),
}Expand description
Errors returned by UpdateApprovalRuleTemplateName
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.
ApprovalRuleTemplateNameAlreadyExists(String)
You cannot create an approval rule template with that name because a template with that name already exists in this AWS Region for your AWS account. Approval rule template names must be unique.
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 Error for UpdateApprovalRuleTemplateNameError
impl Error for UpdateApprovalRuleTemplateNameError
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 UpdateApprovalRuleTemplateNameError
impl PartialEq for UpdateApprovalRuleTemplateNameError
Source§fn eq(&self, other: &UpdateApprovalRuleTemplateNameError) -> bool
fn eq(&self, other: &UpdateApprovalRuleTemplateNameError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UpdateApprovalRuleTemplateNameError
Auto Trait Implementations§
impl Freeze for UpdateApprovalRuleTemplateNameError
impl RefUnwindSafe for UpdateApprovalRuleTemplateNameError
impl Send for UpdateApprovalRuleTemplateNameError
impl Sync for UpdateApprovalRuleTemplateNameError
impl Unpin for UpdateApprovalRuleTemplateNameError
impl UnwindSafe for UpdateApprovalRuleTemplateNameError
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