Module Values.AwsElbLoadBalancerAccessLogSource

Contains information about the access log configuration for the load balancer.

Sourcetype nonrec t = {
  1. emitInterval : Integer.t option;
    (*

    The interval in minutes for publishing the access logs. You can publish access logs either every 5 minutes or every 60 minutes.

    *)
  2. enabled : Boolean.t option;
    (*

    Indicates whether access logs are enabled for the load balancer.

    *)
  3. s3BucketName : NonEmptyString.t option;
    (*

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

    *)
  4. s3BucketPrefix : NonEmptyString.t option;
    (*

    The logical hierarchy that was created for the S3 bucket. If a prefix is not provided, the log is placed at the root level of the bucket.

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