pub struct BatchCreateChannelMembership { /* private fields */ }Expand description
Fluent builder constructing a request to BatchCreateChannelMembership.
Adds a specified number of users to a channel.
Implementations
sourceimpl BatchCreateChannelMembership
impl BatchCreateChannelMembership
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<BatchCreateChannelMembership, AwsResponseRetryClassifier>, SdkError<BatchCreateChannelMembershipError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<BatchCreateChannelMembership, AwsResponseRetryClassifier>, SdkError<BatchCreateChannelMembershipError>>
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<BatchCreateChannelMembershipOutput, SdkError<BatchCreateChannelMembershipError>>
pub async fn send(
self
) -> Result<BatchCreateChannelMembershipOutput, SdkError<BatchCreateChannelMembershipError>>
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 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 member_arns(self, input: impl Into<String>) -> Self
pub fn member_arns(self, input: impl Into<String>) -> Self
Appends an item to MemberArns.
To override the contents of this collection use set_member_arns.
The ARNs of the members you want to add to the channel.
sourcepub fn set_member_arns(self, input: Option<Vec<String>>) -> Self
pub fn set_member_arns(self, input: Option<Vec<String>>) -> Self
The ARNs of the members you want to add to the channel.
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 BatchCreateChannelMembership
impl Clone for BatchCreateChannelMembership
sourcefn clone(&self) -> BatchCreateChannelMembership
fn clone(&self) -> BatchCreateChannelMembership
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more