Module Values.VpcOutputSettingsDescriptionSource

The properties for a private VPC Output

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

    The Availability Zones where the vpc subnets are located. The first Availability Zone applies to the first subnet in the list of subnets. The second Availability Zone applies to the second subnet.

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

    A list of Elastic Network Interfaces created by MediaLive in the customer's VPC

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

    A list of up EC2 VPC security group IDs attached to the Output VPC network interfaces.

    *)
  4. subnetIds : string list option;
    (*

    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 make : ?availabilityZones:??? -> ?networkInterfaceIds:??? -> ?securityGroupIds:??? -> ?subnetIds:??? -> 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