Module Values.GetChannelResponseSource

Retrieves the specified channel that's configured in AWS Elemental MediaPackage.

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

    The Amazon Resource Name (ARN) associated with the resource.

    *)
  2. channelName : String_.t option;
    (*

    The name that describes the channel. The name is the primary identifier for the channel, and must be unique for your account in the AWS Region and channel group.

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

    The name that describes the channel group. The name is the primary identifier for the channel group, and must be unique for your account in the AWS Region.

    *)
  4. createdAt : Timestamp.t option;
    (*

    The date and time the channel was created.

    *)
  5. modifiedAt : Timestamp.t option;
    (*

    The date and time the channel was modified.

    *)
  6. resetAt : Timestamp.t option;
    (*

    The time that the channel was last reset.

    *)
  7. description : ResourceDescription.t option;
    (*

    The description for your channel.

    *)
  8. ingestEndpoints : IngestEndpointList.t option;
  9. inputType : InputType.t option;
    (*

    The input type will be an immutable field which will be used to define whether the channel will allow CMAF ingest or HLS ingest. If unprovided, it will default to HLS to preserve current behavior. The allowed values are: HLS - The HLS streaming specification (which defines M3U8 manifests and TS segments). CMAF - The DASH-IF CMAF Ingest specification (which defines CMAF segments with optional DASH manifests).

    *)
  10. eTag : EntityTag.t option;
    (*

    The current Entity Tag (ETag) associated with this resource. The entity tag can be used to safely make concurrent updates to the resource.

    *)
  11. tags : TagMap.t option;
    (*

    The comma-separated list of tag key:value pairs assigned to the channel.

    *)
  12. inputSwitchConfiguration : InputSwitchConfiguration.t option;
    (*

    The configuration for input switching based on the media quality confidence score (MQCS) as provided from AWS Elemental MediaLive. This setting is valid only when InputType is CMAF.

    *)
  13. outputHeaderConfiguration : OutputHeaderConfiguration.t option;
    (*

    The settings for what common media server data (CMSD) headers AWS Elemental MediaPackage includes in responses to the CDN. This setting is valid only when InputType is CMAF.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?arn:??? -> ?channelName:??? -> ?channelGroupName:??? -> ?createdAt:??? -> ?modifiedAt:??? -> ?resetAt:??? -> ?description:??? -> ?ingestEndpoints:??? -> ?inputType:??? -> ?eTag:??? -> ?tags:??? -> ?inputSwitchConfiguration:??? -> ?outputHeaderConfiguration:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of String_.t | `Structure of (string * [> `Boolean of Boolean.t | `Integer of InputSwitchConfigurationPreferredInputInteger.t ]) list | `Timestamp of Timestamp.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