Values.GenerateAccessLogsRequestSourceThe request structure for the generate access logs request.
type nonrec t = {startTime : StartTime.t option;The time at which the logs should start. The time range specified is inclusive of the start time.
*)endTime : EndTime.t option;The time at which the logs should end. The time range specified is inclusive of the end time.
*)domainName : DomainName.t;The name of the domain.
*)appId : AppId.t;The unique ID for an Amplify app.
*)}val make :
?startTime:??? ->
?endTime:??? ->
domainName:DomainName.t ->
appId:AppId.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `String of DomainName.t | `Timestamp of StartTime.t ]) list ]