/**
* 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 AccessAnalyzer
{
namespace Model
{
/**
* The response to the request.
See Also:
AWS
* API Reference
*/
class AWS_ACCESSANALYZER_API GetArchiveRuleResult
{
public:
GetArchiveRuleResult();
GetArchiveRuleResult(const Aws::AmazonWebServiceResult& result);
GetArchiveRuleResult& operator=(const Aws::AmazonWebServiceResult& result);
inline const ArchiveRuleSummary& GetArchiveRule() const{ return m_archiveRule; }
inline void SetArchiveRule(const ArchiveRuleSummary& value) { m_archiveRule = value; }
inline void SetArchiveRule(ArchiveRuleSummary&& value) { m_archiveRule = std::move(value); }
inline GetArchiveRuleResult& WithArchiveRule(const ArchiveRuleSummary& value) { SetArchiveRule(value); return *this;}
inline GetArchiveRuleResult& WithArchiveRule(ArchiveRuleSummary&& value) { SetArchiveRule(std::move(value)); return *this;}
private:
ArchiveRuleSummary m_archiveRule;
};
} // namespace Model
} // namespace AccessAnalyzer
} // namespace Aws