Module Values.ManagedIngressPathSource

The entry point into the Express service.

Sourcetype nonrec t = {
  1. accessType : AccessType.t option;
    (*

    The type of access to the endpoint for the Express service.

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

    The endpoint for access to the Express service.

    *)
  3. loadBalancer : ManagedLoadBalancer.t option;
    (*

    The Application Load Balancer associated with the Express service.

    *)
  4. loadBalancerSecurityGroups : ManagedSecurityGroups.t option;
    (*

    The security groups associated with the Application Load Balancer.

    *)
  5. certificate : ManagedCertificate.t option;
    (*

    The ACM certificate for the Express service's domain.

    *)
  6. listener : ManagedListener.t option;
    (*

    The listeners associated with the Application Load Balancer.

    *)
  7. rule : ManagedListenerRule.t option;
    (*

    The listener rules for the Application Load Balancer.

    *)
  8. targetGroups : ManagedTargetGroups.t option;
    (*

    The target groups associated with the Application Load Balancer.

    *)
}
Sourceval make : ?accessType:??? -> ?endpoint:??? -> ?loadBalancer:??? -> ?loadBalancerSecurityGroups:??? -> ?certificate:??? -> ?listener:??? -> ?rule:??? -> ?targetGroups:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `Integer of Integer.t | `String of String_.t | `Timestamp of Timestamp.t ]) list ] list | `String of String_.t | `Structure of (string * [> `Enum of string | `List of [> `String of String_.t ] list | `String of String_.t | `Timestamp of Timestamp.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