/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The current refresh status of a Trusted Advisor check.See
* Also:
AWS
* API Reference
The current refresh status for a check, including the amount of time until * the check is eligible for refresh.
*/ inline const TrustedAdvisorCheckRefreshStatus& GetStatus() const{ return m_status; } /** *The current refresh status for a check, including the amount of time until * the check is eligible for refresh.
*/ inline void SetStatus(const TrustedAdvisorCheckRefreshStatus& value) { m_status = value; } /** *The current refresh status for a check, including the amount of time until * the check is eligible for refresh.
*/ inline void SetStatus(TrustedAdvisorCheckRefreshStatus&& value) { m_status = std::move(value); } /** *The current refresh status for a check, including the amount of time until * the check is eligible for refresh.
*/ inline RefreshTrustedAdvisorCheckResult& WithStatus(const TrustedAdvisorCheckRefreshStatus& value) { SetStatus(value); return *this;} /** *The current refresh status for a check, including the amount of time until * the check is eligible for refresh.
*/ inline RefreshTrustedAdvisorCheckResult& WithStatus(TrustedAdvisorCheckRefreshStatus&& value) { SetStatus(std::move(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 RefreshTrustedAdvisorCheckResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline RefreshTrustedAdvisorCheckResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline RefreshTrustedAdvisorCheckResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: TrustedAdvisorCheckRefreshStatus m_status; Aws::String m_requestId; }; } // namespace Model } // namespace Support } // namespace Aws