Module Values_0.CloudWatchLogOptionsSpecificationSource

Options for sending VPN tunnel logs to CloudWatch.

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

    Enable or disable VPN tunnel logging feature. Default value is False. Valid values: True | False

    *)
  2. logGroupArn : CloudWatchLogGroupArn.t option;
    (*

    The Amazon Resource Name (ARN) of the CloudWatch log group to send logs to.

    *)
  3. logOutputFormat : String_.t option;
    (*

    Set log format. Default format is json. Valid values: json | text

    *)
  4. bgpLogEnabled : Boolean.t option;
    (*

    Specifies whether to enable BGP logging for the VPN connection. Default value is False. Valid values: True | False

    *)
  5. bgpLogGroupArn : CloudWatchLogGroupArn.t option;
    (*

    The Amazon Resource Name (ARN) of the CloudWatch log group where BGP logs will be sent.

    *)
  6. bgpLogOutputFormat : String_.t option;
    (*

    The desired output format for BGP logs to be sent to CloudWatch. Default format is json. Valid values: json | text

    *)
}
Sourceval make : ?logEnabled:??? -> ?logGroupArn:??? -> ?logOutputFormat:??? -> ?bgpLogEnabled:??? -> ?bgpLogGroupArn:??? -> ?bgpLogOutputFormat:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of CloudWatchLogGroupArn.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