Module Values.CreateVpcConnectorRequestSource

Create an App Runner VPC connector resource. App Runner requires this resource when you want to associate your App Runner service to a custom Amazon Virtual Private Cloud (Amazon VPC).

Sourcetype nonrec t = {
  1. vpcConnectorName : VpcConnectorName.t;
    (*

    A name for the VPC connector.

    *)
  2. subnets : StringList.t;
    (*

    A list of IDs of subnets that App Runner should use when it associates your service with a custom Amazon VPC. Specify IDs of subnets of a single Amazon VPC. App Runner determines the Amazon VPC from the subnets you specify. App Runner only supports subnets of IP address type IPv4 and dual stack (IPv4 and IPv6).

    *)
  3. securityGroups : StringList.t option;
    (*

    A list of IDs of security groups that App Runner should use for access to Amazon Web Services resources under the specified subnets. If not specified, App Runner uses the default security group of the Amazon VPC. The default security group allows all outbound traffic.

    *)
  4. tags : TagList.t option;
    (*

    A list of metadata items that you can associate with your VPC connector resource. A tag is a key-value pair.

    *)
}
Sourceval context_ : string
Sourceval make : ?securityGroups:??? -> ?tags:??? -> vpcConnectorName:VpcConnectorName.t -> subnets:StringList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t | `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of VpcConnectorName.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