Module Smaws_Client_ElasticLoadBalancing.Types

type nonrec vpc_id = string
type nonrec error_description = string
type nonrec unsupported_protocol_exception = {
  1. message : error_description option;
}

The specified protocol or signature version is not supported.

type nonrec unhealthy_threshold = int
type nonrec too_many_tags_exception = {
  1. message : error_description option;
}

The quota for the number of tags that can be assigned to a load balancer has been reached.

type nonrec too_many_policies_exception = {
  1. message : error_description option;
}

The quota for the number of policies for this load balancer has been reached.

type nonrec too_many_access_points_exception = {
  1. message : error_description option;
}

The quota for the number of load balancers has been reached.

type nonrec tag_value = string
type nonrec tag_key = string
type nonrec tag = {
  1. value : tag_value option;
    (*

    The value of the tag.

    *)
  2. key : tag_key;
    (*

    The key of the tag.

    *)
}

Information about a tag.

type nonrec tag_list = tag list
type nonrec tag_key_only = {
  1. key : tag_key option;
    (*

    The name of the key.

    *)
}

The key of a tag.

type nonrec tag_key_list = tag_key_only list
type nonrec access_point_name = string
type nonrec tag_description = {
  1. tags : tag_list option;
    (*

    The tags.

    *)
  2. load_balancer_name : access_point_name option;
    (*

    The name of the load balancer.

    *)
}

The tags associated with a load balancer.

type nonrec tag_descriptions = tag_description list
type nonrec subnet_id = string
type nonrec subnets = subnet_id list
type nonrec subnet_not_found_exception = {
  1. message : error_description option;
}

One or more of the specified subnets do not exist.

type nonrec state = string
type nonrec security_group_owner_alias = string
type nonrec security_group_name = string
type nonrec source_security_group = {
  1. group_name : security_group_name option;
    (*

    The name of the security group.

    *)
  2. owner_alias : security_group_owner_alias option;
    (*

    The owner of the security group.

    *)
}

Information about a source security group.

type nonrec set_load_balancer_policies_of_listener_output = unit
type nonrec access_point_port = int
type nonrec policy_name = string
type nonrec policy_names = policy_name list
type nonrec set_load_balancer_policies_of_listener_input = {
  1. policy_names : policy_names;
    (*

    The names of the policies. This list must include all policies to be enabled. If you omit a policy that is currently enabled, it is disabled. If the list is empty, all current policies are disabled.

    *)
  2. load_balancer_port : access_point_port;
    (*

    The external port of the load balancer.

    *)
  3. load_balancer_name : access_point_name;
    (*

    The name of the load balancer.

    *)
}

Contains the parameters for SetLoadBalancePoliciesOfListener.

type nonrec policy_not_found_exception = {
  1. message : error_description option;
}

One or more of the specified policies do not exist.

type nonrec listener_not_found_exception = {
  1. message : error_description option;
}

The load balancer does not have a listener configured at the specified port.

type nonrec invalid_configuration_request_exception = {
  1. message : error_description option;
}

The requested configuration change is not valid.

type nonrec access_point_not_found_exception = {
  1. message : error_description option;
}

The specified load balancer does not exist.

type nonrec set_load_balancer_policies_for_backend_server_output = unit
type nonrec end_point_port = int
type nonrec set_load_balancer_policies_for_backend_server_input = {
  1. policy_names : policy_names;
    (*

    The names of the policies. If the list is empty, then all current polices are removed from the EC2 instance.

    *)
  2. instance_port : end_point_port;
    (*

    The port number associated with the EC2 instance.

    *)
  3. load_balancer_name : access_point_name;
    (*

    The name of the load balancer.

    *)
}

Contains the parameters for SetLoadBalancerPoliciesForBackendServer.

type nonrec set_load_balancer_listener_ssl_certificate_output = unit
type nonrec ssl_certificate_id = string
type nonrec set_load_balancer_listener_ssl_certificate_input = {
  1. ssl_certificate_id : ssl_certificate_id;
    (*

    The Amazon Resource Name (ARN) of the SSL certificate.

    *)
  2. load_balancer_port : access_point_port;
    (*

    The port that uses the specified SSL certificate.

    *)
  3. load_balancer_name : access_point_name;
    (*

    The name of the load balancer.

    *)
}

