Struct aws_sdk_sagemaker::operation::describe_code_repository::builders::DescribeCodeRepositoryOutputBuilder
source · #[non_exhaustive]pub struct DescribeCodeRepositoryOutputBuilder { /* private fields */ }
Expand description
A builder for DescribeCodeRepositoryOutput
.
Implementations§
source§impl DescribeCodeRepositoryOutputBuilder
impl DescribeCodeRepositoryOutputBuilder
sourcepub fn code_repository_name(self, input: impl Into<String>) -> Self
pub fn code_repository_name(self, input: impl Into<String>) -> Self
The name of the Git repository.
This field is required.sourcepub fn set_code_repository_name(self, input: Option<String>) -> Self
pub fn set_code_repository_name(self, input: Option<String>) -> Self
The name of the Git repository.
sourcepub fn get_code_repository_name(&self) -> &Option<String>
pub fn get_code_repository_name(&self) -> &Option<String>
The name of the Git repository.
sourcepub fn code_repository_arn(self, input: impl Into<String>) -> Self
pub fn code_repository_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the Git repository.
This field is required.sourcepub fn set_code_repository_arn(self, input: Option<String>) -> Self
pub fn set_code_repository_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the Git repository.
sourcepub fn get_code_repository_arn(&self) -> &Option<String>
pub fn get_code_repository_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the Git repository.
sourcepub fn creation_time(self, input: DateTime) -> Self
pub fn creation_time(self, input: DateTime) -> Self
The date and time that the repository was created.
This field is required.sourcepub fn set_creation_time(self, input: Option<DateTime>) -> Self
pub fn set_creation_time(self, input: Option<DateTime>) -> Self
The date and time that the repository was created.
sourcepub fn get_creation_time(&self) -> &Option<DateTime>
pub fn get_creation_time(&self) -> &Option<DateTime>
The date and time that the repository was created.
sourcepub fn last_modified_time(self, input: DateTime) -> Self
pub fn last_modified_time(self, input: DateTime) -> Self
The date and time that the repository was last changed.
This field is required.sourcepub fn set_last_modified_time(self, input: Option<DateTime>) -> Self
pub fn set_last_modified_time(self, input: Option<DateTime>) -> Self
The date and time that the repository was last changed.
sourcepub fn get_last_modified_time(&self) -> &Option<DateTime>
pub fn get_last_modified_time(&self) -> &Option<DateTime>
The date and time that the repository was last changed.
sourcepub fn git_config(self, input: GitConfig) -> Self
pub fn git_config(self, input: GitConfig) -> Self
Configuration details about the repository, including the URL where the repository is located, the default branch, and the Amazon Resource Name (ARN) of the Amazon Web Services Secrets Manager secret that contains the credentials used to access the repository.
sourcepub fn set_git_config(self, input: Option<GitConfig>) -> Self
pub fn set_git_config(self, input: Option<GitConfig>) -> Self
Configuration details about the repository, including the URL where the repository is located, the default branch, and the Amazon Resource Name (ARN) of the Amazon Web Services Secrets Manager secret that contains the credentials used to access the repository.
sourcepub fn get_git_config(&self) -> &Option<GitConfig>
pub fn get_git_config(&self) -> &Option<GitConfig>
Configuration details about the repository, including the URL where the repository is located, the default branch, and the Amazon Resource Name (ARN) of the Amazon Web Services Secrets Manager secret that contains the credentials used to access the repository.
sourcepub fn build(self) -> DescribeCodeRepositoryOutput
pub fn build(self) -> DescribeCodeRepositoryOutput
Consumes the builder and constructs a DescribeCodeRepositoryOutput
.
Trait Implementations§
source§impl Clone for DescribeCodeRepositoryOutputBuilder
impl Clone for DescribeCodeRepositoryOutputBuilder
source§fn clone(&self) -> DescribeCodeRepositoryOutputBuilder
fn clone(&self) -> DescribeCodeRepositoryOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for DescribeCodeRepositoryOutputBuilder
impl Default for DescribeCodeRepositoryOutputBuilder
source§fn default() -> DescribeCodeRepositoryOutputBuilder
fn default() -> DescribeCodeRepositoryOutputBuilder
source§impl PartialEq for DescribeCodeRepositoryOutputBuilder
impl PartialEq for DescribeCodeRepositoryOutputBuilder
source§fn eq(&self, other: &DescribeCodeRepositoryOutputBuilder) -> bool
fn eq(&self, other: &DescribeCodeRepositoryOutputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeCodeRepositoryOutputBuilder
Auto Trait Implementations§
impl Freeze for DescribeCodeRepositoryOutputBuilder
impl RefUnwindSafe for DescribeCodeRepositoryOutputBuilder
impl Send for DescribeCodeRepositoryOutputBuilder
impl Sync for DescribeCodeRepositoryOutputBuilder
impl Unpin for DescribeCodeRepositoryOutputBuilder
impl UnwindSafe for DescribeCodeRepositoryOutputBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more