Module Values.LoadBalancerSource

Information about a load balancer.

Sourcetype nonrec t = {
  1. loadBalancerArn : LoadBalancerArn.t option;
    (*

    The Amazon Resource Name (ARN) of the load balancer.

    *)
  2. dNSName : DNSName.t option;
    (*

    The public DNS name of the load balancer.

    *)
  3. canonicalHostedZoneId : CanonicalHostedZoneId.t option;
    (*

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

    *)
  4. createdTime : CreatedTime.t option;
    (*

    The date and time the load balancer was created.

    *)
  5. loadBalancerName : LoadBalancerName.t option;
    (*

    The name of the load balancer.

    *)
  6. scheme : LoadBalancerSchemeEnum.t option;
    (*

    The nodes of an Internet-facing load balancer have public IP addresses. The DNS name of an Internet-facing load balancer is publicly resolvable to the public IP addresses of the nodes. Therefore, Internet-facing load balancers can route requests from clients over the internet. The nodes of an internal load balancer have only private IP addresses. The DNS name of an internal load balancer is publicly resolvable to the private IP addresses of the nodes. Therefore, internal load balancers can route requests only from clients with access to the VPC for the load balancer.

    *)
  7. vpcId : VpcId.t option;
    (*

    The ID of the VPC for the load balancer.

    *)
  8. state : LoadBalancerState.t option;
    (*

    The state of the load balancer.

    *)
  9. type_ : LoadBalancerTypeEnum.t option;
    (*

    The type of load balancer.

    *)
  10. availabilityZones : AvailabilityZones.t option;
    (*

    The subnets for the load balancer.

    *)
  11. securityGroups : SecurityGroups.t option;
    (*

    The IDs of the security groups for the load balancer.

    *)
  12. ipAddressType : IpAddressType.t option;
    (*

    The type of IP addresses used for public or private connections by the subnets attached to your load balancer. [Application Load Balancers] The possible values are ipv4 (IPv4 addresses), dualstack (IPv4 and IPv6 addresses), and dualstack-without-public-ipv4 (public IPv6 addresses and private IPv4 and IPv6 addresses). [Network Load Balancers and Gateway Load Balancers] The possible values are ipv4 (IPv4 addresses) and dualstack (IPv4 and IPv6 addresses).

    *)
  13. customerOwnedIpv4Pool : CustomerOwnedIpv4Pool.t option;
    (*

    [Application Load Balancers on Outposts] The ID of the customer-owned address pool.

    *)
  14. enforceSecurityGroupInboundRulesOnPrivateLinkTraffic : EnforceSecurityGroupInboundRulesOnPrivateLinkTraffic.t option;
    (*

    Indicates whether to evaluate inbound security group rules for traffic sent to a Network Load Balancer through Amazon Web Services PrivateLink.

    *)
  15. enablePrefixForIpv6SourceNat : EnablePrefixForIpv6SourceNatEnum.t option;
    (*

    [Network Load Balancers with UDP listeners] Indicates whether to use an IPv6 prefix from each subnet for source NAT. The IP address type must be dualstack. The default value is off.

    *)
  16. ipamPools : IpamPools.t option;
    (*

    [Application Load Balancers] The IPAM pool in use by the load balancer, if configured.

    *)
}
Sourceval make : ?loadBalancerArn:??? -> ?dNSName:??? -> ?canonicalHostedZoneId:??? -> ?createdTime:??? -> ?loadBalancerName:??? -> ?scheme:??? -> ?vpcId:??? -> ?state:??? -> ?type_:??? -> ?availabilityZones:??? -> ?securityGroups:??? -> ?ipAddressType:??? -> ?customerOwnedIpv4Pool:??? -> ?enforceSecurityGroupInboundRulesOnPrivateLinkTraffic:??? -> ?enablePrefixForIpv6SourceNat:??? -> ?ipamPools:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of SecurityGroupId.t | `Structure of (string * [> `List of [> `String of SourceNatIpv6Prefix.t | `Structure of (string * [> `String of IpAddress.t ]) list ] list | `String of ZoneName.t ]) list ] list | `String of LoadBalancerArn.t | `Structure of (string * [> `Enum of string | `String of StateReason.t ]) list | `Timestamp of CreatedTime.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