[][src]Struct rusoto_managedblockchain::CreateMemberInput

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

impl Clone for CreateMemberInput[src]

impl Debug for CreateMemberInput[src]

impl Default for CreateMemberInput[src]

impl PartialEq<CreateMemberInput> for CreateMemberInput[src]

impl Serialize for CreateMemberInput[src]

impl StructuralPartialEq for CreateMemberInput[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.