Module Values.AwsElbLoadBalancerAttributesSource

Contains attributes for the load balancer.

Sourcetype nonrec t = {
  1. accessLog : AwsElbLoadBalancerAccessLog.t option;
    (*

    Information about the access log configuration for the load balancer. If the access log is enabled, the load balancer captures detailed information about all requests. It delivers the information to a specified S3 bucket.

    *)
  2. connectionDraining : AwsElbLoadBalancerConnectionDraining.t option;
    (*

    Information about the connection draining configuration for the load balancer. If connection draining is enabled, the load balancer allows existing requests to complete before it shifts traffic away from a deregistered or unhealthy instance.

    *)
  3. connectionSettings : AwsElbLoadBalancerConnectionSettings.t option;
    (*

    Connection settings for the load balancer. If an idle timeout is configured, the load balancer allows connections to remain idle for the specified duration. When a connection is idle, no data is sent over the connection.

    *)
  4. crossZoneLoadBalancing : AwsElbLoadBalancerCrossZoneLoadBalancing.t option;
    (*

    Cross-zone load balancing settings for the load balancer. If cross-zone load balancing is enabled, the load balancer routes the request traffic evenly across all instances regardless of the Availability Zones.

    *)
  5. additionalAttributes : AwsElbLoadBalancerAdditionalAttributeList.t option;
    (*

    Any additional attributes for a load balancer.

    *)
}
Sourceval make : ?accessLog:??? -> ?connectionDraining:??? -> ?connectionSettings:??? -> ?crossZoneLoadBalancing:??? -> ?additionalAttributes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of NonEmptyString.t ]) list ] list | `Structure of (string * [> `Boolean of Boolean.t | `Integer of Integer.t | `String of NonEmptyString.t ]) list ]) 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