Values.AccessLogSourceInformation about the AccessLog attribute.
type nonrec t = {enabled : AccessLogEnabled.t;Specifies whether access logs are enabled for the load balancer.
*)s3BucketName : S3BucketName.t option;The name of the Amazon S3 bucket where the access logs are stored.
*)emitInterval : AccessLogInterval.t option;The interval for publishing the access logs. You can specify an interval of either 5 minutes or 60 minutes. Default: 60 minutes
*)s3BucketPrefix : AccessLogPrefix.t option;The logical hierarchy you created for your Amazon S3 bucket, for example my-bucket-prefix/prod. If the prefix is not provided, the log is placed at the root level of the bucket.
*)}val make :
?s3BucketName:??? ->
?emitInterval:??? ->
?s3BucketPrefix:??? ->
enabled:AccessLogEnabled.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Boolean of AccessLogEnabled.t
| `Integer of AccessLogInterval.t
| `String of S3BucketName.t ])
list ]