pub struct Member {
pub account_id: Option<String>,
pub email: Option<String>,
pub invited_at: Option<f64>,
pub master_id: Option<String>,
pub member_status: Option<String>,
pub updated_at: Option<f64>,
}
Expand description
The details about a member account.
Fields§
§account_id: Option<String>
The AWS account ID of the member account.
email: Option<String>
The email address of the member account.
invited_at: Option<f64>
A timestamp for the date and time when the invitation was sent to the member account.
master_id: Option<String>
The AWS account ID of the Security Hub master account associated with this member account.
member_status: Option<String>
The status of the relationship between the member account and its master account.
updated_at: Option<f64>
The timestamp for the date and time when the member account was updated.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Member
impl<'de> Deserialize<'de> for Member
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
impl StructuralPartialEq for Member
Auto Trait Implementations§
impl Freeze for Member
impl RefUnwindSafe for Member
impl Send for Member
impl Sync for Member
impl Unpin for Member
impl UnwindSafe for Member
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