pub struct CreateMemberInput {
pub client_request_token: String,
pub invitation_id: String,
pub member_configuration: MemberConfiguration,
pub network_id: String,
}
Fields§
§client_request_token: String
A unique, case-sensitive identifier that you provide to ensure the idempotency of the operation. An idempotent operation completes no more than one time. This identifier is required only if you make a service request directly using an HTTP client. It is generated automatically if you use an AWS SDK or the AWS CLI.
invitation_id: String
The unique identifier of the invitation that is sent to the member to join the network.
member_configuration: MemberConfiguration
Member configuration parameters.
network_id: String
The unique identifier of the network in which the member is created.
Trait Implementations§
Source§impl Clone for CreateMemberInput
impl Clone for CreateMemberInput
Source§fn clone(&self) -> CreateMemberInput
fn clone(&self) -> CreateMemberInput
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CreateMemberInput
impl Debug for CreateMemberInput
Source§impl Default for CreateMemberInput
impl Default for CreateMemberInput
Source§fn default() -> CreateMemberInput
fn default() -> CreateMemberInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateMemberInput
impl PartialEq for CreateMemberInput
Source§impl Serialize for CreateMemberInput
impl Serialize for CreateMemberInput
impl StructuralPartialEq for CreateMemberInput
Auto Trait Implementations§
impl Freeze for CreateMemberInput
impl RefUnwindSafe for CreateMemberInput
impl Send for CreateMemberInput
impl Sync for CreateMemberInput
impl Unpin for CreateMemberInput
impl UnwindSafe for CreateMemberInput
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more