Contains the parameters for SetLoadBalancerListenerSSLCertificate.

type nonrec certificate_not_found_exception = {
  1. message : error_description option;
}

The specified ARN does not refer to a valid SSL certificate in AWS Identity and Access Management (IAM) or AWS Certificate Manager (ACM). Note that if you recently uploaded the certificate to IAM, this error might indicate that the certificate is not fully available yet.

type nonrec security_group_id = string
type nonrec security_groups = security_group_id list
type nonrec s3_bucket_name = string
type nonrec remove_tags_output = unit
type nonrec load_balancer_names = access_point_name list
type nonrec remove_tags_input = {
  1. tags : tag_key_list;
    (*

    The list of tag keys to remove.

    *)
  2. load_balancer_names : load_balancer_names;
    (*

    The name of the load balancer. You can specify a maximum of one load balancer name.

    *)
}

Contains the parameters for RemoveTags.

type nonrec availability_zone = string
type nonrec availability_zones = availability_zone list
type nonrec remove_availability_zones_output = {
  1. availability_zones : availability_zones option;
    (*

    The remaining Availability Zones for the load balancer.

    *)
}

Contains the output for DisableAvailabilityZonesForLoadBalancer.

type nonrec remove_availability_zones_input = {
  1. availability_zones : availability_zones;
    (*

    The Availability Zones.

    *)
  2. load_balancer_name : access_point_name;
    (*

    The name of the load balancer.

    *)
}

Contains the parameters for DisableAvailabilityZonesForLoadBalancer.

type nonrec invalid_end_point_exception = {
  1. message : error_description option;
}

The specified endpoint is not valid.

type nonrec instance_id = string
type nonrec instance = {
  1. instance_id : instance_id option;
    (*

    The instance ID.

    *)
}

The ID of an EC2 instance.

type nonrec instances = instance list
type nonrec register_end_points_output = {
  1. instances : instances option;
    (*

    The updated list of instances for the load balancer.

    *)
}

Contains the output of RegisterInstancesWithLoadBalancer.

type nonrec register_end_points_input = {
  1. instances : instances;
    (*

    The IDs of the instances.

    *)
  2. load_balancer_name : access_point_name;
    (*

    The name of the load balancer.

    *)
}

Contains the parameters for RegisterInstancesWithLoadBalancer.

type nonrec reason_code = string
type nonrec protocol = string
type nonrec ports = access_point_port list
type nonrec policy_type_not_found_exception = {
  1. message : error_description option;
}

One or more of the specified policy types do not exist.

type nonrec policy_type_name = string
type nonrec policy_type_names = policy_type_name list
type nonrec description = string
type nonrec attribute_name = string
type nonrec attribute_type = string
type nonrec default_value = string
type nonrec cardinality = string
type nonrec policy_attribute_type_description = {
  1. cardinality : cardinality option;
    (*

    The cardinality of the attribute.

    Valid values:

    • ONE(1) : Single value required
    • ZERO_OR_ONE(0..1) : Up to one value is allowed
    • ZERO_OR_MORE(0..*) : Optional. Multiple values are allowed
    • ONE_OR_MORE(1..*0) : Required. Multiple values are allowed
    *)
  2. default_value : default_value option;
    (*

    The default value of the attribute, if applicable.

    *)
  3. description : description option;
    (*

    A description of the attribute.

    *)
  4. attribute_type : attribute_type option;
    (*

    The type of the attribute. For example, Boolean or Integer.

    *)
  5. attribute_name : attribute_name option;
    (*

    The name of the attribute.

    *)
}

Information about a policy attribute type.

type nonrec policy_attribute_type_descriptions = policy_attribute_type_description list
type nonrec policy_type_description = {
  1. policy_attribute_type_descriptions : policy_attribute_type_descriptions option;
    (*

    The description of the policy attributes associated with the policies defined by Elastic Load Balancing.

    *)
  2. description : description option;
    (*

    A description of the policy type.

    *)
  3. policy_type_name : policy_type_name option;
    (*

    The name of the policy type.

    *)
}

Information about a policy type.

type nonrec policy_type_descriptions = policy_type_description list
type nonrec attribute_value = string
type nonrec policy_attribute_description = {
  1. attribute_value : attribute_value option;
    (*

    The value of the attribute.

    *)
  2. attribute_name : attribute_name option;
    (*

    The name of the attribute.

    *)
}

