Module Values.VpcInterfaceSource

The settings for a VPC source.

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

    Immutable and has to be a unique against other VpcInterfaces in this Flow.

    *)
  2. networkInterfaceIds : String_.t list option;
    (*

    IDs of the network interfaces created in customer's account by MediaConnect.

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

    The type of network interface.

    *)
  4. roleArn : String_.t option;
    (*

    A role Arn MediaConnect can assume to create ENIs in your account.

    *)
  5. securityGroupIds : String_.t list option;
    (*

    Security Group IDs to be used on ENI.

    *)
  6. subnetId : String_.t option;
    (*

    Subnet must be in the AZ of the Flow.

    *)
}
Sourceval make : ?name:??? -> ?networkInterfaceIds:??? -> ?networkInterfaceType:??? -> ?roleArn:??? -> ?securityGroupIds:??? -> ?subnetId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `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