pub struct CreateChannelMembership { /* private fields */ }Expand description
Fluent builder constructing a request to CreateChannelMembership.
Adds a user to a channel. The InvitedBy response field is derived from the request header. A channel member can:
-
List messages
-
Send messages
-
Receive messages
-
Edit their own messages
-
Leave the channel
Privacy settings impact this action as follows:
-
Public Channels: You do not need to be a member to list messages, but you must be a member to send messages.
-
Private Channels: You must be a member to list or send messages.
The x-amz-chime-bearer request header is mandatory. Use the AppInstanceUserArn of the user that makes the API call as the value in the header.
Implementations
sourceimpl CreateChannelMembership
impl CreateChannelMembership
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<CreateChannelMembership, AwsResponseRetryClassifier>, SdkError<CreateChannelMembershipError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<CreateChannelMembership, AwsResponseRetryClassifier>, SdkError<CreateChannelMembershipError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<CreateChannelMembershipOutput, SdkError<CreateChannelMembershipError>>
pub async fn send(
self
) -> Result<CreateChannelMembershipOutput, SdkError<CreateChannelMembershipError>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn channel_arn(self, input: impl Into<String>) -> Self
pub fn channel_arn(self, input: impl Into<String>) -> Self
The ARN of the channel to which you're adding users.
sourcepub fn set_channel_arn(self, input: Option<String>) -> Self
pub fn set_channel_arn(self, input: Option<String>) -> Self
The ARN of the channel to which you're adding users.
sourcepub fn member_arn(self, input: impl Into<String>) -> Self
pub fn member_arn(self, input: impl Into<String>) -> Self
The ARN of the member you want to add to the channel.
sourcepub fn set_member_arn(self, input: Option<String>) -> Self
pub fn set_member_arn(self, input: Option<String>) -> Self
The ARN of the member you want to add to the channel.
sourcepub fn type(self, input: ChannelMembershipType) -> Self
pub fn type(self, input: ChannelMembershipType) -> Self
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 set_type(self, input: Option<ChannelMembershipType>) -> Self
pub fn set_type(self, input: Option<ChannelMembershipType>) -> Self
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, input: impl Into<String>) -> Self
pub fn chime_bearer(self, input: impl Into<String>) -> Self
The AppInstanceUserArn of the user that makes the API call.
sourcepub fn set_chime_bearer(self, input: Option<String>) -> Self
pub fn set_chime_bearer(self, input: Option<String>) -> Self
The AppInstanceUserArn of the user that makes the API call.
Trait Implementations
sourceimpl Clone for CreateChannelMembership
impl Clone for CreateChannelMembership
sourcefn clone(&self) -> CreateChannelMembership
fn clone(&self) -> CreateChannelMembership
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more