Module Values.NetworkConfigurationSource

Describes configuration settings related to network traffic of an App Runner service. Consists of embedded objects for each configurable network feature.

Sourcetype nonrec t = {
  1. egressConfiguration : EgressConfiguration.t option;
    (*

    Network configuration settings for outbound message traffic.

    *)
  2. ingressConfiguration : IngressConfiguration.t option;
    (*

    Network configuration settings for inbound message traffic.

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

    App Runner provides you with the option to choose between IPv4 and dual stack (IPv4 and IPv6). This is an optional parameter. If you do not specify an IpAddressType, it defaults to select IPv4.

    *)
}
Sourceval make : ?egressConfiguration:??? -> ?ingressConfiguration:??? -> ?ipAddressType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `String of AppRunnerResourceArn.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