Struct aws_sdk_chime::operation::batch_create_room_membership::builders::BatchCreateRoomMembershipInputBuilder
source · #[non_exhaustive]pub struct BatchCreateRoomMembershipInputBuilder { /* private fields */ }Expand description
A builder for BatchCreateRoomMembershipInput.
Implementations§
source§impl BatchCreateRoomMembershipInputBuilder
impl BatchCreateRoomMembershipInputBuilder
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.
This field is required.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 get_account_id(&self) -> &Option<String>
pub fn get_account_id(&self) -> &Option<String>
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 get_room_id(&self) -> &Option<String>
pub fn get_room_id(&self) -> &Option<String>
The room ID.
sourcepub fn membership_item_list(self, input: MembershipItem) -> Self
pub fn membership_item_list(self, input: MembershipItem) -> Self
Appends an item to membership_item_list.
To override the contents of this collection use set_membership_item_list.
The list of membership items.
sourcepub fn set_membership_item_list(
self,
input: Option<Vec<MembershipItem>>,
) -> Self
pub fn set_membership_item_list( self, input: Option<Vec<MembershipItem>>, ) -> Self
The list of membership items.
sourcepub fn get_membership_item_list(&self) -> &Option<Vec<MembershipItem>>
pub fn get_membership_item_list(&self) -> &Option<Vec<MembershipItem>>
The list of membership items.
sourcepub fn build(self) -> Result<BatchCreateRoomMembershipInput, BuildError>
pub fn build(self) -> Result<BatchCreateRoomMembershipInput, BuildError>
Consumes the builder and constructs a BatchCreateRoomMembershipInput.
source§impl BatchCreateRoomMembershipInputBuilder
impl BatchCreateRoomMembershipInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<BatchCreateRoomMembershipOutput, SdkError<BatchCreateRoomMembershipError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<BatchCreateRoomMembershipOutput, SdkError<BatchCreateRoomMembershipError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for BatchCreateRoomMembershipInputBuilder
impl Clone for BatchCreateRoomMembershipInputBuilder
source§fn clone(&self) -> BatchCreateRoomMembershipInputBuilder
fn clone(&self) -> BatchCreateRoomMembershipInputBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Default for BatchCreateRoomMembershipInputBuilder
impl Default for BatchCreateRoomMembershipInputBuilder
source§fn default() -> BatchCreateRoomMembershipInputBuilder
fn default() -> BatchCreateRoomMembershipInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for BatchCreateRoomMembershipInputBuilder
impl PartialEq for BatchCreateRoomMembershipInputBuilder
source§fn eq(&self, other: &BatchCreateRoomMembershipInputBuilder) -> bool
fn eq(&self, other: &BatchCreateRoomMembershipInputBuilder) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BatchCreateRoomMembershipInputBuilder
Auto Trait Implementations§
impl Freeze for BatchCreateRoomMembershipInputBuilder
impl RefUnwindSafe for BatchCreateRoomMembershipInputBuilder
impl Send for BatchCreateRoomMembershipInputBuilder
impl Sync for BatchCreateRoomMembershipInputBuilder
impl Unpin for BatchCreateRoomMembershipInputBuilder
impl UnwindSafe for BatchCreateRoomMembershipInputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.