pub struct ConnectionRecord {
pub connection_arn: String,
pub connection_name: String,
pub provider_type: Option<String>,
pub owner_account_id: String,
pub connection_status: String,
pub host_arn: Option<String>,
pub tags: TagMap,
}Expand description
A connection to a third-party source-code provider.
Fields§
§connection_arn: String§connection_name: String§provider_type: Option<String>One of the ProviderType enum values, or None when the connection was
created against a host (the provider type is then carried by the host).
owner_account_id: String§connection_status: StringPENDING | AVAILABLE | ERROR. A freshly-created connection is
PENDING until its console handshake completes.
host_arn: Option<String>Trait Implementations§
Source§impl Clone for ConnectionRecord
impl Clone for ConnectionRecord
Source§fn clone(&self) -> ConnectionRecord
fn clone(&self) -> ConnectionRecord
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 ConnectionRecord
impl Debug for ConnectionRecord
Source§impl<'de> Deserialize<'de> for ConnectionRecord
impl<'de> Deserialize<'de> for ConnectionRecord
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 ConnectionRecord
impl RefUnwindSafe for ConnectionRecord
impl Send for ConnectionRecord
impl Sync for ConnectionRecord
impl Unpin for ConnectionRecord
impl UnsafeUnpin for ConnectionRecord
impl UnwindSafe for ConnectionRecord
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