pub struct Member {
pub creation_date: Option<f64>,
pub description: Option<String>,
pub framework_attributes: Option<MemberFrameworkAttributes>,
pub id: Option<String>,
pub log_publishing_configuration: Option<MemberLogPublishingConfiguration>,
pub name: Option<String>,
pub network_id: Option<String>,
pub status: Option<String>,
}
Expand description
Member configuration properties.
Fields§
§creation_date: Option<f64>
The date and time that the member was created.
description: Option<String>
An optional description for the member.
framework_attributes: Option<MemberFrameworkAttributes>
Attributes relevant to a member for the blockchain framework that the Managed Blockchain network uses.
id: Option<String>
The unique identifier of the member.
log_publishing_configuration: Option<MemberLogPublishingConfiguration>
Configuration properties for logging events associated with a member.
name: Option<String>
The name of the member.
network_id: Option<String>
The unique identifier of the network to which the member belongs.
status: Option<String>
The status of a 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.