/** * 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 Http { class URI; } //namespace Http namespace IoTRoboRunner { namespace Model { /** */ class GetWorkerFleetRequest : public IoTRoboRunnerRequest { public: AWS_IOTROBORUNNER_API GetWorkerFleetRequest(); // 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 "GetWorkerFleet"; } AWS_IOTROBORUNNER_API Aws::String SerializePayload() const override; AWS_IOTROBORUNNER_API void AddQueryStringParameters(Aws::Http::URI& uri) const override; inline const Aws::String& GetId() const{ return m_id; } inline bool IdHasBeenSet() const { return m_idHasBeenSet; } inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; } inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); } inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); } inline GetWorkerFleetRequest& WithId(const Aws::String& value) { SetId(value); return *this;} inline GetWorkerFleetRequest& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;} inline GetWorkerFleetRequest& WithId(const char* value) { SetId(value); return *this;} private: Aws::String m_id; bool m_idHasBeenSet = false; }; } // namespace Model } // namespace IoTRoboRunner } // namespace Aws