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 [`ModifyInstanceEventStartTime`](crate::operation::modify_instance_event_start_time::builders::ModifyInstanceEventStartTimeFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`dry_run(bool)`](crate::operation::modify_instance_event_start_time::builders::ModifyInstanceEventStartTimeFluentBuilder::dry_run) / [`set_dry_run(Option<bool>)`](crate::operation::modify_instance_event_start_time::builders::ModifyInstanceEventStartTimeFluentBuilder::set_dry_run): <p>Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
    ///   - [`instance_id(impl Into<String>)`](crate::operation::modify_instance_event_start_time::builders::ModifyInstanceEventStartTimeFluentBuilder::instance_id) / [`set_instance_id(Option<String>)`](crate::operation::modify_instance_event_start_time::builders::ModifyInstanceEventStartTimeFluentBuilder::set_instance_id): <p>The ID of the instance with the scheduled event.</p>
    ///   - [`instance_event_id(impl Into<String>)`](crate::operation::modify_instance_event_start_time::builders::ModifyInstanceEventStartTimeFluentBuilder::instance_event_id) / [`set_instance_event_id(Option<String>)`](crate::operation::modify_instance_event_start_time::builders::ModifyInstanceEventStartTimeFluentBuilder::set_instance_event_id): <p>The ID of the event whose date and time you are modifying.</p>
    ///   - [`not_before(DateTime)`](crate::operation::modify_instance_event_start_time::builders::ModifyInstanceEventStartTimeFluentBuilder::not_before) / [`set_not_before(Option<DateTime>)`](crate::operation::modify_instance_event_start_time::builders::ModifyInstanceEventStartTimeFluentBuilder::set_not_before): <p>The new date and time when the event will take place.</p>
    /// - On success, responds with [`ModifyInstanceEventStartTimeOutput`](crate::operation::modify_instance_event_start_time::ModifyInstanceEventStartTimeOutput) with field(s):
    ///   - [`event(Option<InstanceStatusEvent>)`](crate::operation::modify_instance_event_start_time::ModifyInstanceEventStartTimeOutput::event): <p>Information about the event.</p>
    /// - On failure, responds with [`SdkError<ModifyInstanceEventStartTimeError>`](crate::operation::modify_instance_event_start_time::ModifyInstanceEventStartTimeError)
    pub fn modify_instance_event_start_time(&self) -> crate::operation::modify_instance_event_start_time::builders::ModifyInstanceEventStartTimeFluentBuilder{
        crate::operation::modify_instance_event_start_time::builders::ModifyInstanceEventStartTimeFluentBuilder::new(self.handle.clone())
    }
}