1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UntagAttendee`](crate::operation::untag_attendee::builders::UntagAttendeeFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`meeting_id(impl Into<String>)`](crate::operation::untag_attendee::builders::UntagAttendeeFluentBuilder::meeting_id) / [`set_meeting_id(Option<String>)`](crate::operation::untag_attendee::builders::UntagAttendeeFluentBuilder::set_meeting_id):<br>required: **true**<br><p>The Amazon Chime SDK meeting ID.</p><br>
    ///   - [`attendee_id(impl Into<String>)`](crate::operation::untag_attendee::builders::UntagAttendeeFluentBuilder::attendee_id) / [`set_attendee_id(Option<String>)`](crate::operation::untag_attendee::builders::UntagAttendeeFluentBuilder::set_attendee_id):<br>required: **true**<br><p>The Amazon Chime SDK attendee ID.</p><br>
    ///   - [`tag_keys(impl Into<String>)`](crate::operation::untag_attendee::builders::UntagAttendeeFluentBuilder::tag_keys) / [`set_tag_keys(Option<Vec::<String>>)`](crate::operation::untag_attendee::builders::UntagAttendeeFluentBuilder::set_tag_keys):<br>required: **true**<br><p>The tag keys.</p><br>
    /// - On success, responds with [`UntagAttendeeOutput`](crate::operation::untag_attendee::UntagAttendeeOutput)
    /// - On failure, responds with [`SdkError<UntagAttendeeError>`](crate::operation::untag_attendee::UntagAttendeeError)
    #[deprecated(
        note = "Attendee Tags are not supported in the Amazon Chime SDK Meetings Namespace. Update your application to remove calls to this API."
    )]
    pub fn untag_attendee(&self) -> crate::operation::untag_attendee::builders::UntagAttendeeFluentBuilder {
        crate::operation::untag_attendee::builders::UntagAttendeeFluentBuilder::new(self.handle.clone())
    }
}