Struct aws_sdk_chime::client::fluent_builders::CreateRoomMembership
source · [−]pub struct CreateRoomMembership { /* private fields */ }Expand description
Fluent builder constructing a request to CreateRoomMembership.
Adds a member to a chat room in an Amazon Chime Enterprise account. A member can be either a user or a bot. The member role designates whether the member is a chat room administrator or a general chat room member.
Implementations
sourceimpl CreateRoomMembership
impl CreateRoomMembership
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<CreateRoomMembership, AwsResponseRetryClassifier>, SdkError<CreateRoomMembershipError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<CreateRoomMembership, AwsResponseRetryClassifier>, SdkError<CreateRoomMembershipError>>
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<CreateRoomMembershipOutput, SdkError<CreateRoomMembershipError>>
pub async fn send(
self
) -> Result<CreateRoomMembershipOutput, SdkError<CreateRoomMembershipError>>
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 account_id(self, input: impl Into<String>) -> Self
pub fn account_id(self, input: impl Into<String>) -> Self
The Amazon Chime account ID.
sourcepub fn set_account_id(self, input: Option<String>) -> Self
pub fn set_account_id(self, input: Option<String>) -> Self
The Amazon Chime account ID.
sourcepub fn set_room_id(self, input: Option<String>) -> Self
pub fn set_room_id(self, input: Option<String>) -> Self
The room ID.
sourcepub fn member_id(self, input: impl Into<String>) -> Self
pub fn member_id(self, input: impl Into<String>) -> Self
The Amazon Chime member ID (user ID or bot ID).
sourcepub fn set_member_id(self, input: Option<String>) -> Self
pub fn set_member_id(self, input: Option<String>) -> Self
The Amazon Chime member ID (user ID or bot ID).
sourcepub fn role(self, input: RoomMembershipRole) -> Self
pub fn role(self, input: RoomMembershipRole) -> Self
The role of the member.
sourcepub fn set_role(self, input: Option<RoomMembershipRole>) -> Self
pub fn set_role(self, input: Option<RoomMembershipRole>) -> Self
The role of the member.
Trait Implementations
sourceimpl Clone for CreateRoomMembership
impl Clone for CreateRoomMembership
sourcefn clone(&self) -> CreateRoomMembership
fn clone(&self) -> CreateRoomMembership
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more