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 [`StartCostEstimation`](crate::operation::start_cost_estimation::builders::StartCostEstimationFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`resource_collection(CostEstimationResourceCollectionFilter)`](crate::operation::start_cost_estimation::builders::StartCostEstimationFluentBuilder::resource_collection) / [`set_resource_collection(Option<CostEstimationResourceCollectionFilter>)`](crate::operation::start_cost_estimation::builders::StartCostEstimationFluentBuilder::set_resource_collection): <p>The collection of Amazon Web Services resources used to create a monthly DevOps Guru cost estimate.</p>
    ///   - [`client_token(impl Into<String>)`](crate::operation::start_cost_estimation::builders::StartCostEstimationFluentBuilder::client_token) / [`set_client_token(Option<String>)`](crate::operation::start_cost_estimation::builders::StartCostEstimationFluentBuilder::set_client_token): <p>The idempotency token used to identify each cost estimate request.</p>
    /// - On success, responds with [`StartCostEstimationOutput`](crate::operation::start_cost_estimation::StartCostEstimationOutput)
    /// - On failure, responds with [`SdkError<StartCostEstimationError>`](crate::operation::start_cost_estimation::StartCostEstimationError)
    pub fn start_cost_estimation(
        &self,
    ) -> crate::operation::start_cost_estimation::builders::StartCostEstimationFluentBuilder {
        crate::operation::start_cost_estimation::builders::StartCostEstimationFluentBuilder::new(
            self.handle.clone(),
        )
    }
}