Module Values.AwsApiGatewayV2RouteSettingsSource

Contains route settings for a stage.

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

    Indicates whether detailed metrics are enabled.

    *)
  2. loggingLevel : NonEmptyString.t option;
    (*

    The logging level. The logging level affects the log entries that are pushed to CloudWatch Logs. Supported only for WebSocket APIs. If the logging level is ERROR, then the logs only include error-level entries. If the logging level is INFO, then the logs include both ERROR events and extra informational events. Valid values: OFF | ERROR | INFO

    *)
  3. dataTraceEnabled : Boolean.t option;
    (*

    Indicates whether data trace logging is enabled. Data trace logging affects the log entries that are pushed to CloudWatch Logs. Supported only for WebSocket APIs.

    *)
  4. throttlingBurstLimit : Integer.t option;
    (*

    The throttling burst limit.

    *)
  5. throttlingRateLimit : Double.t option;
    (*

    The throttling rate limit.

    *)
}
Sourceval make : ?detailedMetricsEnabled:??? -> ?loggingLevel:??? -> ?dataTraceEnabled:??? -> ?throttlingBurstLimit:??? -> ?throttlingRateLimit:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Double of Double.t | `Integer of Integer.t | `String of NonEmptyString.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