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 [`AssociateSkillGroupWithRoom`](crate::operation::associate_skill_group_with_room::builders::AssociateSkillGroupWithRoomFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`skill_group_arn(impl Into<String>)`](crate::operation::associate_skill_group_with_room::builders::AssociateSkillGroupWithRoomFluentBuilder::skill_group_arn) / [`set_skill_group_arn(Option<String>)`](crate::operation::associate_skill_group_with_room::builders::AssociateSkillGroupWithRoomFluentBuilder::set_skill_group_arn):<br>required: **false**<br><p>The ARN of the skill group to associate with a room. Required.</p><br>
    ///   - [`room_arn(impl Into<String>)`](crate::operation::associate_skill_group_with_room::builders::AssociateSkillGroupWithRoomFluentBuilder::room_arn) / [`set_room_arn(Option<String>)`](crate::operation::associate_skill_group_with_room::builders::AssociateSkillGroupWithRoomFluentBuilder::set_room_arn):<br>required: **false**<br><p>The ARN of the room with which to associate the skill group. Required.</p><br>
    /// - On success, responds with [`AssociateSkillGroupWithRoomOutput`](crate::operation::associate_skill_group_with_room::AssociateSkillGroupWithRoomOutput)
    /// - On failure, responds with [`SdkError<AssociateSkillGroupWithRoomError>`](crate::operation::associate_skill_group_with_room::AssociateSkillGroupWithRoomError)
    #[deprecated(note = "Alexa For Business is no longer supported")]
    pub fn associate_skill_group_with_room(
        &self,
    ) -> crate::operation::associate_skill_group_with_room::builders::AssociateSkillGroupWithRoomFluentBuilder {
        crate::operation::associate_skill_group_with_room::builders::AssociateSkillGroupWithRoomFluentBuilder::new(self.handle.clone())
    }
}