/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Utils { namespace Xml { class XmlNode; } // namespace Xml } // namespace Utils namespace S3Control { namespace Model { /** *

A container that describes additional filters for identifying the source * objects that you want to replicate. You can choose to enable or disable the * replication of these objects.

See Also:

AWS * API Reference

*/ class SourceSelectionCriteria { public: AWS_S3CONTROL_API SourceSelectionCriteria(); AWS_S3CONTROL_API SourceSelectionCriteria(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_S3CONTROL_API SourceSelectionCriteria& operator=(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_S3CONTROL_API void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const; /** *

A filter that you can use to select Amazon S3 objects that are encrypted with * server-side encryption by using Key Management Service (KMS) keys. If you * include SourceSelectionCriteria in the replication configuration, * this element is required.

This is not supported by Amazon S3 on * Outposts buckets.

*/ inline const SseKmsEncryptedObjects& GetSseKmsEncryptedObjects() const{ return m_sseKmsEncryptedObjects; } /** *

A filter that you can use to select Amazon S3 objects that are encrypted with * server-side encryption by using Key Management Service (KMS) keys. If you * include SourceSelectionCriteria in the replication configuration, * this element is required.

This is not supported by Amazon S3 on * Outposts buckets.

*/ inline bool SseKmsEncryptedObjectsHasBeenSet() const { return m_sseKmsEncryptedObjectsHasBeenSet; } /** *

A filter that you can use to select Amazon S3 objects that are encrypted with * server-side encryption by using Key Management Service (KMS) keys. If you * include SourceSelectionCriteria in the replication configuration, * this element is required.

This is not supported by Amazon S3 on * Outposts buckets.

*/ inline void SetSseKmsEncryptedObjects(const SseKmsEncryptedObjects& value) { m_sseKmsEncryptedObjectsHasBeenSet = true; m_sseKmsEncryptedObjects = value; } /** *

A filter that you can use to select Amazon S3 objects that are encrypted with * server-side encryption by using Key Management Service (KMS) keys. If you * include SourceSelectionCriteria in the replication configuration, * this element is required.

This is not supported by Amazon S3 on * Outposts buckets.

*/ inline void SetSseKmsEncryptedObjects(SseKmsEncryptedObjects&& value) { m_sseKmsEncryptedObjectsHasBeenSet = true; m_sseKmsEncryptedObjects = std::move(value); } /** *

A filter that you can use to select Amazon S3 objects that are encrypted with * server-side encryption by using Key Management Service (KMS) keys. If you * include SourceSelectionCriteria in the replication configuration, * this element is required.

This is not supported by Amazon S3 on * Outposts buckets.

*/ inline SourceSelectionCriteria& WithSseKmsEncryptedObjects(const SseKmsEncryptedObjects& value) { SetSseKmsEncryptedObjects(value); return *this;} /** *

A filter that you can use to select Amazon S3 objects that are encrypted with * server-side encryption by using Key Management Service (KMS) keys. If you * include SourceSelectionCriteria in the replication configuration, * this element is required.

This is not supported by Amazon S3 on * Outposts buckets.

*/ inline SourceSelectionCriteria& WithSseKmsEncryptedObjects(SseKmsEncryptedObjects&& value) { SetSseKmsEncryptedObjects(std::move(value)); return *this;} /** *

A filter that you can use to specify whether replica modification sync is * enabled. S3 on Outposts replica modification sync can help you keep object * metadata synchronized between replicas and source objects. By default, S3 on * Outposts replicates metadata from the source objects to the replicas only. When * replica modification sync is enabled, S3 on Outposts replicates metadata changes * made to the replica copies back to the source object, making the replication * bidirectional.

To replicate object metadata modifications on replicas, * you can specify this element and set the Status of this element to * Enabled.

You must enable replica modification sync on * the source and destination buckets to replicate replica metadata changes between * the source and the replicas.

*/ inline const ReplicaModifications& GetReplicaModifications() const{ return m_replicaModifications; } /** *

A filter that you can use to specify whether replica modification sync is * enabled. S3 on Outposts replica modification sync can help you keep object * metadata synchronized between replicas and source objects. By default, S3 on * Outposts replicates metadata from the source objects to the replicas only. When * replica modification sync is enabled, S3 on Outposts replicates metadata changes * made to the replica copies back to the source object, making the replication * bidirectional.

To replicate object metadata modifications on replicas, * you can specify this element and set the Status of this element to * Enabled.

You must enable replica modification sync on * the source and destination buckets to replicate replica metadata changes between * the source and the replicas.

*/ inline bool ReplicaModificationsHasBeenSet() const { return m_replicaModificationsHasBeenSet; } /** *

A filter that you can use to specify whether replica modification sync is * enabled. S3 on Outposts replica modification sync can help you keep object * metadata synchronized between replicas and source objects. By default, S3 on * Outposts replicates metadata from the source objects to the replicas only. When * replica modification sync is enabled, S3 on Outposts replicates metadata changes * made to the replica copies back to the source object, making the replication * bidirectional.

To replicate object metadata modifications on replicas, * you can specify this element and set the Status of this element to * Enabled.

You must enable replica modification sync on * the source and destination buckets to replicate replica metadata changes between * the source and the replicas.

*/ inline void SetReplicaModifications(const ReplicaModifications& value) { m_replicaModificationsHasBeenSet = true; m_replicaModifications = value; } /** *

A filter that you can use to specify whether replica modification sync is * enabled. S3 on Outposts replica modification sync can help you keep object * metadata synchronized between replicas and source objects. By default, S3 on * Outposts replicates metadata from the source objects to the replicas only. When * replica modification sync is enabled, S3 on Outposts replicates metadata changes * made to the replica copies back to the source object, making the replication * bidirectional.

To replicate object metadata modifications on replicas, * you can specify this element and set the Status of this element to * Enabled.

You must enable replica modification sync on * the source and destination buckets to replicate replica metadata changes between * the source and the replicas.

*/ inline void SetReplicaModifications(ReplicaModifications&& value) { m_replicaModificationsHasBeenSet = true; m_replicaModifications = std::move(value); } /** *

A filter that you can use to specify whether replica modification sync is * enabled. S3 on Outposts replica modification sync can help you keep object * metadata synchronized between replicas and source objects. By default, S3 on * Outposts replicates metadata from the source objects to the replicas only. When * replica modification sync is enabled, S3 on Outposts replicates metadata changes * made to the replica copies back to the source object, making the replication * bidirectional.

To replicate object metadata modifications on replicas, * you can specify this element and set the Status of this element to * Enabled.

You must enable replica modification sync on * the source and destination buckets to replicate replica metadata changes between * the source and the replicas.

*/ inline SourceSelectionCriteria& WithReplicaModifications(const ReplicaModifications& value) { SetReplicaModifications(value); return *this;} /** *

A filter that you can use to specify whether replica modification sync is * enabled. S3 on Outposts replica modification sync can help you keep object * metadata synchronized between replicas and source objects. By default, S3 on * Outposts replicates metadata from the source objects to the replicas only. When * replica modification sync is enabled, S3 on Outposts replicates metadata changes * made to the replica copies back to the source object, making the replication * bidirectional.

To replicate object metadata modifications on replicas, * you can specify this element and set the Status of this element to * Enabled.

You must enable replica modification sync on * the source and destination buckets to replicate replica metadata changes between * the source and the replicas.

*/ inline SourceSelectionCriteria& WithReplicaModifications(ReplicaModifications&& value) { SetReplicaModifications(std::move(value)); return *this;} private: SseKmsEncryptedObjects m_sseKmsEncryptedObjects; bool m_sseKmsEncryptedObjectsHasBeenSet = false; ReplicaModifications m_replicaModifications; bool m_replicaModificationsHasBeenSet = false; }; } // namespace Model } // namespace S3Control } // namespace Aws