aws_sdk_devopsguru/client/start_cost_estimation.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 [`StartCostEstimation`](crate::operation::start_cost_estimation::builders::StartCostEstimationFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`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):<br>required: **true**<br><p>The collection of Amazon Web Services resources used to create a monthly DevOps Guru cost estimate.</p><br>
7 /// - [`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):<br>required: **false**<br><p>The idempotency token used to identify each cost estimate request.</p><br>
8 /// - On success, responds with [`StartCostEstimationOutput`](crate::operation::start_cost_estimation::StartCostEstimationOutput)
9 /// - On failure, responds with [`SdkError<StartCostEstimationError>`](crate::operation::start_cost_estimation::StartCostEstimationError)
10 pub fn start_cost_estimation(&self) -> crate::operation::start_cost_estimation::builders::StartCostEstimationFluentBuilder {
11 crate::operation::start_cost_estimation::builders::StartCostEstimationFluentBuilder::new(self.handle.clone())
12 }
13}