/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Parameters that are required to perform reencryption operation.See
* Also:
AWS
* API Reference
Parameters that are required to encrypt data using symmetric keys.
*/ inline const SymmetricEncryptionAttributes& GetSymmetric() const{ return m_symmetric; } /** *Parameters that are required to encrypt data using symmetric keys.
*/ inline bool SymmetricHasBeenSet() const { return m_symmetricHasBeenSet; } /** *Parameters that are required to encrypt data using symmetric keys.
*/ inline void SetSymmetric(const SymmetricEncryptionAttributes& value) { m_symmetricHasBeenSet = true; m_symmetric = value; } /** *Parameters that are required to encrypt data using symmetric keys.
*/ inline void SetSymmetric(SymmetricEncryptionAttributes&& value) { m_symmetricHasBeenSet = true; m_symmetric = std::move(value); } /** *Parameters that are required to encrypt data using symmetric keys.
*/ inline ReEncryptionAttributes& WithSymmetric(const SymmetricEncryptionAttributes& value) { SetSymmetric(value); return *this;} /** *Parameters that are required to encrypt data using symmetric keys.
*/ inline ReEncryptionAttributes& WithSymmetric(SymmetricEncryptionAttributes&& value) { SetSymmetric(std::move(value)); return *this;} private: DukptEncryptionAttributes m_dukpt; bool m_dukptHasBeenSet = false; SymmetricEncryptionAttributes m_symmetric; bool m_symmetricHasBeenSet = false; }; } // namespace Model } // namespace PaymentCryptographyData } // namespace Aws