/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include <aws/iotsitewise/IoTSiteWise_EXPORTS.h> #include <aws/iotsitewise/IoTSiteWiseRequest.h> #include <aws/core/utils/memory/stl/AWSString.h> #include <utility> namespace Aws { namespace IoTSiteWise { namespace Model { /** */ class DeleteGatewayRequest : public IoTSiteWiseRequest { public: AWS_IOTSITEWISE_API DeleteGatewayRequest(); // 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 "DeleteGateway"; } AWS_IOTSITEWISE_API Aws::String SerializePayload() const override; /** * <p>The ID of the gateway to delete.</p> */ inline const Aws::String& GetGatewayId() const{ return m_gatewayId; } /** * <p>The ID of the gateway to delete.</p> */ inline bool GatewayIdHasBeenSet() const { return m_gatewayIdHasBeenSet; } /** * <p>The ID of the gateway to delete.</p> */ inline void SetGatewayId(const Aws::String& value) { m_gatewayIdHasBeenSet = true; m_gatewayId = value; } /** * <p>The ID of the gateway to delete.</p> */ inline void SetGatewayId(Aws::String&& value) { m_gatewayIdHasBeenSet = true; m_gatewayId = std::move(value); } /** * <p>The ID of the gateway to delete.</p> */ inline void SetGatewayId(const char* value) { m_gatewayIdHasBeenSet = true; m_gatewayId.assign(value); } /** * <p>The ID of the gateway to delete.</p> */ inline DeleteGatewayRequest& WithGatewayId(const Aws::String& value) { SetGatewayId(value); return *this;} /** * <p>The ID of the gateway to delete.</p> */ inline DeleteGatewayRequest& WithGatewayId(Aws::String&& value) { SetGatewayId(std::move(value)); return *this;} /** * <p>The ID of the gateway to delete.</p> */ inline DeleteGatewayRequest& WithGatewayId(const char* value) { SetGatewayId(value); return *this;} private: Aws::String m_gatewayId; bool m_gatewayIdHasBeenSet = false; }; } // namespace Model } // namespace IoTSiteWise } // namespace Aws