/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Describes the state of an authorization rule.See Also:
AWS
* API Reference
The state of the authorization rule.
*/ inline const ClientVpnAuthorizationRuleStatusCode& GetCode() const{ return m_code; } /** *The state of the authorization rule.
*/ inline bool CodeHasBeenSet() const { return m_codeHasBeenSet; } /** *The state of the authorization rule.
*/ inline void SetCode(const ClientVpnAuthorizationRuleStatusCode& value) { m_codeHasBeenSet = true; m_code = value; } /** *The state of the authorization rule.
*/ inline void SetCode(ClientVpnAuthorizationRuleStatusCode&& value) { m_codeHasBeenSet = true; m_code = std::move(value); } /** *The state of the authorization rule.
*/ inline ClientVpnAuthorizationRuleStatus& WithCode(const ClientVpnAuthorizationRuleStatusCode& value) { SetCode(value); return *this;} /** *The state of the authorization rule.
*/ inline ClientVpnAuthorizationRuleStatus& WithCode(ClientVpnAuthorizationRuleStatusCode&& value) { SetCode(std::move(value)); return *this;} /** *A message about the status of the authorization rule, if applicable.
*/ inline const Aws::String& GetMessage() const{ return m_message; } /** *A message about the status of the authorization rule, if applicable.
*/ inline bool MessageHasBeenSet() const { return m_messageHasBeenSet; } /** *A message about the status of the authorization rule, if applicable.
*/ inline void SetMessage(const Aws::String& value) { m_messageHasBeenSet = true; m_message = value; } /** *A message about the status of the authorization rule, if applicable.
*/ inline void SetMessage(Aws::String&& value) { m_messageHasBeenSet = true; m_message = std::move(value); } /** *A message about the status of the authorization rule, if applicable.
*/ inline void SetMessage(const char* value) { m_messageHasBeenSet = true; m_message.assign(value); } /** *A message about the status of the authorization rule, if applicable.
*/ inline ClientVpnAuthorizationRuleStatus& WithMessage(const Aws::String& value) { SetMessage(value); return *this;} /** *A message about the status of the authorization rule, if applicable.
*/ inline ClientVpnAuthorizationRuleStatus& WithMessage(Aws::String&& value) { SetMessage(std::move(value)); return *this;} /** *A message about the status of the authorization rule, if applicable.
*/ inline ClientVpnAuthorizationRuleStatus& WithMessage(const char* value) { SetMessage(value); return *this;} private: ClientVpnAuthorizationRuleStatusCode m_code; bool m_codeHasBeenSet = false; Aws::String m_message; bool m_messageHasBeenSet = false; }; } // namespace Model } // namespace EC2 } // namespace Aws