pub struct UpdateCodeRepositoryInput {
pub code_repository_name: String,
pub git_config: Option<GitConfigForUpdate>,
}
Fields§
§code_repository_name: String
The name of the Git repository to update.
git_config: Option<GitConfigForUpdate>
The configuration of the git repository, including the URL and the Amazon Resource Name (ARN) of the AWS Secrets Manager secret that contains the credentials used to access the repository. The secret must have a staging label of AWSCURRENT
and must be in the following format:
{"username": UserName, "password": Password}
Trait Implementations§
Source§impl Clone for UpdateCodeRepositoryInput
impl Clone for UpdateCodeRepositoryInput
Source§fn clone(&self) -> UpdateCodeRepositoryInput
fn clone(&self) -> UpdateCodeRepositoryInput
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for UpdateCodeRepositoryInput
impl Debug for UpdateCodeRepositoryInput
Source§impl Default for UpdateCodeRepositoryInput
impl Default for UpdateCodeRepositoryInput
Source§fn default() -> UpdateCodeRepositoryInput
fn default() -> UpdateCodeRepositoryInput
Returns the “default value” for a type. Read more
impl StructuralPartialEq for UpdateCodeRepositoryInput
Auto Trait Implementations§
impl Freeze for UpdateCodeRepositoryInput
impl RefUnwindSafe for UpdateCodeRepositoryInput
impl Send for UpdateCodeRepositoryInput
impl Sync for UpdateCodeRepositoryInput
impl Unpin for UpdateCodeRepositoryInput
impl UnwindSafe for UpdateCodeRepositoryInput
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