/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include
#include
#include
#include
#include
namespace Aws
{
namespace Utils
{
namespace Xml
{
class XmlNode;
} // namespace Xml
} // namespace Utils
namespace S3
{
namespace Model
{
/**
* A container for replication rules. You can add up to 1,000 rules. The maximum
* size of a replication configuration is 2 MB.
See Also:
AWS
* API Reference
*/
class ReplicationConfiguration
{
public:
AWS_S3_API ReplicationConfiguration();
AWS_S3_API ReplicationConfiguration(const Aws::Utils::Xml::XmlNode& xmlNode);
AWS_S3_API ReplicationConfiguration& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
AWS_S3_API void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const;
///@{
/**
* The Amazon Resource Name (ARN) of the Identity and Access Management (IAM)
* role that Amazon S3 assumes when replicating objects. For more information, see
* How
* to Set Up Replication in the Amazon S3 User Guide.
*/
inline const Aws::String& GetRole() const{ return m_role; }
inline bool RoleHasBeenSet() const { return m_roleHasBeenSet; }
inline void SetRole(const Aws::String& value) { m_roleHasBeenSet = true; m_role = value; }
inline void SetRole(Aws::String&& value) { m_roleHasBeenSet = true; m_role = std::move(value); }
inline void SetRole(const char* value) { m_roleHasBeenSet = true; m_role.assign(value); }
inline ReplicationConfiguration& WithRole(const Aws::String& value) { SetRole(value); return *this;}
inline ReplicationConfiguration& WithRole(Aws::String&& value) { SetRole(std::move(value)); return *this;}
inline ReplicationConfiguration& WithRole(const char* value) { SetRole(value); return *this;}
///@}
///@{
/**
* A container for one or more replication rules. A replication configuration
* must have at least one rule and can contain a maximum of 1,000 rules.
*/
inline const Aws::Vector& GetRules() const{ return m_rules; }
inline bool RulesHasBeenSet() const { return m_rulesHasBeenSet; }
inline void SetRules(const Aws::Vector& value) { m_rulesHasBeenSet = true; m_rules = value; }
inline void SetRules(Aws::Vector&& value) { m_rulesHasBeenSet = true; m_rules = std::move(value); }
inline ReplicationConfiguration& WithRules(const Aws::Vector& value) { SetRules(value); return *this;}
inline ReplicationConfiguration& WithRules(Aws::Vector&& value) { SetRules(std::move(value)); return *this;}
inline ReplicationConfiguration& AddRules(const ReplicationRule& value) { m_rulesHasBeenSet = true; m_rules.push_back(value); return *this; }
inline ReplicationConfiguration& AddRules(ReplicationRule&& value) { m_rulesHasBeenSet = true; m_rules.push_back(std::move(value)); return *this; }
///@}
private:
Aws::String m_role;
bool m_roleHasBeenSet = false;
Aws::Vector m_rules;
bool m_rulesHasBeenSet = false;
};
} // namespace Model
} // namespace S3
} // namespace Aws