Struct aws_sdk_detective::model::MemberDetail[][src]

#[non_exhaustive]
pub struct MemberDetail {
Show 13 fields pub account_id: Option<String>, pub email_address: Option<String>, pub graph_arn: Option<String>, pub master_id: Option<String>, pub administrator_id: Option<String>, pub status: Option<MemberStatus>, pub disabled_reason: Option<MemberDisabledReason>, pub invited_time: Option<Instant>, pub updated_time: Option<Instant>, pub volume_usage_in_bytes: Option<i64>, pub volume_usage_updated_time: Option<Instant>, pub percent_of_graph_utilization: Option<f64>, pub percent_of_graph_utilization_updated_time: Option<Instant>,
}
Expand description

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

Fields (Non-exhaustive)

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
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.

master_id: Option<String>

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

administrator_id: Option<String>

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

status: Option<MemberStatus>

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.

disabled_reason: Option<MemberDisabledReason>

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

The reason can have one of the following values:

  • VOLUME_TOO_HIGH - 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.

invited_time: Option<Instant>

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

updated_time: Option<Instant>

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<Instant>

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

percent_of_graph_utilization: Option<f64>

The member account data volume as a percentage of the maximum allowed data volume. 0 indicates 0 percent, and 100 indicates 100 percent.

Note that this is not the percentage of the behavior graph data volume.

For example, the data volume for the behavior graph is 80 GB per day. The maximum data volume is 160 GB per day. If the data volume for the member account is 40 GB per day, then PercentOfGraphUtilization is 25. It represents 25% of the maximum allowed data volume.

percent_of_graph_utilization_updated_time: Option<Instant>

The date and time when the graph utilization percentage was last updated.

Implementations

The AWS account identifier for the member account.

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

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

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

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

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.

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

The reason can have one of the following values:

  • VOLUME_TOO_HIGH - 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.

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

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

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

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

The member account data volume as a percentage of the maximum allowed data volume. 0 indicates 0 percent, and 100 indicates 100 percent.

Note that this is not the percentage of the behavior graph data volume.

For example, the data volume for the behavior graph is 80 GB per day. The maximum data volume is 160 GB per day. If the data volume for the member account is 40 GB per day, then PercentOfGraphUtilization is 25. It represents 25% of the maximum allowed data volume.

The date and time when the graph utilization percentage was last updated.

Creates a new builder-style object to manufacture MemberDetail

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

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

Performs the conversion.

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

Performs the conversion.

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)

recently added

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