[][src]Struct rusoto_securityhub::Member

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>,
}

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.

The status can have one of the following values:

  • CREATED - Indicates that the master account added the member account, but has not yet invited the member account.

  • INVITED - Indicates that the master account invited the member account. The member account has not yet responded to the invitation.

  • ENABLED - Indicates that the member account is currently active. For manually invited member accounts, indicates that the member account accepted the invitation.

  • REMOVED - Indicates that the master account disassociated the member account.

  • RESIGNED - Indicates that the member account disassociated themselves from the master account.

  • DELETED - Indicates that the master account deleted the member account.

updated_at: Option<f64>

The timestamp for the date and time when the member account was updated.

Trait Implementations

impl Clone for Member[src]

impl Debug for Member[src]

impl Default for Member[src]

impl<'de> Deserialize<'de> for Member[src]

impl PartialEq<Member> for Member[src]

impl StructuralPartialEq for Member[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.