Module Values.DeleteNodeResponseSource

Placeholder documentation for DeleteNodeResponse

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 ARN of the EC2 instance hosting the Node.

    *)
  7. name : string option;
    (*

    The name that you specified for the Node.

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

    Documentation update needed

    *)
  9. 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.

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

    The current state of the Node.

    *)
  11. 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.

    *)
}
Sourcetype nonrec error = [
  1. | `BadGatewayException of BadGatewayException.t
  2. | `BadRequestException of BadRequestException.t
  3. | `ConflictException of ConflictException.t
  4. | `ForbiddenException of ForbiddenException.t
  5. | `GatewayTimeoutException of GatewayTimeoutException.t
  6. | `InternalServerErrorException of InternalServerErrorException.t
  7. | `NotFoundException of NotFoundException.t
  8. | `TooManyRequestsException of TooManyRequestsException.t
  9. | `Unknown_operation_error of string * string option
]
Sourceval make : ?arn:??? -> ?channelPlacementGroups:??? -> ?clusterId:??? -> ?connectionState:??? -> ?id:??? -> ?instanceArn:??? -> ?name:??? -> ?nodeInterfaceMappings:??? -> ?role:??? -> ?state:??? -> ?sdiSourceMappings:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `BadGatewayException of BadGatewayException.t | `BadRequestException of BadRequestException.t | `ConflictException of ConflictException.t | `ForbiddenException of ForbiddenException.t | `GatewayTimeoutException of GatewayTimeoutException.t | `InternalServerErrorException of InternalServerErrorException.t | `NotFoundException of NotFoundException.t | `TooManyRequestsException of TooManyRequestsException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `BadGatewayException of BadGatewayException.t | `BadRequestException of BadRequestException.t | `ConflictException of ConflictException.t | `ForbiddenException of ForbiddenException.t | `GatewayTimeoutException of GatewayTimeoutException.t | `InternalServerErrorException of InternalServerErrorException.t | `NotFoundException of NotFoundException.t | `TooManyRequestsException of TooManyRequestsException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.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