1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdatePricingPlan`](crate::operation::update_pricing_plan::builders::UpdatePricingPlanFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`pricing_mode(PricingMode)`](crate::operation::update_pricing_plan::builders::UpdatePricingPlanFluentBuilder::pricing_mode) / [`set_pricing_mode(Option<PricingMode>)`](crate::operation::update_pricing_plan::builders::UpdatePricingPlanFluentBuilder::set_pricing_mode): <p>The pricing mode.</p>
    ///   - [`bundle_names(Vec<String>)`](crate::operation::update_pricing_plan::builders::UpdatePricingPlanFluentBuilder::bundle_names) / [`set_bundle_names(Option<Vec<String>>)`](crate::operation::update_pricing_plan::builders::UpdatePricingPlanFluentBuilder::set_bundle_names): <p>The bundle names.</p>
    /// - On success, responds with [`UpdatePricingPlanOutput`](crate::operation::update_pricing_plan::UpdatePricingPlanOutput) with field(s):
    ///   - [`current_pricing_plan(Option<PricingPlan>)`](crate::operation::update_pricing_plan::UpdatePricingPlanOutput::current_pricing_plan): <p>Update the current pricing plan.</p>
    ///   - [`pending_pricing_plan(Option<PricingPlan>)`](crate::operation::update_pricing_plan::UpdatePricingPlanOutput::pending_pricing_plan): <p>Update the pending pricing plan.</p>
    /// - On failure, responds with [`SdkError<UpdatePricingPlanError>`](crate::operation::update_pricing_plan::UpdatePricingPlanError)
    pub fn update_pricing_plan(
        &self,
    ) -> crate::operation::update_pricing_plan::builders::UpdatePricingPlanFluentBuilder {
        crate::operation::update_pricing_plan::builders::UpdatePricingPlanFluentBuilder::new(
            self.handle.clone(),
        )
    }
}