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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnClientVpnEndpoint.ClientLoginBannerOptionsProperty
static final class
An implementation forCfnClientVpnEndpoint.ClientLoginBannerOptionsProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
Customizable text that will be displayed in a banner on AWS provided clients when a VPN session is established.Enable or disable a customizable text banner that will be displayed on AWS provided clients when a VPN session is established.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEnabled
Enable or disable a customizable text banner that will be displayed on AWS provided clients when a VPN session is established.Valid values:
true | false
Default value:
false
-
getBannerText
Customizable text that will be displayed in a banner on AWS provided clients when a VPN session is established.UTF-8 encoded characters only. Maximum of 1400 characters.
-
builder
-