/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Options for enabling a customizable text banner that will be displayed on
* Amazon Web Services provided clients when a VPN session is
* established.See Also:
AWS
* API Reference
Enable or disable a customizable text banner that will be displayed on Amazon * Web Services provided clients when a VPN session is established.
Valid
* values: true | false
Default value: false
Enable or disable a customizable text banner that will be displayed on Amazon * Web Services provided clients when a VPN session is established.
Valid
* values: true | false
Default value: false
Enable or disable a customizable text banner that will be displayed on Amazon * Web Services provided clients when a VPN session is established.
Valid
* values: true | false
Default value: false
Enable or disable a customizable text banner that will be displayed on Amazon * Web Services provided clients when a VPN session is established.
Valid
* values: true | false
Default value: false
Customizable text that will be displayed in a banner on Amazon Web Services * provided clients when a VPN session is established. UTF-8 encoded characters * only. Maximum of 1400 characters.
*/ inline const Aws::String& GetBannerText() const{ return m_bannerText; } /** *Customizable text that will be displayed in a banner on Amazon Web Services * provided clients when a VPN session is established. UTF-8 encoded characters * only. Maximum of 1400 characters.
*/ inline bool BannerTextHasBeenSet() const { return m_bannerTextHasBeenSet; } /** *Customizable text that will be displayed in a banner on Amazon Web Services * provided clients when a VPN session is established. UTF-8 encoded characters * only. Maximum of 1400 characters.
*/ inline void SetBannerText(const Aws::String& value) { m_bannerTextHasBeenSet = true; m_bannerText = value; } /** *Customizable text that will be displayed in a banner on Amazon Web Services * provided clients when a VPN session is established. UTF-8 encoded characters * only. Maximum of 1400 characters.
*/ inline void SetBannerText(Aws::String&& value) { m_bannerTextHasBeenSet = true; m_bannerText = std::move(value); } /** *Customizable text that will be displayed in a banner on Amazon Web Services * provided clients when a VPN session is established. UTF-8 encoded characters * only. Maximum of 1400 characters.
*/ inline void SetBannerText(const char* value) { m_bannerTextHasBeenSet = true; m_bannerText.assign(value); } /** *Customizable text that will be displayed in a banner on Amazon Web Services * provided clients when a VPN session is established. UTF-8 encoded characters * only. Maximum of 1400 characters.
*/ inline ClientLoginBannerOptions& WithBannerText(const Aws::String& value) { SetBannerText(value); return *this;} /** *Customizable text that will be displayed in a banner on Amazon Web Services * provided clients when a VPN session is established. UTF-8 encoded characters * only. Maximum of 1400 characters.
*/ inline ClientLoginBannerOptions& WithBannerText(Aws::String&& value) { SetBannerText(std::move(value)); return *this;} /** *Customizable text that will be displayed in a banner on Amazon Web Services * provided clients when a VPN session is established. UTF-8 encoded characters * only. Maximum of 1400 characters.
*/ inline ClientLoginBannerOptions& WithBannerText(const char* value) { SetBannerText(value); return *this;} private: bool m_enabled; bool m_enabledHasBeenSet = false; Aws::String m_bannerText; bool m_bannerTextHasBeenSet = false; }; } // namespace Model } // namespace EC2 } // namespace Aws