Module Values.AwsElbv2LoadBalancerDetailsSource

Information about a load balancer.

Sourcetype nonrec t = {
  1. availabilityZones : AvailabilityZones.t option;
    (*

    The Availability Zones for the load balancer.

    *)
  2. canonicalHostedZoneId : NonEmptyString.t option;
    (*

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

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

    Indicates when the load balancer was created. For more information about the validation and formatting of timestamp fields in Security Hub CSPM, see Timestamps.

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

    The public DNS name of the load balancer.

    *)
  5. ipAddressType : NonEmptyString.t option;
    (*

    The type of IP addresses used by the subnets for your load balancer. The possible values are ipv4 (for IPv4 addresses) and dualstack (for IPv4 and IPv6 addresses).

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

    The nodes of an Internet-facing load balancer have public IP addresses.

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

    The IDs of the security groups for the load balancer.

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

    The state of the load balancer.

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

    The type of load balancer.

    *)
  10. vpcId : NonEmptyString.t option;
    (*

    The ID of the VPC for the load balancer.

    *)
  11. loadBalancerAttributes : AwsElbv2LoadBalancerAttributes.t option;
    (*

    Attributes of the load balancer.

    *)
}
Sourceval make : ?availabilityZones:??? -> ?canonicalHostedZoneId:??? -> ?createdTime:??? -> ?dNSName:??? -> ?ipAddressType:??? -> ?scheme:??? -> ?securityGroups:??? -> ?state:??? -> ?type_:??? -> ?vpcId:??? -> ?loadBalancerAttributes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of NonEmptyString.t | `Structure of (string * [> `String of NonEmptyString.t ]) list ] list | `String of NonEmptyString.t | `Structure of (string * [> `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