/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace LocationService { namespace Model { /** */ class DescribeRouteCalculatorRequest : public LocationServiceRequest { public: AWS_LOCATIONSERVICE_API DescribeRouteCalculatorRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "DescribeRouteCalculator"; } AWS_LOCATIONSERVICE_API Aws::String SerializePayload() const override; /** *

The name of the route calculator resource.

*/ inline const Aws::String& GetCalculatorName() const{ return m_calculatorName; } /** *

The name of the route calculator resource.

*/ inline bool CalculatorNameHasBeenSet() const { return m_calculatorNameHasBeenSet; } /** *

The name of the route calculator resource.

*/ inline void SetCalculatorName(const Aws::String& value) { m_calculatorNameHasBeenSet = true; m_calculatorName = value; } /** *

The name of the route calculator resource.

*/ inline void SetCalculatorName(Aws::String&& value) { m_calculatorNameHasBeenSet = true; m_calculatorName = std::move(value); } /** *

The name of the route calculator resource.

*/ inline void SetCalculatorName(const char* value) { m_calculatorNameHasBeenSet = true; m_calculatorName.assign(value); } /** *

The name of the route calculator resource.

*/ inline DescribeRouteCalculatorRequest& WithCalculatorName(const Aws::String& value) { SetCalculatorName(value); return *this;} /** *

The name of the route calculator resource.

*/ inline DescribeRouteCalculatorRequest& WithCalculatorName(Aws::String&& value) { SetCalculatorName(std::move(value)); return *this;} /** *

The name of the route calculator resource.

*/ inline DescribeRouteCalculatorRequest& WithCalculatorName(const char* value) { SetCalculatorName(value); return *this;} private: Aws::String m_calculatorName; bool m_calculatorNameHasBeenSet = false; }; } // namespace Model } // namespace LocationService } // namespace Aws