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 [`UpdateParticipantRoleConfig`](crate::operation::update_participant_role_config::builders::UpdateParticipantRoleConfigFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`instance_id(impl Into<String>)`](crate::operation::update_participant_role_config::builders::UpdateParticipantRoleConfigFluentBuilder::instance_id) / [`set_instance_id(Option<String>)`](crate::operation::update_participant_role_config::builders::UpdateParticipantRoleConfigFluentBuilder::set_instance_id):<br>required: **true**<br><p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p><br>
    ///   - [`contact_id(impl Into<String>)`](crate::operation::update_participant_role_config::builders::UpdateParticipantRoleConfigFluentBuilder::contact_id) / [`set_contact_id(Option<String>)`](crate::operation::update_participant_role_config::builders::UpdateParticipantRoleConfigFluentBuilder::set_contact_id):<br>required: **true**<br><p>The identifier of the contact in this instance of Amazon Connect. </p><br>
    ///   - [`channel_configuration(UpdateParticipantRoleConfigChannelInfo)`](crate::operation::update_participant_role_config::builders::UpdateParticipantRoleConfigFluentBuilder::channel_configuration) / [`set_channel_configuration(Option<UpdateParticipantRoleConfigChannelInfo>)`](crate::operation::update_participant_role_config::builders::UpdateParticipantRoleConfigFluentBuilder::set_channel_configuration):<br>required: **true**<br><p>The Amazon Connect channel you want to configure.</p><br>
    /// - On success, responds with [`UpdateParticipantRoleConfigOutput`](crate::operation::update_participant_role_config::UpdateParticipantRoleConfigOutput)
    /// - On failure, responds with [`SdkError<UpdateParticipantRoleConfigError>`](crate::operation::update_participant_role_config::UpdateParticipantRoleConfigError)
    pub fn update_participant_role_config(
        &self,
    ) -> crate::operation::update_participant_role_config::builders::UpdateParticipantRoleConfigFluentBuilder {
        crate::operation::update_participant_role_config::builders::UpdateParticipantRoleConfigFluentBuilder::new(self.handle.clone())
    }
}