Module Values.UpdateChannelRequestSource

Update the specified channel. You can edit if MediaPackage sends ingest or egress access logs to the CloudWatch log group, if content will be encrypted, the description on a channel, and your channel's policy settings. You can't edit the name of the channel or CloudFront distribution details. Any edits you make that impact the video output may not be reflected for a few minutes.

Sourcetype nonrec t = {
  1. channelGroupName : ResourceName.t;
    (*

    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.

    *)
  2. channelName : ResourceName.t;
    (*

    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. eTag : EntityTag.t option;
    (*

    The expected current Entity Tag (ETag) for the resource. If the specified ETag does not match the resource's current entity tag, the update request will be rejected.

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

    Any descriptive information that you want to add to the channel for future identification purposes.

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

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

    *)
}
Sourceval context_ : string
Sourceval make : ?eTag:??? -> ?description:??? -> ?inputSwitchConfiguration:??? -> ?outputHeaderConfiguration:??? -> channelGroupName:ResourceName.t -> channelName:ResourceName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ResourceName.t | `Structure of (string * [> `Boolean of Boolean.t | `Integer of InputSwitchConfigurationPreferredInputInteger.t ]) 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