Struct aws_sdk_codecommit::types::RepositoryMetadata
source · #[non_exhaustive]pub struct RepositoryMetadata {
pub account_id: Option<String>,
pub repository_id: Option<String>,
pub repository_name: Option<String>,
pub repository_description: Option<String>,
pub default_branch: Option<String>,
pub last_modified_date: Option<DateTime>,
pub creation_date: Option<DateTime>,
pub clone_url_http: Option<String>,
pub clone_url_ssh: Option<String>,
pub arn: Option<String>,
}
Expand description
Information about a 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.account_id: Option<String>
The ID of the Amazon Web Services account associated with the repository.
repository_id: Option<String>
The ID of the repository.
repository_name: Option<String>
The repository's name.
repository_description: Option<String>
A comment or description about the repository.
default_branch: Option<String>
The repository's default branch name.
last_modified_date: Option<DateTime>
The date and time the repository was last modified, in timestamp format.
creation_date: Option<DateTime>
The date and time the repository was created, in timestamp format.
clone_url_http: Option<String>
The URL to use for cloning the repository over HTTPS.
clone_url_ssh: Option<String>
The URL to use for cloning the repository over SSH.
arn: Option<String>
The Amazon Resource Name (ARN) of the repository.
Implementations§
source§impl RepositoryMetadata
impl RepositoryMetadata
sourcepub fn account_id(&self) -> Option<&str>
pub fn account_id(&self) -> Option<&str>
The ID of the Amazon Web Services account associated with the repository.
sourcepub fn repository_id(&self) -> Option<&str>
pub fn repository_id(&self) -> Option<&str>
The ID of the repository.
sourcepub fn repository_name(&self) -> Option<&str>
pub fn repository_name(&self) -> Option<&str>
The repository's name.
sourcepub fn repository_description(&self) -> Option<&str>
pub fn repository_description(&self) -> Option<&str>
A comment or description about the repository.
sourcepub fn default_branch(&self) -> Option<&str>
pub fn default_branch(&self) -> Option<&str>
The repository's default branch name.
sourcepub fn last_modified_date(&self) -> Option<&DateTime>
pub fn last_modified_date(&self) -> Option<&DateTime>
The date and time the repository was last modified, in timestamp format.
sourcepub fn creation_date(&self) -> Option<&DateTime>
pub fn creation_date(&self) -> Option<&DateTime>
The date and time the repository was created, in timestamp format.
sourcepub fn clone_url_http(&self) -> Option<&str>
pub fn clone_url_http(&self) -> Option<&str>
The URL to use for cloning the repository over HTTPS.
sourcepub fn clone_url_ssh(&self) -> Option<&str>
pub fn clone_url_ssh(&self) -> Option<&str>
The URL to use for cloning the repository over SSH.
source§impl RepositoryMetadata
impl RepositoryMetadata
sourcepub fn builder() -> RepositoryMetadataBuilder
pub fn builder() -> RepositoryMetadataBuilder
Creates a new builder-style object to manufacture RepositoryMetadata
.
Trait Implementations§
source§impl Clone for RepositoryMetadata
impl Clone for RepositoryMetadata
source§fn clone(&self) -> RepositoryMetadata
fn clone(&self) -> RepositoryMetadata
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for RepositoryMetadata
impl Debug for RepositoryMetadata
source§impl PartialEq for RepositoryMetadata
impl PartialEq for RepositoryMetadata
source§fn eq(&self, other: &RepositoryMetadata) -> bool
fn eq(&self, other: &RepositoryMetadata) -> bool
self
and other
values to be equal, and is used
by ==
.