Struct aws_sdk_chime::operation::batch_create_attendee::builders::BatchCreateAttendeeFluentBuilder
source · pub struct BatchCreateAttendeeFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to BatchCreateAttendee.
Creates up to 100 new attendees for an active Amazon Chime SDK meeting.
This API is is no longer supported and will not be updated. We recommend using the latest version, BatchCreateAttendee, in the Amazon Chime SDK.
Using the latest version requires migrating to a dedicated namespace. For more information, refer to Migrating from the Amazon Chime namespace in the Amazon Chime SDK Developer Guide.
For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime SDK Developer Guide.
Implementations§
source§impl BatchCreateAttendeeFluentBuilder
impl BatchCreateAttendeeFluentBuilder
sourcepub fn as_input(&self) -> &BatchCreateAttendeeInputBuilder
pub fn as_input(&self) -> &BatchCreateAttendeeInputBuilder
Access the BatchCreateAttendee as a reference.
sourcepub async fn send(
self
) -> Result<BatchCreateAttendeeOutput, SdkError<BatchCreateAttendeeError, HttpResponse>>
pub async fn send( self ) -> Result<BatchCreateAttendeeOutput, SdkError<BatchCreateAttendeeError, HttpResponse>>
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 customize(
self
) -> CustomizableOperation<BatchCreateAttendeeOutput, BatchCreateAttendeeError, Self>
pub fn customize( self ) -> CustomizableOperation<BatchCreateAttendeeOutput, BatchCreateAttendeeError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
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.
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 attendees(self, input: CreateAttendeeRequestItem) -> Self
pub fn attendees(self, input: CreateAttendeeRequestItem) -> Self
Appends an item to Attendees.
To override the contents of this collection use set_attendees.
The request containing the attendees to create.
sourcepub fn set_attendees(
self,
input: Option<Vec<CreateAttendeeRequestItem>>
) -> Self
pub fn set_attendees( self, input: Option<Vec<CreateAttendeeRequestItem>> ) -> Self
The request containing the attendees to create.
sourcepub fn get_attendees(&self) -> &Option<Vec<CreateAttendeeRequestItem>>
pub fn get_attendees(&self) -> &Option<Vec<CreateAttendeeRequestItem>>
The request containing the attendees to create.
Trait Implementations§
source§impl Clone for BatchCreateAttendeeFluentBuilder
impl Clone for BatchCreateAttendeeFluentBuilder
source§fn clone(&self) -> BatchCreateAttendeeFluentBuilder
fn clone(&self) -> BatchCreateAttendeeFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreAuto Trait Implementations§
impl Freeze for BatchCreateAttendeeFluentBuilder
impl !RefUnwindSafe for BatchCreateAttendeeFluentBuilder
impl Send for BatchCreateAttendeeFluentBuilder
impl Sync for BatchCreateAttendeeFluentBuilder
impl Unpin for BatchCreateAttendeeFluentBuilder
impl !UnwindSafe for BatchCreateAttendeeFluentBuilder
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> 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