/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A container for one or more replication rules. A replication configuration
* must have at least one rule and you can add up to 100 rules. The maximum size of
* a replication configuration is 128 KB.See Also:
AWS
* API Reference
The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) * role that S3 on Outposts assumes when replicating objects. For information about * S3 replication on Outposts configuration, see Setting * up replication in the Amazon S3 User Guide.
*/ inline const Aws::String& GetRole() const{ return m_role; } /** *The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) * role that S3 on Outposts assumes when replicating objects. For information about * S3 replication on Outposts configuration, see Setting * up replication in the Amazon S3 User Guide.
*/ inline bool RoleHasBeenSet() const { return m_roleHasBeenSet; } /** *The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) * role that S3 on Outposts assumes when replicating objects. For information about * S3 replication on Outposts configuration, see Setting * up replication in the Amazon S3 User Guide.
*/ inline void SetRole(const Aws::String& value) { m_roleHasBeenSet = true; m_role = value; } /** *The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) * role that S3 on Outposts assumes when replicating objects. For information about * S3 replication on Outposts configuration, see Setting * up replication in the Amazon S3 User Guide.
*/ inline void SetRole(Aws::String&& value) { m_roleHasBeenSet = true; m_role = std::move(value); } /** *The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) * role that S3 on Outposts assumes when replicating objects. For information about * S3 replication on Outposts configuration, see Setting * up replication in the Amazon S3 User Guide.
*/ inline void SetRole(const char* value) { m_roleHasBeenSet = true; m_role.assign(value); } /** *The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) * role that S3 on Outposts assumes when replicating objects. For information about * S3 replication on Outposts configuration, see Setting * up replication in the Amazon S3 User Guide.
*/ inline ReplicationConfiguration& WithRole(const Aws::String& value) { SetRole(value); return *this;} /** *The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) * role that S3 on Outposts assumes when replicating objects. For information about * S3 replication on Outposts configuration, see Setting * up replication in the Amazon S3 User Guide.
*/ inline ReplicationConfiguration& WithRole(Aws::String&& value) { SetRole(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) * role that S3 on Outposts assumes when replicating objects. For information about * S3 replication on Outposts configuration, see Setting * up replication in the Amazon S3 User Guide.
*/ 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 an array of 100 rules at the most. *
*/ inline const Aws::VectorA container for one or more replication rules. A replication configuration * must have at least one rule and can contain an array of 100 rules at the most. *
*/ inline bool RulesHasBeenSet() const { return m_rulesHasBeenSet; } /** *A container for one or more replication rules. A replication configuration * must have at least one rule and can contain an array of 100 rules at the most. *
*/ inline void SetRules(const Aws::VectorA container for one or more replication rules. A replication configuration * must have at least one rule and can contain an array of 100 rules at the most. *
*/ inline void SetRules(Aws::VectorA container for one or more replication rules. A replication configuration * must have at least one rule and can contain an array of 100 rules at the most. *
*/ inline ReplicationConfiguration& WithRules(const Aws::VectorA container for one or more replication rules. A replication configuration * must have at least one rule and can contain an array of 100 rules at the most. *
*/ inline ReplicationConfiguration& WithRules(Aws::VectorA container for one or more replication rules. A replication configuration * must have at least one rule and can contain an array of 100 rules at the most. *
*/ inline ReplicationConfiguration& AddRules(const ReplicationRule& value) { m_rulesHasBeenSet = true; m_rules.push_back(value); return *this; } /** *A container for one or more replication rules. A replication configuration * must have at least one rule and can contain an array of 100 rules at the most. *
*/ 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