Information about a policy attribute.

type nonrec policy_attribute_descriptions = policy_attribute_description list
type nonrec policy_description = {
  1. policy_attribute_descriptions : policy_attribute_descriptions option;
    (*

    The policy attributes.

    *)
  2. policy_type_name : policy_type_name option;
    (*

    The name of the policy type.

    *)
  3. policy_name : policy_name option;
    (*

    The name of the policy.

    *)
}

Information about a policy.

type nonrec policy_descriptions = policy_description list
type nonrec policy_attribute = {
  1. attribute_value : attribute_value option;
    (*

    The value of the attribute.

    *)
  2. attribute_name : attribute_name option;
    (*

    The name of the attribute.

    *)
}

Information about a policy attribute.

type nonrec policy_attributes = policy_attribute list

Information about a policy for application-controlled session stickiness.

Information about a policy for duration-based session stickiness.

type nonrec policies = {
  1. other_policies : policy_names option;
    (*

    The policies other than the stickiness policies.

    *)
}

The policies for a load balancer.

type nonrec page_size = int
type nonrec operation_not_permitted_exception = {
  1. message : error_description option;
}

This operation is not allowed.

type nonrec name = string
type nonrec cross_zone_load_balancing_enabled = bool
type nonrec cross_zone_load_balancing = {
  1. enabled : cross_zone_load_balancing_enabled;
    (*

    Specifies whether cross-zone load balancing is enabled for the load balancer.

    *)
}

Information about the CrossZoneLoadBalancing attribute.

type nonrec access_log_enabled = bool
type nonrec access_log_interval = int
type nonrec access_log_prefix = string
type nonrec access_log = {
  1. s3_bucket_prefix : access_log_prefix 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.

    *)
  2. emit_interval : access_log_interval option;
    (*

    The interval for publishing the access logs. You can specify an interval of either 5 minutes or 60 minutes.

    Default: 60 minutes

    *)
  3. s3_bucket_name : s3_bucket_name option;
    (*

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

    *)
  4. enabled : access_log_enabled;
    (*

    Specifies whether access logs are enabled for the load balancer.

    *)
}

Information about the AccessLog attribute.

type nonrec connection_draining_enabled = bool
type nonrec connection_draining_timeout = int
type nonrec connection_draining = {
  1. timeout : connection_draining_timeout option;
    (*

    The maximum time, in seconds, to keep the existing connections open before deregistering the instances.

    *)
  2. enabled : connection_draining_enabled;
    (*

    Specifies whether connection draining is enabled for the load balancer.

    *)
}

Information about the ConnectionDraining attribute.

type nonrec idle_timeout = int
type nonrec connection_settings = {
  1. idle_timeout : idle_timeout;
    (*

    The time, in seconds, that the connection is allowed to be idle (no data has been sent over the connection) before it is closed by the load balancer.

    *)
}

Information about the ConnectionSettings attribute.

type nonrec additional_attribute_key = string
type nonrec additional_attribute_value = string
type nonrec additional_attribute = {
  1. value : additional_attribute_value option;
    (*

    This value of the attribute.

    *)
  2. key : additional_attribute_key option;
    (*

    The name of the attribute.

    The following attribute is supported.

    • elb.http.desyncmitigationmode - Determines how the load balancer handles requests that might pose a security risk to your application. The possible values are monitor, defensive, and strictest. The default is defensive.
    *)
}

Information about additional load balancer attributes.

type nonrec additional_attributes = additional_attribute list
type nonrec load_balancer_attributes = {
  1. additional_attributes : additional_attributes option;
    (*

    Any additional attributes.

    *)
  2. connection_settings : connection_settings option;
    (*

    If enabled, the load balancer allows the connections to remain idle (no data is sent over the connection) for the specified duration.

    By default, Elastic Load Balancing maintains a 60-second idle connection timeout for both front-end and back-end connections of your load balancer. For more information, see Configure Idle Connection Timeout in the Classic Load Balancers Guide.

    *)
  3. connection_draining : connection_draining option;
    (*

    If enabled, the load balancer allows existing requests to complete before the load balancer shifts traffic away from a deregistered or unhealthy instance.

    For more information, see Configure Connection Draining in the Classic Load Balancers Guide.

    *)
  4. access_log : access_log option;
    (*

    If enabled, the load balancer captures detailed information of all requests and delivers the information to the Amazon S3 bucket that you specify.

    For more information, see Enable Access Logs in the Classic Load Balancers Guide.

    *)
  5. cross_zone_load_balancing : cross_zone_load_balancing option;
    (*

    If enabled, the load balancer routes the request traffic evenly across all instances regardless of the Availability Zones.

    For more information, see Configure Cross-Zone Load Balancing in the Classic Load Balancers Guide.

    *)
}

