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

Parameters for plaintext encryption using asymmetric keys.

See * Also:

AWS * API Reference

*/ class AsymmetricEncryptionAttributes { public: AWS_PAYMENTCRYPTOGRAPHYDATA_API AsymmetricEncryptionAttributes(); AWS_PAYMENTCRYPTOGRAPHYDATA_API AsymmetricEncryptionAttributes(Aws::Utils::Json::JsonView jsonValue); AWS_PAYMENTCRYPTOGRAPHYDATA_API AsymmetricEncryptionAttributes& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_PAYMENTCRYPTOGRAPHYDATA_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The padding to be included with the data.

*/ inline const PaddingType& GetPaddingType() const{ return m_paddingType; } /** *

The padding to be included with the data.

*/ inline bool PaddingTypeHasBeenSet() const { return m_paddingTypeHasBeenSet; } /** *

The padding to be included with the data.

*/ inline void SetPaddingType(const PaddingType& value) { m_paddingTypeHasBeenSet = true; m_paddingType = value; } /** *

The padding to be included with the data.

*/ inline void SetPaddingType(PaddingType&& value) { m_paddingTypeHasBeenSet = true; m_paddingType = std::move(value); } /** *

The padding to be included with the data.

*/ inline AsymmetricEncryptionAttributes& WithPaddingType(const PaddingType& value) { SetPaddingType(value); return *this;} /** *

The padding to be included with the data.

*/ inline AsymmetricEncryptionAttributes& WithPaddingType(PaddingType&& value) { SetPaddingType(std::move(value)); return *this;} private: PaddingType m_paddingType; bool m_paddingTypeHasBeenSet = false; }; } // namespace Model } // namespace PaymentCryptographyData } // namespace Aws