Struct aws_sdk_codecommit::model::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 AWS 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
The ID of the AWS account associated with the repository.
The ID of the repository.
The repository's name.
A comment or description about the repository.
The repository's default branch name.
The date and time the repository was last modified, in timestamp format.
The date and time the repository was created, in timestamp format.
The URL to use for cloning the repository over HTTPS.
The URL to use for cloning the repository over SSH.
Creates a new builder-style object to manufacture RepositoryMetadata
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 RepositoryMetadata
impl Send for RepositoryMetadata
impl Sync for RepositoryMetadata
impl Unpin for RepositoryMetadata
impl UnwindSafe for RepositoryMetadata
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