Values.CreateChannelGroupRequestSourceCreate a channel group to group your channels and origin endpoints. A channel group is the top-level resource that consists of channels and origin endpoints that are associated with it and that provides predictable URLs for stream delivery. All channels and origin endpoints within the channel group are guaranteed to share the DNS. You can create only one channel group with each request.
type nonrec t = {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. You can't use spaces in the name. You can't change the name after you create the channel group.
*)clientToken : IdempotencyToken.t option;A unique, case-sensitive token that you provide to ensure the idempotency of the request.
*)description : ResourceDescription.t option;Enter any descriptive text that helps you to identify the channel group.
*)}val make :
?clientToken:??? ->
?description:??? ->
?tags:??? ->
channelGroupName:ResourceName.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Map of
([> `String of TagKey.t ] * [> `String of TagValue.t ]) list
| `String of ResourceName.t ])
list ]