Module Values.DescribeNodeSummarySource

Placeholder documentation for DescribeNodeSummary

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

    The ARN of the Node. It is automatically assigned when the Node is created.

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

    An array of IDs. Each ID is one ChannelPlacementGroup that is associated with this Node. Empty if the Node is not yet associated with any groups.

    *)
  3. clusterId : string option;
    (*

    The ID of the Cluster that the Node belongs to.

    *)
  4. connectionState : NodeConnectionState.t option;
    (*

    The current connection state of the Node.

    *)
  5. id : string option;
    (*

    The unique ID of the Node. Unique in the Cluster. The ID is the resource-id portion of the ARN.

    *)
  6. instanceArn : string option;
    (*

    The EC2 ARN of the Instance associated with the Node.

    *)
  7. managedInstanceId : string option;
    (*

    At the routing layer will get it from the callerId/context for use with bring your own device.

    *)
  8. name : string option;
    (*

    The name that you specified for the Node.

    *)
  9. nodeInterfaceMappings : NodeInterfaceMapping.t list option;
    (*

    Documentation update needed

    *)
  10. role : NodeRole.t option;
    (*

    The initial role current role of the Node in the Cluster. ACTIVE means the Node is available for encoding. BACKUP means the Node is a redundant Node and might get used if an ACTIVE Node fails.

    *)
  11. state : NodeState.t option;
    (*

    The current state of the Node.

    *)
  12. sdiSourceMappings : SdiSourceMappings.t option;
    (*

    An array of SDI source mappings. Each mapping connects one logical SdiSource to the physical SDI card and port that the physical SDI source uses.

    *)
}
Sourceval make : ?arn:??? -> ?channelPlacementGroups:??? -> ?clusterId:??? -> ?connectionState:??? -> ?id:??? -> ?instanceArn:??? -> ?managedInstanceId:??? -> ?name:??? -> ?nodeInterfaceMappings:??? -> ?role:??? -> ?state:??? -> ?sdiSourceMappings:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of string | `Structure of (string * [> `Enum of string | `Integer of int | `List of [> `String of string ] list | `String of string ]) list ] list | `String of string ]) 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