/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Specifies the encryption algorithm for the VPN tunnel for phase 2 IKE
* negotiations.See Also:
AWS
* API Reference
The encryption algorithm.
*/ inline const Aws::String& GetValue() const{ return m_value; } /** *The encryption algorithm.
*/ inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; } /** *The encryption algorithm.
*/ inline void SetValue(const Aws::String& value) { m_valueHasBeenSet = true; m_value = value; } /** *The encryption algorithm.
*/ inline void SetValue(Aws::String&& value) { m_valueHasBeenSet = true; m_value = std::move(value); } /** *The encryption algorithm.
*/ inline void SetValue(const char* value) { m_valueHasBeenSet = true; m_value.assign(value); } /** *The encryption algorithm.
*/ inline Phase2EncryptionAlgorithmsRequestListValue& WithValue(const Aws::String& value) { SetValue(value); return *this;} /** *The encryption algorithm.
*/ inline Phase2EncryptionAlgorithmsRequestListValue& WithValue(Aws::String&& value) { SetValue(std::move(value)); return *this;} /** *The encryption algorithm.
*/ inline Phase2EncryptionAlgorithmsRequestListValue& WithValue(const char* value) { SetValue(value); return *this;} private: Aws::String m_value; bool m_valueHasBeenSet = false; }; } // namespace Model } // namespace EC2 } // namespace Aws