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 [`TagAttendee`](crate::operation::tag_attendee::builders::TagAttendeeFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`meeting_id(impl Into<String>)`](crate::operation::tag_attendee::builders::TagAttendeeFluentBuilder::meeting_id) / [`set_meeting_id(Option<String>)`](crate::operation::tag_attendee::builders::TagAttendeeFluentBuilder::set_meeting_id):<br>required: **true**<br><p>The Amazon Chime SDK meeting ID.</p><br>
    ///   - [`attendee_id(impl Into<String>)`](crate::operation::tag_attendee::builders::TagAttendeeFluentBuilder::attendee_id) / [`set_attendee_id(Option<String>)`](crate::operation::tag_attendee::builders::TagAttendeeFluentBuilder::set_attendee_id):<br>required: **true**<br><p>The Amazon Chime SDK attendee ID.</p><br>
    ///   - [`tags(Tag)`](crate::operation::tag_attendee::builders::TagAttendeeFluentBuilder::tags) / [`set_tags(Option<Vec::<Tag>>)`](crate::operation::tag_attendee::builders::TagAttendeeFluentBuilder::set_tags):<br>required: **true**<br><p>The tag key-value pairs.</p><br>
    /// - On success, responds with [`TagAttendeeOutput`](crate::operation::tag_attendee::TagAttendeeOutput)
    /// - On failure, responds with [`SdkError<TagAttendeeError>`](crate::operation::tag_attendee::TagAttendeeError)
    #[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 tag_attendee(&self) -> crate::operation::tag_attendee::builders::TagAttendeeFluentBuilder {
        crate::operation::tag_attendee::builders::TagAttendeeFluentBuilder::new(self.handle.clone())
    }
}