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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnClientVpnEndpoint.ClientLoginBannerOptionsPropertystatic final classAn implementation forCfnClientVpnEndpoint.ClientLoginBannerOptionsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringCustomizable 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 | falseDefault value:
falseReturns union: either
BooleanorIResolvable- See Also:
-
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.
- See Also:
-
builder
-