[][src]Struct rusoto_chime::CreateChannelMembershipRequest

pub struct CreateChannelMembershipRequest {
    pub channel_arn: String,
    pub member_arn: String,
    pub type_: String,
}

Fields

channel_arn: String

The ARN of the channel to which you're adding users.

member_arn: String

The ARN of the member you want to add to the channel.

type_: String

The membership type of a user, DEFAULT or HIDDEN. Default members are always returned as part of ListChannelMemberships. Hidden members are only returned if the type filter in ListChannelMemberships equals HIDDEN. Otherwise hidden members are not returned. This is only supported by moderators.

Trait Implementations

impl Clone for CreateChannelMembershipRequest[src]

impl Debug for CreateChannelMembershipRequest[src]

impl Default for CreateChannelMembershipRequest[src]

impl PartialEq<CreateChannelMembershipRequest> for CreateChannelMembershipRequest[src]

impl Serialize for CreateChannelMembershipRequest[src]

impl StructuralPartialEq for CreateChannelMembershipRequest[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.