aws_sdk_connect/client/update_queue_outbound_caller_config.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`UpdateQueueOutboundCallerConfig`](crate::operation::update_queue_outbound_caller_config::builders::UpdateQueueOutboundCallerConfigFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`instance_id(impl Into<String>)`](crate::operation::update_queue_outbound_caller_config::builders::UpdateQueueOutboundCallerConfigFluentBuilder::instance_id) / [`set_instance_id(Option<String>)`](crate::operation::update_queue_outbound_caller_config::builders::UpdateQueueOutboundCallerConfigFluentBuilder::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>
/// - [`queue_id(impl Into<String>)`](crate::operation::update_queue_outbound_caller_config::builders::UpdateQueueOutboundCallerConfigFluentBuilder::queue_id) / [`set_queue_id(Option<String>)`](crate::operation::update_queue_outbound_caller_config::builders::UpdateQueueOutboundCallerConfigFluentBuilder::set_queue_id):<br>required: **true**<br><p>The identifier for the queue.</p><br>
/// - [`outbound_caller_config(OutboundCallerConfig)`](crate::operation::update_queue_outbound_caller_config::builders::UpdateQueueOutboundCallerConfigFluentBuilder::outbound_caller_config) / [`set_outbound_caller_config(Option<OutboundCallerConfig>)`](crate::operation::update_queue_outbound_caller_config::builders::UpdateQueueOutboundCallerConfigFluentBuilder::set_outbound_caller_config):<br>required: **true**<br><p>The outbound caller ID name, number, and outbound whisper flow.</p><br>
/// - On success, responds with [`UpdateQueueOutboundCallerConfigOutput`](crate::operation::update_queue_outbound_caller_config::UpdateQueueOutboundCallerConfigOutput)
/// - On failure, responds with [`SdkError<UpdateQueueOutboundCallerConfigError>`](crate::operation::update_queue_outbound_caller_config::UpdateQueueOutboundCallerConfigError)
pub fn update_queue_outbound_caller_config(
&self,
) -> crate::operation::update_queue_outbound_caller_config::builders::UpdateQueueOutboundCallerConfigFluentBuilder {
crate::operation::update_queue_outbound_caller_config::builders::UpdateQueueOutboundCallerConfigFluentBuilder::new(self.handle.clone())
}
}