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 [`UpdateRestoreTestingPlan`](crate::operation::update_restore_testing_plan::builders::UpdateRestoreTestingPlanFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`restore_testing_plan(RestoreTestingPlanForUpdate)`](crate::operation::update_restore_testing_plan::builders::UpdateRestoreTestingPlanFluentBuilder::restore_testing_plan) / [`set_restore_testing_plan(Option<RestoreTestingPlanForUpdate>)`](crate::operation::update_restore_testing_plan::builders::UpdateRestoreTestingPlanFluentBuilder::set_restore_testing_plan):<br>required: **true**<br><p>Specifies the body of a restore testing plan.</p><br>
    ///   - [`restore_testing_plan_name(impl Into<String>)`](crate::operation::update_restore_testing_plan::builders::UpdateRestoreTestingPlanFluentBuilder::restore_testing_plan_name) / [`set_restore_testing_plan_name(Option<String>)`](crate::operation::update_restore_testing_plan::builders::UpdateRestoreTestingPlanFluentBuilder::set_restore_testing_plan_name):<br>required: **true**<br><p>This is the restore testing plan name you wish to update.</p><br>
    /// - On success, responds with [`UpdateRestoreTestingPlanOutput`](crate::operation::update_restore_testing_plan::UpdateRestoreTestingPlanOutput) with field(s):
    ///   - [`creation_time(DateTime)`](crate::operation::update_restore_testing_plan::UpdateRestoreTestingPlanOutput::creation_time): <p>This is the time the resource testing plan was created.</p>
    ///   - [`restore_testing_plan_arn(String)`](crate::operation::update_restore_testing_plan::UpdateRestoreTestingPlanOutput::restore_testing_plan_arn): <p>Unique ARN (Amazon Resource Name) of the restore testing plan.</p>
    ///   - [`restore_testing_plan_name(String)`](crate::operation::update_restore_testing_plan::UpdateRestoreTestingPlanOutput::restore_testing_plan_name): <p>The name cannot be changed after creation. The name consists of only alphanumeric characters and underscores. Maximum length is 50.</p>
    ///   - [`update_time(DateTime)`](crate::operation::update_restore_testing_plan::UpdateRestoreTestingPlanOutput::update_time): <p>This is the time the update completed for the restore testing plan.</p>
    /// - On failure, responds with [`SdkError<UpdateRestoreTestingPlanError>`](crate::operation::update_restore_testing_plan::UpdateRestoreTestingPlanError)
    pub fn update_restore_testing_plan(&self) -> crate::operation::update_restore_testing_plan::builders::UpdateRestoreTestingPlanFluentBuilder {
        crate::operation::update_restore_testing_plan::builders::UpdateRestoreTestingPlanFluentBuilder::new(self.handle.clone())
    }
}