Struct aws_sdk_sagemaker::model::CodeRepositorySummary [−][src]
#[non_exhaustive]pub struct CodeRepositorySummary {
pub code_repository_name: Option<String>,
pub code_repository_arn: Option<String>,
pub creation_time: Option<DateTime>,
pub last_modified_time: Option<DateTime>,
pub git_config: Option<GitConfig>,
}
Expand description
Specifies summary information about a Git repository.
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.
code_repository_arn: Option<String>
The Amazon Resource Name (ARN) of the Git repository.
creation_time: Option<DateTime>
The date and time that the Git repository was created.
last_modified_time: Option<DateTime>
The date and time that the Git repository was last modified.
git_config: 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.
Implementations
The name of the Git repository.
The Amazon Resource Name (ARN) of the Git repository.
The date and time that the Git repository was created.
The date and time that the Git repository was last modified.
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.
Creates a new builder-style object to manufacture CodeRepositorySummary
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 CodeRepositorySummary
impl Send for CodeRepositorySummary
impl Sync for CodeRepositorySummary
impl Unpin for CodeRepositorySummary
impl UnwindSafe for CodeRepositorySummary
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