The attributes for a load balancer.

type nonrec modify_load_balancer_attributes_output = {
  1. load_balancer_attributes : load_balancer_attributes option;
    (*

    Information about the load balancer attributes.

    *)
  2. load_balancer_name : access_point_name option;
    (*

    The name of the load balancer.

    *)
}

Contains the output of ModifyLoadBalancerAttributes.

type nonrec modify_load_balancer_attributes_input = {
  1. load_balancer_attributes : load_balancer_attributes;
    (*

    The attributes for the load balancer.

    *)
  2. load_balancer_name : access_point_name;
    (*

    The name of the load balancer.

    *)
}

Contains the parameters for ModifyLoadBalancerAttributes.

type nonrec load_balancer_attribute_not_found_exception = {
  1. message : error_description option;
}

The specified load balancer attribute does not exist.

type nonrec max = string
type nonrec marker = string
type nonrec load_balancer_scheme = string
type nonrec load_balancer_names_max20 = access_point_name list
type nonrec dns_name = string
type nonrec instance_port = int
type nonrec listener = {
  1. ssl_certificate_id : ssl_certificate_id option;
    (*

    The Amazon Resource Name (ARN) of the server certificate.

    *)
  2. instance_port : instance_port;
    (*

    The port on which the instance is listening.

    *)
  3. instance_protocol : protocol option;
    (*

    The protocol to use for routing traffic to instances: HTTP, HTTPS, TCP, or SSL.

    If the front-end protocol is TCP or SSL, the back-end protocol must be TCP or SSL. If the front-end protocol is HTTP or HTTPS, the back-end protocol must be HTTP or HTTPS.

    If there is another listener with the same InstancePort whose InstanceProtocol is secure, (HTTPS or SSL), the listener's InstanceProtocol must also be secure.

    If there is another listener with the same InstancePort whose InstanceProtocol is HTTP or TCP, the listener's InstanceProtocol must be HTTP or TCP.

    *)
  4. load_balancer_port : access_point_port;
    (*

    The port on which the load balancer is listening. On EC2-VPC, you can specify any port from the range 1-65535. On EC2-Classic, you can specify any port from the following list: 25, 80, 443, 465, 587, 1024-65535.

    *)
  5. protocol : protocol;
    (*

    The load balancer transport protocol to use for routing: HTTP, HTTPS, TCP, or SSL.

    *)
}

Information about a listener.

For information about the protocols and the ports supported by Elastic Load Balancing, see Listeners for Your Classic Load Balancer in the Classic Load Balancers Guide.

type nonrec listener_description = {
  1. policy_names : policy_names option;
    (*

    The policies. If there are no policies enabled, the list is empty.

    *)
  2. listener : listener option;
    (*

    The listener.

    *)
}

The policies enabled for a listener.

type nonrec listener_descriptions = listener_description list
type nonrec backend_server_description = {
  1. policy_names : policy_names option;
    (*

    The names of the policies enabled for the EC2 instance.

    *)
  2. instance_port : instance_port option;
    (*

    The port on which the EC2 instance is listening.

    *)
}

Information about the configuration of an EC2 instance.

