pub struct MemberSummary {
pub creation_date: Option<f64>,
pub description: Option<String>,
pub id: Option<String>,
pub is_owned: Option<bool>,
pub name: Option<String>,
pub status: Option<String>,
}
Expand description
A summary of configuration properties for a member.
Fields§
§creation_date: Option<f64>
The date and time that the member was created.
description: Option<String>
An optional description of the member.
id: Option<String>
The unique identifier of the member.
is_owned: Option<bool>
An indicator of whether the member is owned by your AWS account or a different AWS account.
name: Option<String>
The name of the member.
status: Option<String>
The status of the member.
-
CREATING
- The AWS account is in the process of creating a member. -
AVAILABLE
- The member has been created and can participate in the network. -
CREATE_FAILED
- The AWS account attempted to create a member and creation failed. -
DELETING
- The member and all associated resources are in the process of being deleted. Either the AWS account that owns the member deleted it, or the member is being deleted as the result of anAPPROVED
PROPOSAL
to remove the member. -
DELETED
- The member can no longer participate on the network and all associated resources are deleted. Either the AWS account that owns the member deleted it, or the member is being deleted as the result of anAPPROVED
PROPOSAL
to remove the member.
Trait Implementations§
Source§impl Clone for MemberSummary
impl Clone for MemberSummary
Source§fn clone(&self) -> MemberSummary
fn clone(&self) -> MemberSummary
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more