Module Values.GenerateAccessLogsRequestSource

The request structure for the generate access logs request.

Sourcetype nonrec t = {
  1. startTime : StartTime.t option;
    (*

    The time at which the logs should start. The time range specified is inclusive of the start time.

    *)
  2. endTime : EndTime.t option;
    (*

    The time at which the logs should end. The time range specified is inclusive of the end time.

    *)
  3. domainName : DomainName.t;
    (*

    The name of the domain.

    *)
  4. appId : AppId.t;
    (*

    The unique ID for an Amplify app.

    *)
}
Sourceval context_ : string
Sourceval make : ?startTime:??? -> ?endTime:??? -> domainName:DomainName.t -> appId:AppId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of DomainName.t | `Timestamp of StartTime.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