pub struct RepositoryLinkRecord {
pub repository_link_id: String,
pub repository_link_arn: String,
pub connection_arn: String,
pub owner_id: String,
pub repository_name: String,
pub provider_type: String,
pub encryption_key_arn: Option<String>,
pub tags: TagMap,
}Expand description
A link between a connection and a specific third-party repository.
Fields§
§repository_link_id: String§repository_link_arn: String§connection_arn: String§owner_id: String§repository_name: String§provider_type: String§encryption_key_arn: Option<String>Trait Implementations§
Source§impl Clone for RepositoryLinkRecord
impl Clone for RepositoryLinkRecord
Source§fn clone(&self) -> RepositoryLinkRecord
fn clone(&self) -> RepositoryLinkRecord
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RepositoryLinkRecord
impl Debug for RepositoryLinkRecord
Source§impl<'de> Deserialize<'de> for RepositoryLinkRecord
impl<'de> Deserialize<'de> for RepositoryLinkRecord
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
Auto Trait Implementations§
impl Freeze for RepositoryLinkRecord
impl RefUnwindSafe for RepositoryLinkRecord
impl Send for RepositoryLinkRecord
impl Sync for RepositoryLinkRecord
impl Unpin for RepositoryLinkRecord
impl UnsafeUnpin for RepositoryLinkRecord
impl UnwindSafe for RepositoryLinkRecord
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