Module Values.CreateChannelGroupRequestSource

Create 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.

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. You can't use spaces in the name. You can't change the name after you create the channel group.

    *)
  2. clientToken : IdempotencyToken.t option;
    (*

    A unique, case-sensitive token that you provide to ensure the idempotency of the request.

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

    Enter any descriptive text that helps you to identify the channel group.

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

    A comma-separated list of tag key:value pairs that you define. For example: "Key1": "Value1", "Key2": "Value2"

    *)
}
Sourceval context_ : string
Sourceval make : ?clientToken:??? -> ?description:??? -> ?tags:??? -> channelGroupName:ResourceName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `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