Module Values.UpdateChannelGroupRequestSource

Update the specified channel group. You can edit the description on a channel group for easier identification later from the AWS Elemental MediaPackage console. You can't edit the name of the channel group. 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. 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.

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

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

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