/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace StorageGateway { namespace Model { /** *

DisableGatewayOutput

See Also:

AWS * API Reference

*/ class DisableGatewayResult { public: AWS_STORAGEGATEWAY_API DisableGatewayResult(); AWS_STORAGEGATEWAY_API DisableGatewayResult(const Aws::AmazonWebServiceResult& result); AWS_STORAGEGATEWAY_API DisableGatewayResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

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