Module Values.KeyGroupSource

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

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

    The identifier for the key group.

    *)
  2. lastModifiedTime : Timestamp.t option;
    (*

    The date and time when the key group was last modified.

    *)
  3. keyGroupConfig : KeyGroupConfig.t option;
    (*

    The key group configuration.

    *)
}
Sourceval make : ?id:??? -> ?lastModifiedTime:??? -> ?keyGroupConfig:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Structure of (string * [> `List of [> `String of String_.t ] list | `String of String_.t ]) list | `Timestamp of Timestamp.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