#[non_exhaustive]pub struct UpdateCodeRepositoryInput { /* private fields */ }
Implementations§
source§impl UpdateCodeRepositoryInput
impl UpdateCodeRepositoryInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateCodeRepository, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateCodeRepository, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UpdateCodeRepository
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UpdateCodeRepositoryInput
.
source§impl UpdateCodeRepositoryInput
impl UpdateCodeRepositoryInput
sourcepub fn code_repository_name(&self) -> Option<&str>
pub fn code_repository_name(&self) -> Option<&str>
The name of the Git repository to update.
sourcepub fn git_config(&self) -> Option<&GitConfigForUpdate>
pub fn git_config(&self) -> Option<&GitConfigForUpdate>
The configuration of the git repository, including the URL and the Amazon Resource Name (ARN) of the Amazon Web Services 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 PartialEq<UpdateCodeRepositoryInput> for UpdateCodeRepositoryInput
impl PartialEq<UpdateCodeRepositoryInput> for UpdateCodeRepositoryInput
source§fn eq(&self, other: &UpdateCodeRepositoryInput) -> bool
fn eq(&self, other: &UpdateCodeRepositoryInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.