Show / Hide Table of Contents

Interface CfnClientVpnEndpoint.IClientLoginBannerOptionsProperty

Options for enabling a customizable text banner that will be displayed on AWS provided clients when a VPN session is established.

Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnClientVpnEndpoint.IClientLoginBannerOptionsProperty
Syntax (vb)
Public Interface CfnClientVpnEndpoint.IClientLoginBannerOptionsProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-clientloginbanneroptions.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.EC2;

             var clientLoginBannerOptionsProperty = new ClientLoginBannerOptionsProperty {
                 Enabled = false,

                 // the properties below are optional
                 BannerText = "bannerText"
             };

Synopsis

Properties

BannerText

Customizable text that will be displayed in a banner on AWS provided clients when a VPN session is established.

Enabled

Enable or disable a customizable text banner that will be displayed on AWS provided clients when a VPN session is established.

Properties

BannerText

Customizable text that will be displayed in a banner on AWS provided clients when a VPN session is established.

string? BannerText { get; }
Property Value

string

Remarks

UTF-8 encoded characters only. Maximum of 1400 characters.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-clientloginbanneroptions.html#cfn-ec2-clientvpnendpoint-clientloginbanneroptions-bannertext

Enabled

Enable or disable a customizable text banner that will be displayed on AWS provided clients when a VPN session is established.

object Enabled { get; }
Property Value

object

Remarks

Valid values: true | false

Default value: false

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-clientloginbanneroptions.html#cfn-ec2-clientvpnendpoint-clientloginbanneroptions-enabled

Type union: either bool or IResolvable

Back to top Generated by DocFX