diff options
author | dakovalkov <dakovalkov@yandex-team.com> | 2023-12-03 13:33:55 +0300 |
---|---|---|
committer | dakovalkov <dakovalkov@yandex-team.com> | 2023-12-03 14:04:39 +0300 |
commit | 2a718325637e5302334b6d0a6430f63168f8dbb3 (patch) | |
tree | 64be81080b7df9ec1d86d053a0c394ae53fcf1fe /contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/SourceSelectionCriteria.h | |
parent | e0d94a470142d95c3007e9c5d80380994940664a (diff) | |
download | ydb-2a718325637e5302334b6d0a6430f63168f8dbb3.tar.gz |
Update contrib/libs/aws-sdk-cpp to 1.11.37
Diffstat (limited to 'contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/SourceSelectionCriteria.h')
-rw-r--r-- | contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/SourceSelectionCriteria.h | 48 |
1 files changed, 27 insertions, 21 deletions
diff --git a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/SourceSelectionCriteria.h b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/SourceSelectionCriteria.h index 0395f9089b..619c115ad5 100644 --- a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/SourceSelectionCriteria.h +++ b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/SourceSelectionCriteria.h @@ -28,60 +28,66 @@ namespace Model * objects that you want to replicate. You can choose to enable or disable the * replication of these objects. Currently, Amazon S3 supports only the filter that * you can specify for objects created with server-side encryption using a customer - * master key (CMK) stored in AWS Key Management Service (SSE-KMS).</p><p><h3>See - * Also:</h3> <a + * managed key stored in Amazon Web Services Key Management Service + * (SSE-KMS).</p><p><h3>See Also:</h3> <a * href="http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/SourceSelectionCriteria">AWS * API Reference</a></p> */ - class AWS_S3_API SourceSelectionCriteria + class SourceSelectionCriteria { public: - SourceSelectionCriteria(); - SourceSelectionCriteria(const Aws::Utils::Xml::XmlNode& xmlNode); - SourceSelectionCriteria& operator=(const Aws::Utils::Xml::XmlNode& xmlNode); + AWS_S3_API SourceSelectionCriteria(); + AWS_S3_API SourceSelectionCriteria(const Aws::Utils::Xml::XmlNode& xmlNode); + AWS_S3_API SourceSelectionCriteria& operator=(const Aws::Utils::Xml::XmlNode& xmlNode); - void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const; + AWS_S3_API void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const; /** * <p> A container for filter information for the selection of Amazon S3 objects - * encrypted with AWS KMS. If you include <code>SourceSelectionCriteria</code> in - * the replication configuration, this element is required. </p> + * encrypted with Amazon Web Services KMS. If you include + * <code>SourceSelectionCriteria</code> in the replication configuration, this + * element is required. </p> */ inline const SseKmsEncryptedObjects& GetSseKmsEncryptedObjects() const{ return m_sseKmsEncryptedObjects; } /** * <p> A container for filter information for the selection of Amazon S3 objects - * encrypted with AWS KMS. If you include <code>SourceSelectionCriteria</code> in - * the replication configuration, this element is required. </p> + * encrypted with Amazon Web Services KMS. If you include + * <code>SourceSelectionCriteria</code> in the replication configuration, this + * element is required. </p> */ inline bool SseKmsEncryptedObjectsHasBeenSet() const { return m_sseKmsEncryptedObjectsHasBeenSet; } /** * <p> A container for filter information for the selection of Amazon S3 objects - * encrypted with AWS KMS. If you include <code>SourceSelectionCriteria</code> in - * the replication configuration, this element is required. </p> + * encrypted with Amazon Web Services KMS. If you include + * <code>SourceSelectionCriteria</code> in the replication configuration, this + * element is required. </p> */ inline void SetSseKmsEncryptedObjects(const SseKmsEncryptedObjects& value) { m_sseKmsEncryptedObjectsHasBeenSet = true; m_sseKmsEncryptedObjects = value; } /** * <p> A container for filter information for the selection of Amazon S3 objects - * encrypted with AWS KMS. If you include <code>SourceSelectionCriteria</code> in - * the replication configuration, this element is required. </p> + * encrypted with Amazon Web Services KMS. If you include + * <code>SourceSelectionCriteria</code> in the replication configuration, this + * element is required. </p> */ inline void SetSseKmsEncryptedObjects(SseKmsEncryptedObjects&& value) { m_sseKmsEncryptedObjectsHasBeenSet = true; m_sseKmsEncryptedObjects = std::move(value); } /** * <p> A container for filter information for the selection of Amazon S3 objects - * encrypted with AWS KMS. If you include <code>SourceSelectionCriteria</code> in - * the replication configuration, this element is required. </p> + * encrypted with Amazon Web Services KMS. If you include + * <code>SourceSelectionCriteria</code> in the replication configuration, this + * element is required. </p> */ inline SourceSelectionCriteria& WithSseKmsEncryptedObjects(const SseKmsEncryptedObjects& value) { SetSseKmsEncryptedObjects(value); return *this;} /** * <p> A container for filter information for the selection of Amazon S3 objects - * encrypted with AWS KMS. If you include <code>SourceSelectionCriteria</code> in - * the replication configuration, this element is required. </p> + * encrypted with Amazon Web Services KMS. If you include + * <code>SourceSelectionCriteria</code> in the replication configuration, this + * element is required. </p> */ inline SourceSelectionCriteria& WithSseKmsEncryptedObjects(SseKmsEncryptedObjects&& value) { SetSseKmsEncryptedObjects(std::move(value)); return *this;} @@ -161,10 +167,10 @@ namespace Model private: SseKmsEncryptedObjects m_sseKmsEncryptedObjects; - bool m_sseKmsEncryptedObjectsHasBeenSet; + bool m_sseKmsEncryptedObjectsHasBeenSet = false; ReplicaModifications m_replicaModifications; - bool m_replicaModificationsHasBeenSet; + bool m_replicaModificationsHasBeenSet = false; }; } // namespace Model |