type nonrec backend_server_descriptions = backend_server_description list
type nonrec health_check_target = string
type nonrec health_check_interval = int
type nonrec health_check_timeout = int
type nonrec healthy_threshold = int
type nonrec health_check = {
  1. healthy_threshold : healthy_threshold;
    (*

    The number of consecutive health checks successes required before moving the instance to the Healthy state.

    *)
  2. unhealthy_threshold : unhealthy_threshold;
    (*

    The number of consecutive health check failures required before moving the instance to the Unhealthy state.

    *)
  3. timeout : health_check_timeout;
    (*

    The amount of time, in seconds, during which no response means a failed health check.

    This value must be less than the Interval value.

    *)
  4. interval : health_check_interval;
    (*

    The approximate interval, in seconds, between health checks of an individual instance.

    *)
  5. target : health_check_target;
    (*

    The instance being checked. The protocol is either TCP, HTTP, HTTPS, or SSL. The range of valid ports is one (1) through 65535.

    TCP is the default, specified as a TCP: port pair, for example "TCP:5000". In this case, a health check simply attempts to open a TCP connection to the instance on the specified port. Failure to connect within the configured timeout is considered unhealthy.

    SSL is also specified as SSL: port pair, for example, SSL:5000.

    For HTTP/HTTPS, you must include a ping path in the string. HTTP is specified as a HTTP:port;/;PathToPing; grouping, for example "HTTP:80/weather/us/wa/seattle". In this case, a HTTP GET request is issued to the instance on the given port and path. Any answer other than "200 OK" within the timeout period is considered unhealthy.

    The total length of the HTTP ping target must be 1024 16-bit Unicode characters or less.

    *)
}

Information about a health check.

type nonrec created_time = Smaws_Lib.CoreTypes.Timestamp.t
type nonrec load_balancer_description = {
  1. scheme : load_balancer_scheme option;
    (*

    The type of load balancer. Valid only for load balancers in a VPC.

    If Scheme is internet-facing, the load balancer has a public DNS name that resolves to a public IP address.

    If Scheme is internal, the load balancer has a public DNS name that resolves to a private IP address.

    *)
  2. created_time : created_time option;
    (*

    The date and time the load balancer was created.

    *)
  3. security_groups : security_groups option;
    (*

    The security groups for the load balancer. Valid only for load balancers in a VPC.

    *)
  4. source_security_group : source_security_group option;
    (*

    The security group for the load balancer, which you can use as part of your inbound rules for your registered instances. To only allow traffic from load balancers, add a security group rule that specifies this source security group as the inbound source.

    *)
  5. health_check : health_check option;
    (*

    Information about the health checks conducted on the load balancer.

    *)
  6. instances : instances option;
    (*

    The IDs of the instances for the load balancer.

    *)
  7. vpc_id : vpc_id option;
    (*

    The ID of the VPC for the load balancer.

    *)
  8. subnets : subnets option;
    (*

    The IDs of the subnets for the load balancer.

    *)
  9. availability_zones : availability_zones option;
    (*

    The Availability Zones for the load balancer.

    *)
  10. backend_server_descriptions : backend_server_descriptions option;
    (*

    Information about your EC2 instances.

    *)
  11. policies : policies option;
    (*

    The policies defined for the load balancer.

    *)
  12. listener_descriptions : listener_descriptions option;
    (*

    The listeners for the load balancer.

    *)
  13. canonical_hosted_zone_name_i_d : dns_name option;
    (*

    The ID of the Amazon Route 53 hosted zone for the load balancer.

    *)
  14. canonical_hosted_zone_name : dns_name option;
    (*

    The DNS name of the load balancer.

    For more information, see Configure a Custom Domain Name in the Classic Load Balancers Guide.

    *)
  15. dns_name : dns_name option;
    (*

    The DNS name of the load balancer.

    *)
  16. load_balancer_name : access_point_name option;
    (*

    The name of the load balancer.

    *)
}

Information about a load balancer.

type nonrec load_balancer_descriptions = load_balancer_description list
type nonrec listeners = listener list
type nonrec limit = {
  1. max : max option;
    (*

    The maximum value of the limit.

    *)
  2. name : name option;
    (*

    The name of the limit. The possible values are:

    • classic-listeners
    • classic-load-balancers
    • classic-registered-instances
    *)
}

Information about an Elastic Load Balancing resource limit for your AWS account.

type nonrec limits = limit list
type nonrec invalid_subnet_exception = {
  1. message : error_description option;
}

The specified VPC has no associated Internet gateway.

type nonrec invalid_security_group_exception = {
  1. message : error_description option;
}

One or more of the specified security groups do not exist.

type nonrec invalid_scheme_exception = {
  1. message : error_description option;
}

The specified value for the schema is not valid. You can only specify a scheme for load balancers in a VPC.

