#[non_exhaustive]pub struct DescribeCodeRepositoryOutput {
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>,
/* private fields */
}
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 repository was created.
last_modified_time: Option<DateTime>
The date and time that the repository was last changed.
git_config: 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.
Implementations§
source§impl DescribeCodeRepositoryOutput
impl DescribeCodeRepositoryOutput
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 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 repository was last changed.
sourcepub fn git_config(&self) -> Option<&GitConfig>
pub fn 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.
source§impl DescribeCodeRepositoryOutput
impl DescribeCodeRepositoryOutput
sourcepub fn builder() -> DescribeCodeRepositoryOutputBuilder
pub fn builder() -> DescribeCodeRepositoryOutputBuilder
Creates a new builder-style object to manufacture DescribeCodeRepositoryOutput
.
Trait Implementations§
source§impl Clone for DescribeCodeRepositoryOutput
impl Clone for DescribeCodeRepositoryOutput
source§fn clone(&self) -> DescribeCodeRepositoryOutput
fn clone(&self) -> DescribeCodeRepositoryOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DescribeCodeRepositoryOutput
impl Debug for DescribeCodeRepositoryOutput
source§impl PartialEq for DescribeCodeRepositoryOutput
impl PartialEq for DescribeCodeRepositoryOutput
source§fn eq(&self, other: &DescribeCodeRepositoryOutput) -> bool
fn eq(&self, other: &DescribeCodeRepositoryOutput) -> bool
self
and other
values to be equal, and is used by ==
.source§impl RequestId for DescribeCodeRepositoryOutput
impl RequestId for DescribeCodeRepositoryOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for DescribeCodeRepositoryOutput
Auto Trait Implementations§
impl Freeze for DescribeCodeRepositoryOutput
impl RefUnwindSafe for DescribeCodeRepositoryOutput
impl Send for DescribeCodeRepositoryOutput
impl Sync for DescribeCodeRepositoryOutput
impl Unpin for DescribeCodeRepositoryOutput
impl UnwindSafe for DescribeCodeRepositoryOutput
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