Module Values.ManagedLoadBalancerSource

The Application Load Balancer associated with the Express service.

Sourcetype nonrec t = {
  1. arn : String_.t option;
    (*

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

    *)
  2. status : ManagedResourceStatus.t option;
    (*

    The status of the load balancer.

    *)
  3. statusReason : String_.t option;
    (*

    Information about why the load balancer is in the current status.

    *)
  4. updatedAt : Timestamp.t option;
    (*

    The Unix timestamp for when this load balancer was most recently updated.

    *)
  5. scheme : String_.t option;
    (*

    The scheme of the load balancer. By default, the scheme of the load balancer is internet-facing.

    *)
  6. subnetIds : StringList.t option;
    (*

    The IDs of the subnets associated with the load balancer.

    *)
  7. securityGroupIds : StringList.t option;
    (*

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

    *)
}
Sourceval make : ?arn:??? -> ?status:??? -> ?statusReason:??? -> ?updatedAt:??? -> ?scheme:??? -> ?subnetIds:??? -> ?securityGroupIds:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of String_.t ] list | `String of String_.t | `Timestamp of Timestamp.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