type nonrec instance_state = {
  1. description : description option;
    (*

    A description of the instance state. This string can contain one or more of the following messages.

    • N/A
    • A transient error occurred. Please try again later.
    • Instance has failed at least the UnhealthyThreshold number of health checks consecutively.
    • Instance has not passed the configured HealthyThreshold number of health checks consecutively.
    • Instance registration is still in progress.
    • Instance is in the EC2 Availability Zone for which LoadBalancer is not configured to route traffic to.
    • Instance is not currently registered with the LoadBalancer.
    • Instance deregistration currently in progress.
    • Disable Availability Zone is currently in progress.
    • Instance is in pending state.
    • Instance is in stopped state.
    • Instance is in terminated state.
    *)
  2. reason_code : reason_code option;
    (*

    Information about the cause of OutOfService instances. Specifically, whether the cause is Elastic Load Balancing or the instance.

    Valid values: ELB | Instance | N/A

    *)
  3. state : state option;
    (*

    The current state of the instance.

    Valid values: InService | OutOfService | Unknown

    *)
  4. instance_id : instance_id option;
    (*

    The ID of the instance.

    *)
}

Information about the state of an EC2 instance.

type nonrec instance_states = instance_state list
type nonrec add_availability_zones_output = {
  1. availability_zones : availability_zones option;
    (*

    The updated list of Availability Zones for the load balancer.

    *)
}

Contains the output of EnableAvailabilityZonesForLoadBalancer.

type nonrec add_availability_zones_input = {
  1. availability_zones : availability_zones;
    (*

    The Availability Zones. These must be in the same region as the load balancer.

    *)
  2. load_balancer_name : access_point_name;
    (*

    The name of the load balancer.

    *)
}

Contains the parameters for EnableAvailabilityZonesForLoadBalancer.

type nonrec detach_load_balancer_from_subnets_output = {
  1. subnets : subnets option;
    (*

    The IDs of the remaining subnets for the load balancer.

    *)
}

Contains the output of DetachLoadBalancerFromSubnets.

type nonrec detach_load_balancer_from_subnets_input = {
  1. subnets : subnets;
    (*

    The IDs of the subnets.

    *)
  2. load_balancer_name : access_point_name;
    (*

    The name of the load balancer.

    *)
}

Contains the parameters for DetachLoadBalancerFromSubnets.

type nonrec describe_tags_output = {
  1. tag_descriptions : tag_descriptions option;
    (*

    Information about the tags.

    *)
}

Contains the output for DescribeTags.

type nonrec describe_tags_input = {
  1. load_balancer_names : load_balancer_names_max20;
    (*

    The names of the load balancers.

    *)
}

Contains the parameters for DescribeTags.

type nonrec dependency_throttle_exception = {
  1. message : error_description option;
}

A request made by Elastic Load Balancing to another service exceeds the maximum request rate permitted for your account.

type nonrec describe_access_points_output = {
  1. next_marker : marker option;
    (*

    The marker to use when requesting the next set of results. If there are no additional results, the string is empty.

    *)
  2. load_balancer_descriptions : load_balancer_descriptions option;
    (*

    Information about the load balancers.

    *)
}

Contains the parameters for DescribeLoadBalancers.

type nonrec describe_access_points_input = {
  1. page_size : page_size option;
    (*

    The maximum number of results to return with this call (a number from 1 to 400). The default is 400.

    *)
  2. marker : marker option;
    (*

    The marker for the next set of results. (You received this marker from a previous call.)

    *)
  3. load_balancer_names : load_balancer_names option;
    (*

    The names of the load balancers.

    *)
}

Contains the parameters for DescribeLoadBalancers.

type nonrec describe_load_balancer_policy_types_output = {
  1. policy_type_descriptions : policy_type_descriptions option;
    (*

    Information about the policy types.

    *)
}

Contains the output of DescribeLoadBalancerPolicyTypes.

type nonrec describe_load_balancer_policy_types_input = {
  1. policy_type_names : policy_type_names option;
    (*

    The names of the policy types. If no names are specified, describes all policy types defined by Elastic Load Balancing.

    *)
}

Contains the parameters for DescribeLoadBalancerPolicyTypes.

type nonrec describe_load_balancer_policies_output = {
  1. policy_descriptions : policy_descriptions option;
    (*

    Information about the policies.

    *)
}

Contains the output of DescribeLoadBalancerPolicies.

