/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace KMS { namespace Model { class AWS_KMS_API EncryptResult { public: EncryptResult(); EncryptResult(const Aws::AmazonWebServiceResult& result); EncryptResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The encrypted plaintext. When you use the HTTP API or the AWS CLI, the value * is Base64-encoded. Otherwise, it is not Base64-encoded.

*/ inline const Aws::Utils::ByteBuffer& GetCiphertextBlob() const{ return m_ciphertextBlob; } /** *

The encrypted plaintext. When you use the HTTP API or the AWS CLI, the value * is Base64-encoded. Otherwise, it is not Base64-encoded.

*/ inline void SetCiphertextBlob(const Aws::Utils::ByteBuffer& value) { m_ciphertextBlob = value; } /** *

The encrypted plaintext. When you use the HTTP API or the AWS CLI, the value * is Base64-encoded. Otherwise, it is not Base64-encoded.

*/ inline void SetCiphertextBlob(Aws::Utils::ByteBuffer&& value) { m_ciphertextBlob = std::move(value); } /** *

The encrypted plaintext. When you use the HTTP API or the AWS CLI, the value * is Base64-encoded. Otherwise, it is not Base64-encoded.

*/ inline EncryptResult& WithCiphertextBlob(const Aws::Utils::ByteBuffer& value) { SetCiphertextBlob(value); return *this;} /** *

The encrypted plaintext. When you use the HTTP API or the AWS CLI, the value * is Base64-encoded. Otherwise, it is not Base64-encoded.

*/ inline EncryptResult& WithCiphertextBlob(Aws::Utils::ByteBuffer&& value) { SetCiphertextBlob(std::move(value)); return *this;} /** *

The Amazon Resource Name (key * ARN) of the CMK that was used to encrypt the plaintext.

*/ inline const Aws::String& GetKeyId() const{ return m_keyId; } /** *

The Amazon Resource Name (key * ARN) of the CMK that was used to encrypt the plaintext.

*/ inline void SetKeyId(const Aws::String& value) { m_keyId = value; } /** *

The Amazon Resource Name (key * ARN) of the CMK that was used to encrypt the plaintext.

*/ inline void SetKeyId(Aws::String&& value) { m_keyId = std::move(value); } /** *

The Amazon Resource Name (key * ARN) of the CMK that was used to encrypt the plaintext.

*/ inline void SetKeyId(const char* value) { m_keyId.assign(value); } /** *

The Amazon Resource Name (key * ARN) of the CMK that was used to encrypt the plaintext.

*/ inline EncryptResult& WithKeyId(const Aws::String& value) { SetKeyId(value); return *this;} /** *

The Amazon Resource Name (key * ARN) of the CMK that was used to encrypt the plaintext.

*/ inline EncryptResult& WithKeyId(Aws::String&& value) { SetKeyId(std::move(value)); return *this;} /** *

The Amazon Resource Name (key * ARN) of the CMK that was used to encrypt the plaintext.

*/ inline EncryptResult& WithKeyId(const char* value) { SetKeyId(value); return *this;} /** *

The encryption algorithm that was used to encrypt the plaintext.

*/ inline const EncryptionAlgorithmSpec& GetEncryptionAlgorithm() const{ return m_encryptionAlgorithm; } /** *

The encryption algorithm that was used to encrypt the plaintext.

*/ inline void SetEncryptionAlgorithm(const EncryptionAlgorithmSpec& value) { m_encryptionAlgorithm = value; } /** *

The encryption algorithm that was used to encrypt the plaintext.

*/ inline void SetEncryptionAlgorithm(EncryptionAlgorithmSpec&& value) { m_encryptionAlgorithm = std::move(value); } /** *

The encryption algorithm that was used to encrypt the plaintext.

*/ inline EncryptResult& WithEncryptionAlgorithm(const EncryptionAlgorithmSpec& value) { SetEncryptionAlgorithm(value); return *this;} /** *

The encryption algorithm that was used to encrypt the plaintext.

*/ inline EncryptResult& WithEncryptionAlgorithm(EncryptionAlgorithmSpec&& value) { SetEncryptionAlgorithm(std::move(value)); return *this;} private: Aws::Utils::ByteBuffer m_ciphertextBlob; Aws::String m_keyId; EncryptionAlgorithmSpec m_encryptionAlgorithm; }; } // namespace Model } // namespace KMS } // namespace Aws