[][src]Struct rusoto_detective::MemberDetail

pub struct MemberDetail {
    pub account_id: Option<String>,
    pub email_address: Option<String>,
    pub graph_arn: Option<String>,
    pub invited_time: Option<f64>,
    pub master_id: Option<String>,
    pub status: Option<String>,
    pub updated_time: Option<f64>,
}

Amazon Detective is currently in preview.

Details about a member account that was invited to contribute to a behavior graph.

Fields

account_id: Option<String>

The AWS account identifier for the member account.

email_address: Option<String>

The AWS account root user email address for the member account.

graph_arn: Option<String>

The ARN of the behavior graph that the member account was invited to.

invited_time: Option<f64>

The date and time that Detective sent the invitation to the member account. The value is in milliseconds since the epoch.

master_id: Option<String>

The AWS account identifier of the master account for the behavior graph.

status: Option<String>

The current membership status of the member account. The status can have one of the following values:

  • INVITED - Indicates that the member was sent an invitation but has not yet responded.

  • VERIFICATION_IN_PROGRESS - Indicates that Detective is verifying that the account identifier and email address provided for the member account match. If they do match, then Detective sends the invitation. If the email address and account identifier don't match, then the member cannot be added to the behavior graph.

  • VERIFICATION_FAILED - Indicates that the account and email address provided for the member account do not match, and Detective did not send an invitation to the account.

  • ENABLED - Indicates that the member account accepted the invitation to contribute to the behavior graph.

Member accounts that declined an invitation or that were removed from the behavior graph are not included.

updated_time: Option<f64>

The date and time that the member account was last updated. The value is in milliseconds since the epoch.

Trait Implementations

impl Clone for MemberDetail[src]

impl Debug for MemberDetail[src]

impl Default for MemberDetail[src]

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

impl PartialEq<MemberDetail> for MemberDetail[src]

impl StructuralPartialEq for MemberDetail[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: Deserialize<'de>, 
[src]

impl<T> From<T> 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.