Module Values.AccessLogSettingsSource

Access log settings, including the access log format and access log destination ARN.

Sourcetype nonrec t = {
  1. format : String_.t option;
    (*

    A single line format of the access logs of data, as specified by selected $context variables. The format must include at least $context.requestId.

    *)
  2. destinationArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the CloudWatch Logs log group or Kinesis Data Firehose delivery stream to receive access logs. If you specify a Kinesis Data Firehose delivery stream, the stream name must begin with amazon-apigateway-.

    *)
}
Sourceval make : ?format:??? -> ?destinationArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of 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