Interface CfnClientVpnEndpointPropsMixin.ClientLoginBannerOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnClientVpnEndpointPropsMixin.ClientLoginBannerOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnClientVpnEndpointPropsMixin
@Stability(Stable)
public static interface CfnClientVpnEndpointPropsMixin.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.cfnpropertymixins.services.ec2.*;
ClientLoginBannerOptionsProperty clientLoginBannerOptionsProperty = ClientLoginBannerOptionsProperty.builder()
.bannerText("bannerText")
.enabled(false)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnClientVpnEndpointPropsMixin.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.default ObjectEnable 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
-
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:
-
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:
-
builder
@Stability(Stable) static CfnClientVpnEndpointPropsMixin.ClientLoginBannerOptionsProperty.Builder builder()
-