#[non_exhaustive]pub struct CreateAttendeeInputBuilder { /* private fields */ }Expand description
A builder for CreateAttendeeInput.
Implementations§
source§impl CreateAttendeeInputBuilder
impl CreateAttendeeInputBuilder
sourcepub fn meeting_id(self, input: impl Into<String>) -> Self
pub fn meeting_id(self, input: impl Into<String>) -> Self
The Amazon Chime SDK meeting ID.
This field is required.sourcepub fn set_meeting_id(self, input: Option<String>) -> Self
pub fn set_meeting_id(self, input: Option<String>) -> Self
The Amazon Chime SDK meeting ID.
sourcepub fn get_meeting_id(&self) -> &Option<String>
pub fn get_meeting_id(&self) -> &Option<String>
The Amazon Chime SDK meeting ID.
sourcepub fn external_user_id(self, input: impl Into<String>) -> Self
pub fn external_user_id(self, input: impl Into<String>) -> Self
The Amazon Chime SDK external user ID. An idempotency token. Links the attendee to an identity managed by a builder application.
This field is required.sourcepub fn set_external_user_id(self, input: Option<String>) -> Self
pub fn set_external_user_id(self, input: Option<String>) -> Self
The Amazon Chime SDK external user ID. An idempotency token. Links the attendee to an identity managed by a builder application.
sourcepub fn get_external_user_id(&self) -> &Option<String>
pub fn get_external_user_id(&self) -> &Option<String>
The Amazon Chime SDK external user ID. An idempotency token. Links the attendee to an identity managed by a builder application.
Appends an item to tags.
To override the contents of this collection use set_tags.
The tag key-value pairs.
The tag key-value pairs.
The tag key-value pairs.
sourcepub fn build(self) -> Result<CreateAttendeeInput, BuildError>
pub fn build(self) -> Result<CreateAttendeeInput, BuildError>
Consumes the builder and constructs a CreateAttendeeInput.
source§impl CreateAttendeeInputBuilder
impl CreateAttendeeInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<CreateAttendeeOutput, SdkError<CreateAttendeeError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<CreateAttendeeOutput, SdkError<CreateAttendeeError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for CreateAttendeeInputBuilder
impl Clone for CreateAttendeeInputBuilder
source§fn clone(&self) -> CreateAttendeeInputBuilder
fn clone(&self) -> CreateAttendeeInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CreateAttendeeInputBuilder
impl Debug for CreateAttendeeInputBuilder
source§impl Default for CreateAttendeeInputBuilder
impl Default for CreateAttendeeInputBuilder
source§fn default() -> CreateAttendeeInputBuilder
fn default() -> CreateAttendeeInputBuilder
impl StructuralPartialEq for CreateAttendeeInputBuilder
Auto Trait Implementations§
impl Freeze for CreateAttendeeInputBuilder
impl RefUnwindSafe for CreateAttendeeInputBuilder
impl Send for CreateAttendeeInputBuilder
impl Sync for CreateAttendeeInputBuilder
impl Unpin for CreateAttendeeInputBuilder
impl UnwindSafe for CreateAttendeeInputBuilder
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
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)
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>
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>
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 more