aws-sdk-location 0.26.0

AWS SDK for Amazon Location Service
Documentation
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 [`DeleteRouteCalculator`](crate::operation::delete_route_calculator::builders::DeleteRouteCalculatorFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`calculator_name(impl Into<String>)`](crate::operation::delete_route_calculator::builders::DeleteRouteCalculatorFluentBuilder::calculator_name) / [`set_calculator_name(Option<String>)`](crate::operation::delete_route_calculator::builders::DeleteRouteCalculatorFluentBuilder::set_calculator_name): <p>The name of the route calculator resource to be deleted.</p>
    /// - On success, responds with [`DeleteRouteCalculatorOutput`](crate::operation::delete_route_calculator::DeleteRouteCalculatorOutput)
    /// - On failure, responds with [`SdkError<DeleteRouteCalculatorError>`](crate::operation::delete_route_calculator::DeleteRouteCalculatorError)
    pub fn delete_route_calculator(
        &self,
    ) -> crate::operation::delete_route_calculator::builders::DeleteRouteCalculatorFluentBuilder
    {
        crate::operation::delete_route_calculator::builders::DeleteRouteCalculatorFluentBuilder::new(
            self.handle.clone(),
        )
    }
}