Struct aws_sdk_sagemaker::input::UpdateCodeRepositoryInput [−][src]
#[non_exhaustive]pub struct UpdateCodeRepositoryInput {
pub code_repository_name: Option<String>,
pub git_config: Option<GitConfigForUpdate>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.code_repository_name: Option<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 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}
Implementations
pub fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateCodeRepository, AwsErrorRetryPolicy>, BuildError>
pub fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateCodeRepository, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<UpdateCodeRepository
>
Creates a new builder-style object to manufacture UpdateCodeRepositoryInput
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for UpdateCodeRepositoryInput
impl Send for UpdateCodeRepositoryInput
impl Sync for UpdateCodeRepositoryInput
impl Unpin for UpdateCodeRepositoryInput
impl UnwindSafe for UpdateCodeRepositoryInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more