/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents a request to reorder the receipt rules within a receipt rule set.
* You use receipt rule sets to receive email with Amazon SES. For more
* information, see the Amazon
* SES Developer Guide.See Also:
AWS
* API Reference
The name of the receipt rule set to reorder.
*/ inline const Aws::String& GetRuleSetName() const{ return m_ruleSetName; } /** *The name of the receipt rule set to reorder.
*/ inline bool RuleSetNameHasBeenSet() const { return m_ruleSetNameHasBeenSet; } /** *The name of the receipt rule set to reorder.
*/ inline void SetRuleSetName(const Aws::String& value) { m_ruleSetNameHasBeenSet = true; m_ruleSetName = value; } /** *The name of the receipt rule set to reorder.
*/ inline void SetRuleSetName(Aws::String&& value) { m_ruleSetNameHasBeenSet = true; m_ruleSetName = std::move(value); } /** *The name of the receipt rule set to reorder.
*/ inline void SetRuleSetName(const char* value) { m_ruleSetNameHasBeenSet = true; m_ruleSetName.assign(value); } /** *The name of the receipt rule set to reorder.
*/ inline ReorderReceiptRuleSetRequest& WithRuleSetName(const Aws::String& value) { SetRuleSetName(value); return *this;} /** *The name of the receipt rule set to reorder.
*/ inline ReorderReceiptRuleSetRequest& WithRuleSetName(Aws::String&& value) { SetRuleSetName(std::move(value)); return *this;} /** *The name of the receipt rule set to reorder.
*/ inline ReorderReceiptRuleSetRequest& WithRuleSetName(const char* value) { SetRuleSetName(value); return *this;} /** *A list of the specified receipt rule set's receipt rules in the order that * you want to put them.
*/ inline const Aws::VectorA list of the specified receipt rule set's receipt rules in the order that * you want to put them.
*/ inline bool RuleNamesHasBeenSet() const { return m_ruleNamesHasBeenSet; } /** *A list of the specified receipt rule set's receipt rules in the order that * you want to put them.
*/ inline void SetRuleNames(const Aws::VectorA list of the specified receipt rule set's receipt rules in the order that * you want to put them.
*/ inline void SetRuleNames(Aws::VectorA list of the specified receipt rule set's receipt rules in the order that * you want to put them.
*/ inline ReorderReceiptRuleSetRequest& WithRuleNames(const Aws::VectorA list of the specified receipt rule set's receipt rules in the order that * you want to put them.
*/ inline ReorderReceiptRuleSetRequest& WithRuleNames(Aws::VectorA list of the specified receipt rule set's receipt rules in the order that * you want to put them.
*/ inline ReorderReceiptRuleSetRequest& AddRuleNames(const Aws::String& value) { m_ruleNamesHasBeenSet = true; m_ruleNames.push_back(value); return *this; } /** *A list of the specified receipt rule set's receipt rules in the order that * you want to put them.
*/ inline ReorderReceiptRuleSetRequest& AddRuleNames(Aws::String&& value) { m_ruleNamesHasBeenSet = true; m_ruleNames.push_back(std::move(value)); return *this; } /** *A list of the specified receipt rule set's receipt rules in the order that * you want to put them.
*/ inline ReorderReceiptRuleSetRequest& AddRuleNames(const char* value) { m_ruleNamesHasBeenSet = true; m_ruleNames.push_back(value); return *this; } private: Aws::String m_ruleSetName; bool m_ruleSetNameHasBeenSet = false; Aws::Vector