Module Values.CreateChannelResponseSource

Creates a new Channel.

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

    The Amazon Resource Name (ARN) assigned to the Channel.

    *)
  2. createdAt : string option;
    (*

    The date and time the Channel was created.

    *)
  3. description : string option;
    (*

    A short text description of the Channel.

    *)
  4. egressAccessLogs : EgressAccessLogs.t option;
  5. hlsIngest : HlsIngest.t option;
  6. id : string option;
    (*

    The ID of the Channel.

    *)
  7. ingressAccessLogs : IngressAccessLogs.t option;
  8. tags : Tags.t option;
}
Sourcetype nonrec error = [
  1. | `ForbiddenException of ForbiddenException.t
  2. | `InternalServerErrorException of InternalServerErrorException.t
  3. | `NotFoundException of NotFoundException.t
  4. | `ServiceUnavailableException of ServiceUnavailableException.t
  5. | `TooManyRequestsException of TooManyRequestsException.t
  6. | `UnprocessableEntityException of UnprocessableEntityException.t
  7. | `Unknown_operation_error of string * string option
]
Sourceval make : ?arn:??? -> ?createdAt:??? -> ?description:??? -> ?egressAccessLogs:??? -> ?hlsIngest:??? -> ?id:??? -> ?ingressAccessLogs:??? -> ?tags:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ForbiddenException of ForbiddenException.t | `InternalServerErrorException of InternalServerErrorException.t | `NotFoundException of NotFoundException.t | `ServiceUnavailableException of ServiceUnavailableException.t | `TooManyRequestsException of TooManyRequestsException.t | `Unknown_operation_error of string * string option | `UnprocessableEntityException of UnprocessableEntityException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `ForbiddenException of ForbiddenException.t | `InternalServerErrorException of InternalServerErrorException.t | `NotFoundException of NotFoundException.t | `ServiceUnavailableException of ServiceUnavailableException.t | `TooManyRequestsException of TooManyRequestsException.t | `Unknown_operation_error of string * string option | `UnprocessableEntityException of UnprocessableEntityException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of string ] * [> `String of string ]) list | `String of string | `Structure of (string * [> `List of [> `Structure of (string * [> `String of string ]) list ] list | `String of string ]) list ]) 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