Struct aws_sdk_chime::input::CreateChannelMembershipInput
source · [−]#[non_exhaustive]pub struct CreateChannelMembershipInput { /* private fields */ }Implementations
sourceimpl CreateChannelMembershipInput
impl CreateChannelMembershipInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateChannelMembership, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateChannelMembership, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<CreateChannelMembership>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateChannelMembershipInput.
sourceimpl CreateChannelMembershipInput
impl CreateChannelMembershipInput
sourcepub fn channel_arn(&self) -> Option<&str>
pub fn channel_arn(&self) -> Option<&str>
The ARN of the channel to which you're adding users.
sourcepub fn member_arn(&self) -> Option<&str>
pub fn member_arn(&self) -> Option<&str>
The ARN of the member you want to add to the channel.
sourcepub fn type(&self) -> Option<&ChannelMembershipType>
pub fn type(&self) -> Option<&ChannelMembershipType>
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.
sourcepub fn chime_bearer(&self) -> Option<&str>
pub fn chime_bearer(&self) -> Option<&str>
The AppInstanceUserArn of the user that makes the API call.
Trait Implementations
sourceimpl Clone for CreateChannelMembershipInput
impl Clone for CreateChannelMembershipInput
sourcefn clone(&self) -> CreateChannelMembershipInput
fn clone(&self) -> CreateChannelMembershipInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for CreateChannelMembershipInput
impl Debug for CreateChannelMembershipInput
sourceimpl PartialEq<CreateChannelMembershipInput> for CreateChannelMembershipInput
impl PartialEq<CreateChannelMembershipInput> for CreateChannelMembershipInput
sourcefn eq(&self, other: &CreateChannelMembershipInput) -> bool
fn eq(&self, other: &CreateChannelMembershipInput) -> bool
impl StructuralPartialEq for CreateChannelMembershipInput
Auto Trait Implementations
impl RefUnwindSafe for CreateChannelMembershipInput
impl Send for CreateChannelMembershipInput
impl Sync for CreateChannelMembershipInput
impl Unpin for CreateChannelMembershipInput
impl UnwindSafe for CreateChannelMembershipInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more