Module Values.KeyGroupConfigSource

A key group configuration. A key group contains a list of public keys that you can use with CloudFront signed URLs and signed cookies.

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

    A name to identify the key group.

    *)
  2. items : PublicKeyIdList.t;
    (*

    A list of the identifiers of the public keys in the key group.

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

    A comment to describe the key group. The comment cannot be longer than 128 characters.

    *)
}
Sourceval context_ : string
Sourceval make : ?comment:??? -> name:String_.t -> items:PublicKeyIdList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t ] list | `String of String_.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