Module Values_0.AnalysisLoadBalancerTargetSource

Describes a load balancer target.

Sourcetype nonrec t = {
  1. address : IpAddress.t option;
    (*

    The IP address.

    *)
  2. availabilityZone : String_.t option;
    (*

    The Availability Zone.

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

    The ID of the Availability Zone.

    *)
  4. instance : AnalysisComponent.t option;
    (*

    Information about the instance.

    *)
  5. port : Port.t option;
    (*

    The port on which the target is listening.

    *)
}
Sourceval make : ?address:??? -> ?availabilityZone:??? -> ?availabilityZoneId:??? -> ?instance:??? -> ?port:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Port.t | `String of IpAddress.t | `Structure of (string * [> `String of String_.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