pub struct DescribeCodeRepositoryOutput {
pub code_repository_arn: String,
pub code_repository_name: String,
pub creation_time: f64,
pub git_config: Option<GitConfig>,
pub last_modified_time: f64,
}
Fields§
§code_repository_arn: String
The Amazon Resource Name (ARN) of the Git repository.
code_repository_name: String
The name of the Git repository.
creation_time: f64
The date and time that the repository was created.
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 AWS Secrets Manager secret that contains the credentials used to access the repository.
last_modified_time: f64
The date and time that the repository was last changed.
Trait Implementations§
Source§impl Clone for DescribeCodeRepositoryOutput
impl Clone for DescribeCodeRepositoryOutput
Source§fn clone(&self) -> DescribeCodeRepositoryOutput
fn clone(&self) -> DescribeCodeRepositoryOutput
Returns a duplicate 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 DescribeCodeRepositoryOutput
impl Debug for DescribeCodeRepositoryOutput
Source§impl Default for DescribeCodeRepositoryOutput
impl Default for DescribeCodeRepositoryOutput
Source§fn default() -> DescribeCodeRepositoryOutput
fn default() -> DescribeCodeRepositoryOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeCodeRepositoryOutput
impl<'de> Deserialize<'de> for DescribeCodeRepositoryOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DescribeCodeRepositoryOutput
impl PartialEq for DescribeCodeRepositoryOutput
Source§fn eq(&self, other: &DescribeCodeRepositoryOutput) -> bool
fn eq(&self, other: &DescribeCodeRepositoryOutput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.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
Mutably borrows from an owned value. Read more