1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdateZonalAutoshiftConfiguration`](crate::operation::update_zonal_autoshift_configuration::builders::UpdateZonalAutoshiftConfigurationFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`resource_identifier(impl Into<String>)`](crate::operation::update_zonal_autoshift_configuration::builders::UpdateZonalAutoshiftConfigurationFluentBuilder::resource_identifier) / [`set_resource_identifier(Option<String>)`](crate::operation::update_zonal_autoshift_configuration::builders::UpdateZonalAutoshiftConfigurationFluentBuilder::set_resource_identifier):<br>required: **true**<br><p>The identifier for the resource that you want to update the zonal autoshift configuration for. The identifier is the Amazon Resource Name (ARN) for the resource.</p><br>
    ///   - [`zonal_autoshift_status(ZonalAutoshiftStatus)`](crate::operation::update_zonal_autoshift_configuration::builders::UpdateZonalAutoshiftConfigurationFluentBuilder::zonal_autoshift_status) / [`set_zonal_autoshift_status(Option<ZonalAutoshiftStatus>)`](crate::operation::update_zonal_autoshift_configuration::builders::UpdateZonalAutoshiftConfigurationFluentBuilder::set_zonal_autoshift_status):<br>required: **true**<br><p>The zonal autoshift status for the resource that you want to update the zonal autoshift configuration for.</p><br>
    /// - On success, responds with [`UpdateZonalAutoshiftConfigurationOutput`](crate::operation::update_zonal_autoshift_configuration::UpdateZonalAutoshiftConfigurationOutput) with field(s):
    ///   - [`resource_identifier(String)`](crate::operation::update_zonal_autoshift_configuration::UpdateZonalAutoshiftConfigurationOutput::resource_identifier): <p>The identifier for the resource that you updated the zonal autoshift configuration for. The identifier is the Amazon Resource Name (ARN) for the resource.</p>
    ///   - [`zonal_autoshift_status(ZonalAutoshiftStatus)`](crate::operation::update_zonal_autoshift_configuration::UpdateZonalAutoshiftConfigurationOutput::zonal_autoshift_status): <p>The zonal autoshift status for the resource that you updated the zonal autoshift configuration for.</p>
    /// - On failure, responds with [`SdkError<UpdateZonalAutoshiftConfigurationError>`](crate::operation::update_zonal_autoshift_configuration::UpdateZonalAutoshiftConfigurationError)
    pub fn update_zonal_autoshift_configuration(
        &self,
    ) -> crate::operation::update_zonal_autoshift_configuration::builders::UpdateZonalAutoshiftConfigurationFluentBuilder {
        crate::operation::update_zonal_autoshift_configuration::builders::UpdateZonalAutoshiftConfigurationFluentBuilder::new(self.handle.clone())
    }
}