Module Values.VpcOutputSettingsSource

The properties for a private VPC Output When this property is specified, the output egress addresses will be created in a user specified VPC

Sourcetype nonrec t = {
  1. publicAddressAllocationIds : string list option;
    (*

    List of public address allocation ids to associate with ENIs that will be created in Output VPC. Must specify one for SINGLE_PIPELINE, two for STANDARD channels

    *)
  2. securityGroupIds : string list option;
    (*

    A list of up to 5 EC2 VPC security group IDs to attach to the Output VPC network interfaces. If none are specified then the VPC default security group will be used

    *)
  3. subnetIds : string list;
    (*

    A list of VPC subnet IDs from the same VPC. If STANDARD channel, subnet IDs must be mapped to two unique availability zones (AZ).

    *)
}
Sourceval context_ : string
Sourceval make : ?publicAddressAllocationIds:??? -> ?securityGroupIds:??? -> subnetIds:string list -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of string ] 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