/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include DisableGatewayOutputSee Also:
AWS
* API Reference
The unique Amazon Resource Name (ARN) of the disabled gateway.
*/ inline const Aws::String& GetGatewayARN() const{ return m_gatewayARN; } /** *The unique Amazon Resource Name (ARN) of the disabled gateway.
*/ inline void SetGatewayARN(const Aws::String& value) { m_gatewayARN = value; } /** *The unique Amazon Resource Name (ARN) of the disabled gateway.
*/ inline void SetGatewayARN(Aws::String&& value) { m_gatewayARN = std::move(value); } /** *The unique Amazon Resource Name (ARN) of the disabled gateway.
*/ inline void SetGatewayARN(const char* value) { m_gatewayARN.assign(value); } /** *The unique Amazon Resource Name (ARN) of the disabled gateway.
*/ inline DisableGatewayResult& WithGatewayARN(const Aws::String& value) { SetGatewayARN(value); return *this;} /** *The unique Amazon Resource Name (ARN) of the disabled gateway.
*/ inline DisableGatewayResult& WithGatewayARN(Aws::String&& value) { SetGatewayARN(std::move(value)); return *this;} /** *The unique Amazon Resource Name (ARN) of the disabled gateway.
*/ inline DisableGatewayResult& WithGatewayARN(const char* value) { SetGatewayARN(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline DisableGatewayResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DisableGatewayResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DisableGatewayResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_gatewayARN; Aws::String m_requestId; }; } // namespace Model } // namespace StorageGateway } // namespace Aws