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/SSEKMS.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/SSEKMS.h')
-rw-r--r-- | contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/SSEKMS.h | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/SSEKMS.h b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/SSEKMS.h index b7b1ac25be..eaae8f2319 100644 --- a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/SSEKMS.h +++ b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/SSEKMS.h @@ -28,68 +28,68 @@ namespace Model * href="http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/SSEKMS">AWS API * Reference</a></p> */ - class AWS_S3_API SSEKMS + class SSEKMS { public: - SSEKMS(); - SSEKMS(const Aws::Utils::Xml::XmlNode& xmlNode); - SSEKMS& operator=(const Aws::Utils::Xml::XmlNode& xmlNode); + AWS_S3_API SSEKMS(); + AWS_S3_API SSEKMS(const Aws::Utils::Xml::XmlNode& xmlNode); + AWS_S3_API SSEKMS& 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>Specifies the ID of the AWS Key Management Service (AWS KMS) symmetric - * customer managed customer master key (CMK) to use for encrypting inventory + * <p>Specifies the ID of the Amazon Web Services Key Management Service (Amazon + * Web Services KMS) symmetric customer managed key to use for encrypting inventory * reports.</p> */ inline const Aws::String& GetKeyId() const{ return m_keyId; } /** - * <p>Specifies the ID of the AWS Key Management Service (AWS KMS) symmetric - * customer managed customer master key (CMK) to use for encrypting inventory + * <p>Specifies the ID of the Amazon Web Services Key Management Service (Amazon + * Web Services KMS) symmetric customer managed key to use for encrypting inventory * reports.</p> */ inline bool KeyIdHasBeenSet() const { return m_keyIdHasBeenSet; } /** - * <p>Specifies the ID of the AWS Key Management Service (AWS KMS) symmetric - * customer managed customer master key (CMK) to use for encrypting inventory + * <p>Specifies the ID of the Amazon Web Services Key Management Service (Amazon + * Web Services KMS) symmetric customer managed key to use for encrypting inventory * reports.</p> */ inline void SetKeyId(const Aws::String& value) { m_keyIdHasBeenSet = true; m_keyId = value; } /** - * <p>Specifies the ID of the AWS Key Management Service (AWS KMS) symmetric - * customer managed customer master key (CMK) to use for encrypting inventory + * <p>Specifies the ID of the Amazon Web Services Key Management Service (Amazon + * Web Services KMS) symmetric customer managed key to use for encrypting inventory * reports.</p> */ inline void SetKeyId(Aws::String&& value) { m_keyIdHasBeenSet = true; m_keyId = std::move(value); } /** - * <p>Specifies the ID of the AWS Key Management Service (AWS KMS) symmetric - * customer managed customer master key (CMK) to use for encrypting inventory + * <p>Specifies the ID of the Amazon Web Services Key Management Service (Amazon + * Web Services KMS) symmetric customer managed key to use for encrypting inventory * reports.</p> */ inline void SetKeyId(const char* value) { m_keyIdHasBeenSet = true; m_keyId.assign(value); } /** - * <p>Specifies the ID of the AWS Key Management Service (AWS KMS) symmetric - * customer managed customer master key (CMK) to use for encrypting inventory + * <p>Specifies the ID of the Amazon Web Services Key Management Service (Amazon + * Web Services KMS) symmetric customer managed key to use for encrypting inventory * reports.</p> */ inline SSEKMS& WithKeyId(const Aws::String& value) { SetKeyId(value); return *this;} /** - * <p>Specifies the ID of the AWS Key Management Service (AWS KMS) symmetric - * customer managed customer master key (CMK) to use for encrypting inventory + * <p>Specifies the ID of the Amazon Web Services Key Management Service (Amazon + * Web Services KMS) symmetric customer managed key to use for encrypting inventory * reports.</p> */ inline SSEKMS& WithKeyId(Aws::String&& value) { SetKeyId(std::move(value)); return *this;} /** - * <p>Specifies the ID of the AWS Key Management Service (AWS KMS) symmetric - * customer managed customer master key (CMK) to use for encrypting inventory + * <p>Specifies the ID of the Amazon Web Services Key Management Service (Amazon + * Web Services KMS) symmetric customer managed key to use for encrypting inventory * reports.</p> */ inline SSEKMS& WithKeyId(const char* value) { SetKeyId(value); return *this;} @@ -97,7 +97,7 @@ namespace Model private: Aws::String m_keyId; - bool m_keyIdHasBeenSet; + bool m_keyIdHasBeenSet = false; }; } // namespace Model |