/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include UpdateNFSFileShareOutputSee Also:
AWS
* API Reference
The Amazon Resource Name (ARN) of the updated file share.
*/ inline const Aws::String& GetFileShareARN() const{ return m_fileShareARN; } /** *The Amazon Resource Name (ARN) of the updated file share.
*/ inline void SetFileShareARN(const Aws::String& value) { m_fileShareARN = value; } /** *The Amazon Resource Name (ARN) of the updated file share.
*/ inline void SetFileShareARN(Aws::String&& value) { m_fileShareARN = std::move(value); } /** *The Amazon Resource Name (ARN) of the updated file share.
*/ inline void SetFileShareARN(const char* value) { m_fileShareARN.assign(value); } /** *The Amazon Resource Name (ARN) of the updated file share.
*/ inline UpdateNFSFileShareResult& WithFileShareARN(const Aws::String& value) { SetFileShareARN(value); return *this;} /** *The Amazon Resource Name (ARN) of the updated file share.
*/ inline UpdateNFSFileShareResult& WithFileShareARN(Aws::String&& value) { SetFileShareARN(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the updated file share.
*/ inline UpdateNFSFileShareResult& WithFileShareARN(const char* value) { SetFileShareARN(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 UpdateNFSFileShareResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline UpdateNFSFileShareResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline UpdateNFSFileShareResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_fileShareARN; Aws::String m_requestId; }; } // namespace Model } // namespace StorageGateway } // namespace Aws