aws_sdk_billingconductor/client/delete_pricing_plan.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`DeletePricingPlan`](crate::operation::delete_pricing_plan::builders::DeletePricingPlanFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`arn(impl Into<String>)`](crate::operation::delete_pricing_plan::builders::DeletePricingPlanFluentBuilder::arn) / [`set_arn(Option<String>)`](crate::operation::delete_pricing_plan::builders::DeletePricingPlanFluentBuilder::set_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the pricing plan that you're deleting.</p><br>
7 /// - On success, responds with [`DeletePricingPlanOutput`](crate::operation::delete_pricing_plan::DeletePricingPlanOutput) with field(s):
8 /// - [`arn(Option<String>)`](crate::operation::delete_pricing_plan::DeletePricingPlanOutput::arn): <p>The Amazon Resource Name (ARN) of the deleted pricing plan.</p>
9 /// - On failure, responds with [`SdkError<DeletePricingPlanError>`](crate::operation::delete_pricing_plan::DeletePricingPlanError)
10 pub fn delete_pricing_plan(&self) -> crate::operation::delete_pricing_plan::builders::DeletePricingPlanFluentBuilder {
11 crate::operation::delete_pricing_plan::builders::DeletePricingPlanFluentBuilder::new(self.handle.clone())
12 }
13}