type nonrec describe_load_balancer_policies_input = {
  1. policy_names : policy_names option;
    (*

    The names of the policies.

    *)
  2. load_balancer_name : access_point_name option;
    (*

    The name of the load balancer.

    *)
}

Contains the parameters for DescribeLoadBalancerPolicies.

type nonrec describe_load_balancer_attributes_output = {
  1. load_balancer_attributes : load_balancer_attributes option;
    (*

    Information about the load balancer attributes.

    *)
}

Contains the output of DescribeLoadBalancerAttributes.

type nonrec describe_load_balancer_attributes_input = {
  1. load_balancer_name : access_point_name;
    (*

    The name of the load balancer.

    *)
}

Contains the parameters for DescribeLoadBalancerAttributes.

type nonrec describe_end_point_state_output = {
  1. instance_states : instance_states option;
    (*

    Information about the health of the instances.

    *)
}

Contains the output for DescribeInstanceHealth.

type nonrec describe_end_point_state_input = {
  1. instances : instances option;
    (*

    The IDs of the instances.

    *)
  2. load_balancer_name : access_point_name;
    (*

    The name of the load balancer.

    *)
}

Contains the parameters for DescribeInstanceHealth.

type nonrec describe_account_limits_output = {
  1. next_marker : marker option;
    (*

    The marker to use when requesting the next set of results. If there are no additional results, the string is empty.

    *)
  2. limits : limits option;
    (*

    Information about the limits.

    *)
}
type nonrec describe_account_limits_input = {
  1. page_size : page_size option;
    (*

    The maximum number of results to return with this call.

    *)
  2. marker : marker option;
    (*

    The marker for the next set of results. (You received this marker from a previous call.)

    *)
}
type nonrec deregister_end_points_output = {
  1. instances : instances option;
    (*

    The remaining instances registered with the load balancer.

    *)
}

Contains the output of DeregisterInstancesFromLoadBalancer.

type nonrec deregister_end_points_input = {
  1. instances : instances;
    (*

    The IDs of the instances.

    *)
  2. load_balancer_name : access_point_name;
    (*

    The name of the load balancer.

    *)
}

Contains the parameters for DeregisterInstancesFromLoadBalancer.

type nonrec delete_load_balancer_policy_output = unit
type nonrec delete_load_balancer_policy_input = {
  1. policy_name : policy_name;
    (*

    The name of the policy.

    *)
  2. load_balancer_name : access_point_name;
    (*

    The name of the load balancer.

    *)
}

Contains the parameters for DeleteLoadBalancerPolicy.

type nonrec delete_load_balancer_listener_output = unit
type nonrec delete_load_balancer_listener_input = {
  1. load_balancer_ports : ports;
    (*

    The client port numbers of the listeners.

    *)
  2. load_balancer_name : access_point_name;
    (*

    The name of the load balancer.

    *)
}

Contains the parameters for DeleteLoadBalancerListeners.

type nonrec delete_access_point_output = unit
type nonrec delete_access_point_input = {
  1. load_balancer_name : access_point_name;
    (*

    The name of the load balancer.

    *)
}

Contains the parameters for DeleteLoadBalancer.

type nonrec duplicate_policy_name_exception = {
  1. message : error_description option;
}

A policy with the specified name already exists for this load balancer.

type nonrec create_load_balancer_policy_output = unit
type nonrec create_load_balancer_policy_input = {
  1. policy_attributes : policy_attributes option;
    (*

    The policy attributes.

    *)
  2. policy_type_name : policy_type_name;
    (*

    The name of the base policy type. To get the list of policy types, use DescribeLoadBalancerPolicyTypes.

    *)
  3. policy_name : policy_name;
    (*

    The name of the load balancer policy to be created. This name must be unique within the set of policies for this load balancer.

    *)
  4. load_balancer_name : access_point_name;
    (*

    The name of the load balancer.

    *)
}

Contains the parameters for CreateLoadBalancerPolicy.

type nonrec duplicate_listener_exception = {
  1. message : error_description option;
}

A listener already exists for the specified load balancer name and port, but with a different instance port, protocol, or SSL certificate.

type nonrec create_load_balancer_listener_output = unit
type nonrec create_load_balancer_listener_input = {
  1. listeners : listeners;
    (*

    The listeners.

    *)
  2. load_balancer_name : access_point_name;
    (*

    The name of the load balancer.

    *)
}

