Interface CfnClientVpnEndpoint.ClientLoginBannerOptionsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnClientVpnEndpoint.ClientLoginBannerOptionsProperty.Jsii$Proxy
Enclosing class:
CfnClientVpnEndpoint

@Stability(Stable) public static interface CfnClientVpnEndpoint.ClientLoginBannerOptionsProperty extends software.amazon.jsii.JsiiSerializable
Options for enabling a customizable text banner that will be displayed on AWS provided clients when a VPN session is established.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.ec2.*;
 ClientLoginBannerOptionsProperty clientLoginBannerOptionsProperty = ClientLoginBannerOptionsProperty.builder()
         .enabled(false)
         // the properties below are optional
         .bannerText("bannerText")
         .build();