logo
pub struct MemberDetail {
    pub account_id: Option<String>,
    pub administrator_id: Option<String>,
    pub disabled_reason: Option<String>,
    pub email_address: Option<String>,
    pub graph_arn: Option<String>,
    pub invited_time: Option<f64>,
    pub status: Option<String>,
    pub updated_time: Option<f64>,
    pub volume_usage_in_bytes: Option<i64>,
    pub volume_usage_updated_time: Option<f64>,
}
Expand description

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.

administrator_id: Option<String>

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

disabled_reason: Option<String>

For member accounts with a status of ACCEPTEDBUTDISABLED, the reason that the member account is not enabled.

The reason can have one of the following values:

  • VOLUMETOOHIGH - Indicates that adding the member account would cause the data volume for the behavior graph to be too high.

  • VOLUME_UNKNOWN - Indicates that Detective is unable to verify the data volume for the member account. This is usually because the member account is not enrolled in Amazon GuardDuty.

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.

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.

  • ACCEPTED_BUT_DISABLED - Indicates that the member account accepted the invitation but is prevented from contributing data to the behavior graph. DisabledReason provides the reason why the member account is not enabled.

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.

volume_usage_in_bytes: Option<i64>

The data volume in bytes per day for the member account.

volume_usage_updated_time: Option<f64>

The data and time when the member account data volume was last updated.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more