aws_sdk_connect/client/update_routing_profile_name.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`UpdateRoutingProfileName`](crate::operation::update_routing_profile_name::builders::UpdateRoutingProfileNameFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`instance_id(impl Into<String>)`](crate::operation::update_routing_profile_name::builders::UpdateRoutingProfileNameFluentBuilder::instance_id) / [`set_instance_id(Option<String>)`](crate::operation::update_routing_profile_name::builders::UpdateRoutingProfileNameFluentBuilder::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>
/// - [`routing_profile_id(impl Into<String>)`](crate::operation::update_routing_profile_name::builders::UpdateRoutingProfileNameFluentBuilder::routing_profile_id) / [`set_routing_profile_id(Option<String>)`](crate::operation::update_routing_profile_name::builders::UpdateRoutingProfileNameFluentBuilder::set_routing_profile_id):<br>required: **true**<br><p>The identifier of the routing profile.</p><br>
/// - [`name(impl Into<String>)`](crate::operation::update_routing_profile_name::builders::UpdateRoutingProfileNameFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::update_routing_profile_name::builders::UpdateRoutingProfileNameFluentBuilder::set_name):<br>required: **false**<br><p>The name of the routing profile. Must not be more than 127 characters.</p><br>
/// - [`description(impl Into<String>)`](crate::operation::update_routing_profile_name::builders::UpdateRoutingProfileNameFluentBuilder::description) / [`set_description(Option<String>)`](crate::operation::update_routing_profile_name::builders::UpdateRoutingProfileNameFluentBuilder::set_description):<br>required: **false**<br><p>The description of the routing profile. Must not be more than 250 characters.</p><br>
/// - On success, responds with [`UpdateRoutingProfileNameOutput`](crate::operation::update_routing_profile_name::UpdateRoutingProfileNameOutput)
/// - On failure, responds with [`SdkError<UpdateRoutingProfileNameError>`](crate::operation::update_routing_profile_name::UpdateRoutingProfileNameError)
pub fn update_routing_profile_name(&self) -> crate::operation::update_routing_profile_name::builders::UpdateRoutingProfileNameFluentBuilder {
crate::operation::update_routing_profile_name::builders::UpdateRoutingProfileNameFluentBuilder::new(self.handle.clone())
}
}