Struct aws_sdk_sagemaker::types::CodeRepositorySummary
source · #[non_exhaustive]pub struct CodeRepositorySummary { /* private fields */ }
Expand description
Specifies summary information about a Git repository.
Implementations§
source§impl CodeRepositorySummary
impl CodeRepositorySummary
sourcepub fn code_repository_name(&self) -> Option<&str>
pub fn code_repository_name(&self) -> Option<&str>
The name of the Git repository.
sourcepub fn code_repository_arn(&self) -> Option<&str>
pub fn code_repository_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the Git repository.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
The date and time that the Git repository was created.
sourcepub fn last_modified_time(&self) -> Option<&DateTime>
pub fn last_modified_time(&self) -> Option<&DateTime>
The date and time that the Git repository was last modified.
sourcepub fn git_config(&self) -> Option<&GitConfig>
pub fn git_config(&self) -> Option<&GitConfig>
Configuration details for the Git repository, including the URL where it is located and the ARN of the Amazon Web Services Secrets Manager secret that contains the credentials used to access the repository.
source§impl CodeRepositorySummary
impl CodeRepositorySummary
sourcepub fn builder() -> CodeRepositorySummaryBuilder
pub fn builder() -> CodeRepositorySummaryBuilder
Creates a new builder-style object to manufacture CodeRepositorySummary
.
Trait Implementations§
source§impl Clone for CodeRepositorySummary
impl Clone for CodeRepositorySummary
source§fn clone(&self) -> CodeRepositorySummary
fn clone(&self) -> CodeRepositorySummary
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 CodeRepositorySummary
impl Debug for CodeRepositorySummary
source§impl PartialEq<CodeRepositorySummary> for CodeRepositorySummary
impl PartialEq<CodeRepositorySummary> for CodeRepositorySummary
source§fn eq(&self, other: &CodeRepositorySummary) -> bool
fn eq(&self, other: &CodeRepositorySummary) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.