/**
* 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
{
/**
* RefreshCacheOutput
See Also:
AWS
* API Reference
*/
class RefreshCacheResult
{
public:
AWS_STORAGEGATEWAY_API RefreshCacheResult();
AWS_STORAGEGATEWAY_API RefreshCacheResult(const Aws::AmazonWebServiceResult& result);
AWS_STORAGEGATEWAY_API RefreshCacheResult& operator=(const Aws::AmazonWebServiceResult& result);
inline const Aws::String& GetFileShareARN() const{ return m_fileShareARN; }
inline void SetFileShareARN(const Aws::String& value) { m_fileShareARN = value; }
inline void SetFileShareARN(Aws::String&& value) { m_fileShareARN = std::move(value); }
inline void SetFileShareARN(const char* value) { m_fileShareARN.assign(value); }
inline RefreshCacheResult& WithFileShareARN(const Aws::String& value) { SetFileShareARN(value); return *this;}
inline RefreshCacheResult& WithFileShareARN(Aws::String&& value) { SetFileShareARN(std::move(value)); return *this;}
inline RefreshCacheResult& WithFileShareARN(const char* value) { SetFileShareARN(value); return *this;}
inline const Aws::String& GetNotificationId() const{ return m_notificationId; }
inline void SetNotificationId(const Aws::String& value) { m_notificationId = value; }
inline void SetNotificationId(Aws::String&& value) { m_notificationId = std::move(value); }
inline void SetNotificationId(const char* value) { m_notificationId.assign(value); }
inline RefreshCacheResult& WithNotificationId(const Aws::String& value) { SetNotificationId(value); return *this;}
inline RefreshCacheResult& WithNotificationId(Aws::String&& value) { SetNotificationId(std::move(value)); return *this;}
inline RefreshCacheResult& WithNotificationId(const char* value) { SetNotificationId(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 RefreshCacheResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;}
inline RefreshCacheResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;}
inline RefreshCacheResult& WithRequestId(const char* value) { SetRequestId(value); return *this;}
private:
Aws::String m_fileShareARN;
Aws::String m_notificationId;
Aws::String m_requestId;
};
} // namespace Model
} // namespace StorageGateway
} // namespace Aws