Module Values.RouterNetworkInterfaceSource

A router network interface in AWS Elemental MediaConnect. A router network interface is a network interface that can be associated with one or more router inputs and outputs.

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

    The name of the router network interface.

    *)
  2. arn : RouterNetworkInterfaceArn.t option;
    (*

    The Amazon Resource Name (ARN) of the router network interface.

    *)
  3. id : String_.t option;
    (*

    The unique identifier of the router network interface.

    *)
  4. state : RouterNetworkInterfaceState.t option;
    (*

    The current state of the router network interface.

    *)
  5. networkInterfaceType : RouterNetworkInterfaceType.t option;
    (*

    The type of the router network interface.

    *)
  6. configuration : RouterNetworkInterfaceConfiguration.t option;
  7. associatedOutputCount : Integer.t option;
    (*

    The number of router outputs associated with the network interface.

    *)
  8. associatedInputCount : Integer.t option;
    (*

    The number of router inputs associated with the network interface.

    *)
  9. regionName : String_.t option;
    (*

    The Amazon Web Services Region where the router network interface is located.

    *)
  10. createdAt : SyntheticTimestamp_date_time.t option;
    (*

    The timestamp when the router network interface was created.

    *)
  11. updatedAt : SyntheticTimestamp_date_time.t option;
    (*

    The timestamp when the router network interface was last updated.

    *)
  12. tags : (String_.t * String_.t) list option;
    (*

    Key-value pairs that can be used to tag and organize this router network interface.

    *)
}
Sourceval make : ?name:??? -> ?arn:??? -> ?id:??? -> ?state:??? -> ?networkInterfaceType:??? -> ?configuration:??? -> ?associatedOutputCount:??? -> ?associatedInputCount:??? -> ?regionName:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Integer.t | `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list | `String of String_.t | `Structure of (string * [> `Structure of (string * [> `List of [> `String of String_.t | `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.t ]) list ]) list | `Timestamp of SyntheticTimestamp_date_time.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