Module Values_3.ClientLoginBannerOptionsSource

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

Sourcetype nonrec t = {
  1. enabled : Values_0.Boolean.t option;
    (*

    Enable or disable a customizable text banner that will be displayed on Amazon Web Services provided clients when a VPN session is established. Valid values: true | false Default value: false

    *)
  2. bannerText : Values_0.String_.t option;
    (*

    Customizable text that will be displayed in a banner on Amazon Web Services provided clients when a VPN session is established. UTF-8 encoded characters only. Maximum of 1400 characters.

    *)
}
Sourceval make : ?enabled:??? -> ?bannerText:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Values_0.Boolean.t | `String of Values_0.String_.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t