1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdateContactSchedule`](crate::operation::update_contact_schedule::builders::UpdateContactScheduleFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`instance_id(impl Into<String>)`](crate::operation::update_contact_schedule::builders::UpdateContactScheduleFluentBuilder::instance_id) / [`set_instance_id(Option<String>)`](crate::operation::update_contact_schedule::builders::UpdateContactScheduleFluentBuilder::set_instance_id): <p>The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.</p>
    ///   - [`contact_id(impl Into<String>)`](crate::operation::update_contact_schedule::builders::UpdateContactScheduleFluentBuilder::contact_id) / [`set_contact_id(Option<String>)`](crate::operation::update_contact_schedule::builders::UpdateContactScheduleFluentBuilder::set_contact_id): <p>The identifier of the contact.</p>
    ///   - [`scheduled_time(DateTime)`](crate::operation::update_contact_schedule::builders::UpdateContactScheduleFluentBuilder::scheduled_time) / [`set_scheduled_time(Option<DateTime>)`](crate::operation::update_contact_schedule::builders::UpdateContactScheduleFluentBuilder::set_scheduled_time): <p>The timestamp, in Unix Epoch seconds format, at which to start running the inbound flow. The scheduled time cannot be in the past. It must be within up to 6 days in future. </p>
    /// - On success, responds with [`UpdateContactScheduleOutput`](crate::operation::update_contact_schedule::UpdateContactScheduleOutput)
    /// - On failure, responds with [`SdkError<UpdateContactScheduleError>`](crate::operation::update_contact_schedule::UpdateContactScheduleError)
    pub fn update_contact_schedule(
        &self,
    ) -> crate::operation::update_contact_schedule::builders::UpdateContactScheduleFluentBuilder
    {
        crate::operation::update_contact_schedule::builders::UpdateContactScheduleFluentBuilder::new(
            self.handle.clone(),
        )
    }
}