Module Values.EgressConfigurationSource

Describes configuration settings related to outbound network traffic of an App Runner service.

Sourcetype nonrec t = {
  1. egressType : EgressType.t option;
    (*

    The type of egress configuration. Set to DEFAULT for access to resources hosted on public networks. Set to VPC to associate your service to a custom VPC specified by VpcConnectorArn.

    *)
  2. vpcConnectorArn : AppRunnerResourceArn.t option;
    (*

    The Amazon Resource Name (ARN) of the App Runner VPC connector that you want to associate with your App Runner service. Only valid when EgressType = VPC.

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