pub struct CodeRepositorySummary {
pub code_repository_arn: String,
pub code_repository_name: String,
pub creation_time: f64,
pub git_config: Option<GitConfig>,
pub last_modified_time: f64,
}
Expand description
Specifies summary information about a Git repository.
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 Git repository was created.
git_config: Option<GitConfig>
Configuration details for the Git repository, including the URL where it is located and the 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 Git repository was last modified.
Trait Implementations§
Source§impl Clone for CodeRepositorySummary
impl Clone for CodeRepositorySummary
Source§fn clone(&self) -> CodeRepositorySummary
fn clone(&self) -> CodeRepositorySummary
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 CodeRepositorySummary
impl Debug for CodeRepositorySummary
Source§impl Default for CodeRepositorySummary
impl Default for CodeRepositorySummary
Source§fn default() -> CodeRepositorySummary
fn default() -> CodeRepositorySummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CodeRepositorySummary
impl<'de> Deserialize<'de> for CodeRepositorySummary
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 CodeRepositorySummary
impl PartialEq for CodeRepositorySummary
impl StructuralPartialEq for CodeRepositorySummary
Auto Trait Implementations§
impl Freeze for CodeRepositorySummary
impl RefUnwindSafe for CodeRepositorySummary
impl Send for CodeRepositorySummary
impl Sync for CodeRepositorySummary
impl Unpin for CodeRepositorySummary
impl UnwindSafe for CodeRepositorySummary
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