1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`CreateAttendee`](crate::operation::create_attendee::builders::CreateAttendeeFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`meeting_id(impl Into<String>)`](crate::operation::create_attendee::builders::CreateAttendeeFluentBuilder::meeting_id) / [`set_meeting_id(Option<String>)`](crate::operation::create_attendee::builders::CreateAttendeeFluentBuilder::set_meeting_id):<br>required: **true**<br><p>The Amazon Chime SDK meeting ID.</p><br>
    ///   - [`external_user_id(impl Into<String>)`](crate::operation::create_attendee::builders::CreateAttendeeFluentBuilder::external_user_id) / [`set_external_user_id(Option<String>)`](crate::operation::create_attendee::builders::CreateAttendeeFluentBuilder::set_external_user_id):<br>required: **true**<br><p>The Amazon Chime SDK external user ID. An idempotency token. Links the attendee to an identity managed by a builder application.</p><br>
    ///   - [`tags(Tag)`](crate::operation::create_attendee::builders::CreateAttendeeFluentBuilder::tags) / [`set_tags(Option<Vec::<Tag>>)`](crate::operation::create_attendee::builders::CreateAttendeeFluentBuilder::set_tags):<br>required: **false**<br><p>The tag key-value pairs.</p><br>
    /// - On success, responds with [`CreateAttendeeOutput`](crate::operation::create_attendee::CreateAttendeeOutput) with field(s):
    ///   - [`attendee(Option<Attendee>)`](crate::operation::create_attendee::CreateAttendeeOutput::attendee): <p>The attendee information, including attendee ID and join token.</p>
    /// - On failure, responds with [`SdkError<CreateAttendeeError>`](crate::operation::create_attendee::CreateAttendeeError)
    #[deprecated(note = "Replaced by CreateAttendee in the Amazon Chime SDK Meetings Namespace")]
    pub fn create_attendee(&self) -> crate::operation::create_attendee::builders::CreateAttendeeFluentBuilder {
        crate::operation::create_attendee::builders::CreateAttendeeFluentBuilder::new(self.handle.clone())
    }
}