Module Values.AccessLogSource

Information about the AccessLog attribute.

Sourcetype nonrec t = {
  1. enabled : AccessLogEnabled.t;
    (*

    Specifies whether access logs are enabled for the load balancer.

    *)
  2. s3BucketName : S3BucketName.t option;
    (*

    The name of the Amazon S3 bucket where the access logs are stored.

    *)
  3. 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

    *)
  4. 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.

    *)
}
Sourceval context_ : string
Sourceval make : ?s3BucketName:??? -> ?emitInterval:??? -> ?s3BucketPrefix:??? -> enabled:AccessLogEnabled.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of AccessLogEnabled.t | `Integer of AccessLogInterval.t | `String of S3BucketName.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