aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/ServerSideEncryptionRule.h
diff options
context:
space:
mode:
authorDevtools Arcadia <arcadia-devtools@yandex-team.ru>2022-02-07 18:08:42 +0300
committerDevtools Arcadia <arcadia-devtools@mous.vla.yp-c.yandex.net>2022-02-07 18:08:42 +0300
commit1110808a9d39d4b808aef724c861a2e1a38d2a69 (patch)
treee26c9fed0de5d9873cce7e00bc214573dc2195b7 /contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/ServerSideEncryptionRule.h
downloadydb-1110808a9d39d4b808aef724c861a2e1a38d2a69.tar.gz
intermediate changes
ref:cde9a383711a11544ce7e107a78147fb96cc4029
Diffstat (limited to 'contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/ServerSideEncryptionRule.h')
-rw-r--r--contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/ServerSideEncryptionRule.h139
1 files changed, 139 insertions, 0 deletions
diff --git a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/ServerSideEncryptionRule.h b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/ServerSideEncryptionRule.h
new file mode 100644
index 0000000000..75505b8a52
--- /dev/null
+++ b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/ServerSideEncryptionRule.h
@@ -0,0 +1,139 @@
+/**
+ * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
+ * SPDX-License-Identifier: Apache-2.0.
+ */
+
+#pragma once
+#include <aws/s3/S3_EXPORTS.h>
+#include <aws/s3/model/ServerSideEncryptionByDefault.h>
+#include <utility>
+
+namespace Aws
+{
+namespace Utils
+{
+namespace Xml
+{
+ class XmlNode;
+} // namespace Xml
+} // namespace Utils
+namespace S3
+{
+namespace Model
+{
+
+ /**
+ * <p>Specifies the default server-side encryption configuration.</p><p><h3>See
+ * Also:</h3> <a
+ * href="http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/ServerSideEncryptionRule">AWS
+ * API Reference</a></p>
+ */
+ class AWS_S3_API ServerSideEncryptionRule
+ {
+ public:
+ ServerSideEncryptionRule();
+ ServerSideEncryptionRule(const Aws::Utils::Xml::XmlNode& xmlNode);
+ ServerSideEncryptionRule& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
+
+ void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const;
+
+
+ /**
+ * <p>Specifies the default server-side encryption to apply to new objects in the
+ * bucket. If a PUT Object request doesn't specify any server-side encryption, this
+ * default encryption will be applied.</p>
+ */
+ inline const ServerSideEncryptionByDefault& GetApplyServerSideEncryptionByDefault() const{ return m_applyServerSideEncryptionByDefault; }
+
+ /**
+ * <p>Specifies the default server-side encryption to apply to new objects in the
+ * bucket. If a PUT Object request doesn't specify any server-side encryption, this
+ * default encryption will be applied.</p>
+ */
+ inline bool ApplyServerSideEncryptionByDefaultHasBeenSet() const { return m_applyServerSideEncryptionByDefaultHasBeenSet; }
+
+ /**
+ * <p>Specifies the default server-side encryption to apply to new objects in the
+ * bucket. If a PUT Object request doesn't specify any server-side encryption, this
+ * default encryption will be applied.</p>
+ */
+ inline void SetApplyServerSideEncryptionByDefault(const ServerSideEncryptionByDefault& value) { m_applyServerSideEncryptionByDefaultHasBeenSet = true; m_applyServerSideEncryptionByDefault = value; }
+
+ /**
+ * <p>Specifies the default server-side encryption to apply to new objects in the
+ * bucket. If a PUT Object request doesn't specify any server-side encryption, this
+ * default encryption will be applied.</p>
+ */
+ inline void SetApplyServerSideEncryptionByDefault(ServerSideEncryptionByDefault&& value) { m_applyServerSideEncryptionByDefaultHasBeenSet = true; m_applyServerSideEncryptionByDefault = std::move(value); }
+
+ /**
+ * <p>Specifies the default server-side encryption to apply to new objects in the
+ * bucket. If a PUT Object request doesn't specify any server-side encryption, this
+ * default encryption will be applied.</p>
+ */
+ inline ServerSideEncryptionRule& WithApplyServerSideEncryptionByDefault(const ServerSideEncryptionByDefault& value) { SetApplyServerSideEncryptionByDefault(value); return *this;}
+
+ /**
+ * <p>Specifies the default server-side encryption to apply to new objects in the
+ * bucket. If a PUT Object request doesn't specify any server-side encryption, this
+ * default encryption will be applied.</p>
+ */
+ inline ServerSideEncryptionRule& WithApplyServerSideEncryptionByDefault(ServerSideEncryptionByDefault&& value) { SetApplyServerSideEncryptionByDefault(std::move(value)); return *this;}
+
+
+ /**
+ * <p>Specifies whether Amazon S3 should use an S3 Bucket Key with server-side
+ * encryption using KMS (SSE-KMS) for new objects in the bucket. Existing objects
+ * are not affected. Setting the <code>BucketKeyEnabled</code> element to
+ * <code>true</code> causes Amazon S3 to use an S3 Bucket Key. By default, S3
+ * Bucket Key is not enabled.</p> <p>For more information, see <a
+ * href="https://docs.aws.amazon.com/AmazonS3/latest/dev/bucket-key.html">Amazon S3
+ * Bucket Keys</a> in the <i>Amazon Simple Storage Service Developer Guide</i>.</p>
+ */
+ inline bool GetBucketKeyEnabled() const{ return m_bucketKeyEnabled; }
+
+ /**
+ * <p>Specifies whether Amazon S3 should use an S3 Bucket Key with server-side
+ * encryption using KMS (SSE-KMS) for new objects in the bucket. Existing objects
+ * are not affected. Setting the <code>BucketKeyEnabled</code> element to
+ * <code>true</code> causes Amazon S3 to use an S3 Bucket Key. By default, S3
+ * Bucket Key is not enabled.</p> <p>For more information, see <a
+ * href="https://docs.aws.amazon.com/AmazonS3/latest/dev/bucket-key.html">Amazon S3
+ * Bucket Keys</a> in the <i>Amazon Simple Storage Service Developer Guide</i>.</p>
+ */
+ inline bool BucketKeyEnabledHasBeenSet() const { return m_bucketKeyEnabledHasBeenSet; }
+
+ /**
+ * <p>Specifies whether Amazon S3 should use an S3 Bucket Key with server-side
+ * encryption using KMS (SSE-KMS) for new objects in the bucket. Existing objects
+ * are not affected. Setting the <code>BucketKeyEnabled</code> element to
+ * <code>true</code> causes Amazon S3 to use an S3 Bucket Key. By default, S3
+ * Bucket Key is not enabled.</p> <p>For more information, see <a
+ * href="https://docs.aws.amazon.com/AmazonS3/latest/dev/bucket-key.html">Amazon S3
+ * Bucket Keys</a> in the <i>Amazon Simple Storage Service Developer Guide</i>.</p>
+ */
+ inline void SetBucketKeyEnabled(bool value) { m_bucketKeyEnabledHasBeenSet = true; m_bucketKeyEnabled = value; }
+
+ /**
+ * <p>Specifies whether Amazon S3 should use an S3 Bucket Key with server-side
+ * encryption using KMS (SSE-KMS) for new objects in the bucket. Existing objects
+ * are not affected. Setting the <code>BucketKeyEnabled</code> element to
+ * <code>true</code> causes Amazon S3 to use an S3 Bucket Key. By default, S3
+ * Bucket Key is not enabled.</p> <p>For more information, see <a
+ * href="https://docs.aws.amazon.com/AmazonS3/latest/dev/bucket-key.html">Amazon S3
+ * Bucket Keys</a> in the <i>Amazon Simple Storage Service Developer Guide</i>.</p>
+ */
+ inline ServerSideEncryptionRule& WithBucketKeyEnabled(bool value) { SetBucketKeyEnabled(value); return *this;}
+
+ private:
+
+ ServerSideEncryptionByDefault m_applyServerSideEncryptionByDefault;
+ bool m_applyServerSideEncryptionByDefaultHasBeenSet;
+
+ bool m_bucketKeyEnabled;
+ bool m_bucketKeyEnabledHasBeenSet;
+ };
+
+} // namespace Model
+} // namespace S3
+} // namespace Aws