Module Values.VpcInterfaceRequestSource

The details of the VPC interfaces that you want to add to the flow.

Sourcetype nonrec t = {
  1. name : String_.t;
    (*

    The name for the VPC interface. This name must be unique within the flow.

    *)
  2. networkInterfaceType : NetworkInterfaceType.t option;
    (*

    The type of network interface.

    *)
  3. roleArn : String_.t;
    (*

    The Amazon Resource Name (ARN) of the role that you created when you set up MediaConnect as a trusted service.

    *)
  4. securityGroupIds : String_.t list;
    (*

    A virtual firewall to control inbound and outbound traffic.

    *)
  5. subnetId : String_.t;
    (*

    The subnet IDs that you want to use for your VPC interface. A range of IP addresses in your VPC. When you create your VPC, you specify a range of IPv4 addresses for the VPC in the form of a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16. This is the primary CIDR block for your VPC. When you create a subnet for your VPC, you specify the CIDR block for the subnet, which is a subset of the VPC CIDR block. The subnets that you use across all VPC interfaces on the flow must be in the same Availability Zone as the flow.

    *)
  6. vpcInterfaceTags : (String_.t * String_.t) list option;
    (*

    The key-value pairs that can be used to tag and organize the VPC network interface.

    *)
}
Sourceval context_ : string
Sourceval make : ?networkInterfaceType:??? -> ?vpcInterfaceTags:??? -> name:String_.t -> roleArn:String_.t -> securityGroupIds:String_.t list -> subnetId:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of String_.t ] list | `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list | `String of String_.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