pub struct AssociationRecord {
pub associated_entity: String,
pub association_type: String,
pub status: String,
pub status_message: Option<String>,
pub creation_time: DateTime<Utc>,
pub last_updated_time: DateTime<Utc>,
pub external: bool,
}Expand description
A resource-share / principal association within a share.
Fields§
§associated_entity: StringThe associated entity: a resource ARN (RESOURCE) or a principal id (PRINCIPAL) or a source account id (SOURCE).
association_type: StringOne of RESOURCE, PRINCIPAL.
status: StringProgresses synthetically to ASSOCIATED on create.
status_message: Option<String>§creation_time: DateTime<Utc>§last_updated_time: DateTime<Utc>§external: boolTrue when the associated entity is an account outside the caller’s org.
Trait Implementations§
Source§impl Clone for AssociationRecord
impl Clone for AssociationRecord
Source§fn clone(&self) -> AssociationRecord
fn clone(&self) -> AssociationRecord
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 AssociationRecord
impl Debug for AssociationRecord
Source§impl<'de> Deserialize<'de> for AssociationRecord
impl<'de> Deserialize<'de> for AssociationRecord
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 AssociationRecord
impl RefUnwindSafe for AssociationRecord
impl Send for AssociationRecord
impl Sync for AssociationRecord
impl Unpin for AssociationRecord
impl UnsafeUnpin for AssociationRecord
impl UnwindSafe for AssociationRecord
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