/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A JSON object containing the Amazon Resource Name (ARN) of the gateway that
* was updated.See Also:
AWS
* API Reference
The name you configured for your gateway.
*/ inline const Aws::String& GetGatewayName() const{ return m_gatewayName; } /** *The name you configured for your gateway.
*/ inline void SetGatewayName(const Aws::String& value) { m_gatewayName = value; } /** *The name you configured for your gateway.
*/ inline void SetGatewayName(Aws::String&& value) { m_gatewayName = std::move(value); } /** *The name you configured for your gateway.
*/ inline void SetGatewayName(const char* value) { m_gatewayName.assign(value); } /** *The name you configured for your gateway.
*/ inline UpdateGatewayInformationResult& WithGatewayName(const Aws::String& value) { SetGatewayName(value); return *this;} /** *The name you configured for your gateway.
*/ inline UpdateGatewayInformationResult& WithGatewayName(Aws::String&& value) { SetGatewayName(std::move(value)); return *this;} /** *The name you configured for your gateway.
*/ inline UpdateGatewayInformationResult& WithGatewayName(const char* value) { SetGatewayName(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 UpdateGatewayInformationResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline UpdateGatewayInformationResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline UpdateGatewayInformationResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_gatewayARN; Aws::String m_gatewayName; Aws::String m_requestId; }; } // namespace Model } // namespace StorageGateway } // namespace Aws