Contains the parameters for CreateLoadBalancerListeners.

type nonrec duplicate_tag_keys_exception = {
  1. message : error_description option;
}

A tag key was specified more than once.

type nonrec duplicate_access_point_name_exception = {
  1. message : error_description option;
}

The specified load balancer name already exists for this account.

type nonrec create_access_point_output = {
  1. dns_name : dns_name option;
    (*

    The DNS name of the load balancer.

    *)
}

Contains the output for CreateLoadBalancer.

type nonrec create_access_point_input = {
  1. tags : tag_list option;
    (*

    A list of tags to assign to the load balancer.

    For more information about tagging your load balancer, see Tag Your Classic Load Balancer in the Classic Load Balancers Guide.

    *)
  2. scheme : load_balancer_scheme option;
    (*

    The type of a load balancer. Valid only for load balancers in a VPC.

    By default, Elastic Load Balancing creates an Internet-facing load balancer with a DNS name that resolves to public IP addresses. For more information about Internet-facing and Internal load balancers, see Load Balancer Scheme in the Elastic Load Balancing User Guide.

    Specify internal to create a load balancer with a DNS name that resolves to private IP addresses.

    *)
  3. security_groups : security_groups option;
    (*

    The IDs of the security groups to assign to the load balancer.

    *)
  4. subnets : subnets option;
    (*

    The IDs of the subnets in your VPC to attach to the load balancer. Specify one subnet per Availability Zone specified in AvailabilityZones.

    *)
  5. availability_zones : availability_zones option;
    (*

    One or more Availability Zones from the same region as the load balancer.

    You must specify at least one Availability Zone.

    You can add more Availability Zones after you create the load balancer using EnableAvailabilityZonesForLoadBalancer.

    *)
  6. listeners : listeners;
    (*

    The listeners.

    For more information, see Listeners for Your Classic Load Balancer in the Classic Load Balancers Guide.

    *)
  7. load_balancer_name : access_point_name;
    (*

    The name of the load balancer.

    This name must be unique within your set of load balancers for the region, must have a maximum of 32 characters, must contain only alphanumeric characters or hyphens, and cannot begin or end with a hyphen.

    *)
}

Contains the parameters for CreateLoadBalancer.

Contains the parameters for CreateLBCookieStickinessPolicy.

Contains the parameters for CreateAppCookieStickinessPolicy.

type nonrec configure_health_check_output = {
  1. health_check : health_check option;
    (*

    The updated health check.

    *)
}

Contains the output of ConfigureHealthCheck.

type nonrec configure_health_check_input = {
  1. health_check : health_check;
    (*

    The configuration information.

    *)
  2. load_balancer_name : access_point_name;
    (*

    The name of the load balancer.

    *)
}

Contains the parameters for ConfigureHealthCheck.

type nonrec attach_load_balancer_to_subnets_output = {
  1. subnets : subnets option;
    (*

    The IDs of the subnets attached to the load balancer.

    *)
}

Contains the output of AttachLoadBalancerToSubnets.

type nonrec attach_load_balancer_to_subnets_input = {
  1. subnets : subnets;
    (*

    The IDs of the subnets to add. You can add only one subnet per Availability Zone.

    *)
  2. load_balancer_name : access_point_name;
    (*

    The name of the load balancer.

    *)
}

Contains the parameters for AttachLoaBalancerToSubnets.

type nonrec apply_security_groups_to_load_balancer_output = {
  1. security_groups : security_groups option;
    (*

    The IDs of the security groups associated with the load balancer.

    *)
}

Contains the output of ApplySecurityGroupsToLoadBalancer.

type nonrec apply_security_groups_to_load_balancer_input = {
  1. security_groups : security_groups;
    (*

    The IDs of the security groups to associate with the load balancer. Note that you cannot specify the name of the security group.

    *)
  2. load_balancer_name : access_point_name;
    (*

    The name of the load balancer.

    *)
}

Contains the parameters for ApplySecurityGroupsToLoadBalancer.

type nonrec add_tags_output = unit
type nonrec add_tags_input = {
  1. tags : tag_list;
    (*

    The tags.

    *)
  2. load_balancer_names : load_balancer_names;
    (*

    The name of the load balancer. You can specify one load balancer only.

    *)
}

Contains the parameters for AddTags.