1
2
3
4
5
6
7
8
9
10
11
12
13
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteScalingPlan`](crate::operation::delete_scaling_plan::builders::DeleteScalingPlanFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`scaling_plan_name(impl Into<String>)`](crate::operation::delete_scaling_plan::builders::DeleteScalingPlanFluentBuilder::scaling_plan_name) / [`set_scaling_plan_name(Option<String>)`](crate::operation::delete_scaling_plan::builders::DeleteScalingPlanFluentBuilder::set_scaling_plan_name):<br>required: **true**<br><p>The name of the scaling plan.</p><br>
    ///   - [`scaling_plan_version(i64)`](crate::operation::delete_scaling_plan::builders::DeleteScalingPlanFluentBuilder::scaling_plan_version) / [`set_scaling_plan_version(Option<i64>)`](crate::operation::delete_scaling_plan::builders::DeleteScalingPlanFluentBuilder::set_scaling_plan_version):<br>required: **true**<br><p>The version number of the scaling plan. Currently, the only valid value is <code>1</code>.</p><br>
    /// - On success, responds with [`DeleteScalingPlanOutput`](crate::operation::delete_scaling_plan::DeleteScalingPlanOutput)
    /// - On failure, responds with [`SdkError<DeleteScalingPlanError>`](crate::operation::delete_scaling_plan::DeleteScalingPlanError)
    pub fn delete_scaling_plan(&self) -> crate::operation::delete_scaling_plan::builders::DeleteScalingPlanFluentBuilder {
        crate::operation::delete_scaling_plan::builders::DeleteScalingPlanFluentBuilder::new(self.handle.clone())
    }
}