pub struct ThirdPartySourceRepository {
pub connection_arn: String,
pub name: String,
pub owner: String,
}Expand description
Information about a third-party source repository connected to CodeGuru Reviewer.
Fields§
§connection_arn: String The Amazon Resource Name (ARN) of an AWS CodeStar Connections connection. Its format is arn:aws:codestar-connections:region-id:aws-account_id:connection/connection-id. For more information, see Connection in the AWS CodeStar Connections API Reference.
name: StringThe name of the third party source repository.
owner: StringThe owner of the repository. For a GitHub, GitHub Enterprise, or Bitbucket repository, this is the username for the account that owns the repository.
Trait Implementations§
Source§impl Clone for ThirdPartySourceRepository
impl Clone for ThirdPartySourceRepository
Source§fn clone(&self) -> ThirdPartySourceRepository
fn clone(&self) -> ThirdPartySourceRepository
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 ThirdPartySourceRepository
impl Debug for ThirdPartySourceRepository
Source§impl Default for ThirdPartySourceRepository
impl Default for ThirdPartySourceRepository
Source§fn default() -> ThirdPartySourceRepository
fn default() -> ThirdPartySourceRepository
Returns the “default value” for a type. Read more
impl StructuralPartialEq for ThirdPartySourceRepository
Auto Trait Implementations§
impl Freeze for ThirdPartySourceRepository
impl RefUnwindSafe for ThirdPartySourceRepository
impl Send for ThirdPartySourceRepository
impl Sync for ThirdPartySourceRepository
impl Unpin for ThirdPartySourceRepository
impl UnwindSafe for ThirdPartySourceRepository
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