156 lines
4.9 KiB
C++
156 lines
4.9 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/accessanalyzer/AccessAnalyzer_EXPORTS.h>
|
|
#include <aws/core/utils/memory/stl/AWSMap.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <aws/accessanalyzer/model/Criterion.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
class JsonView;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace AccessAnalyzer
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
* <p>An criterion statement in an archive rule. Each archive rule may have
|
|
* multiple criteria.</p><p><h3>See Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/accessanalyzer-2019-11-01/InlineArchiveRule">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_ACCESSANALYZER_API InlineArchiveRule
|
|
{
|
|
public:
|
|
InlineArchiveRule();
|
|
InlineArchiveRule(Aws::Utils::Json::JsonView jsonValue);
|
|
InlineArchiveRule& operator=(Aws::Utils::Json::JsonView jsonValue);
|
|
Aws::Utils::Json::JsonValue Jsonize() const;
|
|
|
|
|
|
/**
|
|
* <p>The condition and values for a criterion.</p>
|
|
*/
|
|
inline const Aws::Map<Aws::String, Criterion>& GetFilter() const{ return m_filter; }
|
|
|
|
/**
|
|
* <p>The condition and values for a criterion.</p>
|
|
*/
|
|
inline bool FilterHasBeenSet() const { return m_filterHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The condition and values for a criterion.</p>
|
|
*/
|
|
inline void SetFilter(const Aws::Map<Aws::String, Criterion>& value) { m_filterHasBeenSet = true; m_filter = value; }
|
|
|
|
/**
|
|
* <p>The condition and values for a criterion.</p>
|
|
*/
|
|
inline void SetFilter(Aws::Map<Aws::String, Criterion>&& value) { m_filterHasBeenSet = true; m_filter = std::move(value); }
|
|
|
|
/**
|
|
* <p>The condition and values for a criterion.</p>
|
|
*/
|
|
inline InlineArchiveRule& WithFilter(const Aws::Map<Aws::String, Criterion>& value) { SetFilter(value); return *this;}
|
|
|
|
/**
|
|
* <p>The condition and values for a criterion.</p>
|
|
*/
|
|
inline InlineArchiveRule& WithFilter(Aws::Map<Aws::String, Criterion>&& value) { SetFilter(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The condition and values for a criterion.</p>
|
|
*/
|
|
inline InlineArchiveRule& AddFilter(const Aws::String& key, const Criterion& value) { m_filterHasBeenSet = true; m_filter.emplace(key, value); return *this; }
|
|
|
|
/**
|
|
* <p>The condition and values for a criterion.</p>
|
|
*/
|
|
inline InlineArchiveRule& AddFilter(Aws::String&& key, const Criterion& value) { m_filterHasBeenSet = true; m_filter.emplace(std::move(key), value); return *this; }
|
|
|
|
/**
|
|
* <p>The condition and values for a criterion.</p>
|
|
*/
|
|
inline InlineArchiveRule& AddFilter(const Aws::String& key, Criterion&& value) { m_filterHasBeenSet = true; m_filter.emplace(key, std::move(value)); return *this; }
|
|
|
|
/**
|
|
* <p>The condition and values for a criterion.</p>
|
|
*/
|
|
inline InlineArchiveRule& AddFilter(Aws::String&& key, Criterion&& value) { m_filterHasBeenSet = true; m_filter.emplace(std::move(key), std::move(value)); return *this; }
|
|
|
|
/**
|
|
* <p>The condition and values for a criterion.</p>
|
|
*/
|
|
inline InlineArchiveRule& AddFilter(const char* key, Criterion&& value) { m_filterHasBeenSet = true; m_filter.emplace(key, std::move(value)); return *this; }
|
|
|
|
/**
|
|
* <p>The condition and values for a criterion.</p>
|
|
*/
|
|
inline InlineArchiveRule& AddFilter(const char* key, const Criterion& value) { m_filterHasBeenSet = true; m_filter.emplace(key, value); return *this; }
|
|
|
|
|
|
/**
|
|
* <p>The name of the rule.</p>
|
|
*/
|
|
inline const Aws::String& GetRuleName() const{ return m_ruleName; }
|
|
|
|
/**
|
|
* <p>The name of the rule.</p>
|
|
*/
|
|
inline bool RuleNameHasBeenSet() const { return m_ruleNameHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The name of the rule.</p>
|
|
*/
|
|
inline void SetRuleName(const Aws::String& value) { m_ruleNameHasBeenSet = true; m_ruleName = value; }
|
|
|
|
/**
|
|
* <p>The name of the rule.</p>
|
|
*/
|
|
inline void SetRuleName(Aws::String&& value) { m_ruleNameHasBeenSet = true; m_ruleName = std::move(value); }
|
|
|
|
/**
|
|
* <p>The name of the rule.</p>
|
|
*/
|
|
inline void SetRuleName(const char* value) { m_ruleNameHasBeenSet = true; m_ruleName.assign(value); }
|
|
|
|
/**
|
|
* <p>The name of the rule.</p>
|
|
*/
|
|
inline InlineArchiveRule& WithRuleName(const Aws::String& value) { SetRuleName(value); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the rule.</p>
|
|
*/
|
|
inline InlineArchiveRule& WithRuleName(Aws::String&& value) { SetRuleName(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the rule.</p>
|
|
*/
|
|
inline InlineArchiveRule& WithRuleName(const char* value) { SetRuleName(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::Map<Aws::String, Criterion> m_filter;
|
|
bool m_filterHasBeenSet;
|
|
|
|
Aws::String m_ruleName;
|
|
bool m_ruleNameHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace AccessAnalyzer
|
|
} // namespace Aws
|