Module Values.ChannelSource

A Channel resource configuration.

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;
}
Sourceval make : ?arn:??? -> ?createdAt:??? -> ?description:??? -> ?egressAccessLogs:??? -> ?hlsIngest:??? -> ?id:??? -> ?ingressAccessLogs:??? -> ?tags:??? -> unit -> 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