Module Values.GetKeyGroupConfigResultSource

Gets a key group configuration. To get a key group configuration, you must provide the key group's identifier. If the key group is referenced in a distribution's cache behavior, you can get the key group's identifier using ListDistributions or GetDistribution. If the key group is not referenced in a cache behavior, you can get the identifier using ListKeyGroups.

Sourcetype nonrec t = {
  1. keyGroupConfig : KeyGroupConfig.t option;
    (*

    The key group configuration.

    *)
  2. eTag : String_.t option;
    (*

    The identifier for this version of the key group.

    *)
}
Sourcetype nonrec error = [
  1. | `NoSuchResource of NoSuchResource.t
  2. | `Unknown_operation_error of string * string option
]
Sourceval make : ?keyGroupConfig:??? -> ?eTag:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `NoSuchResource of NoSuchResource.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `NoSuchResource of NoSuchResource.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval of_header_and_body : ((string, String_.t) Awso.Import.List.Assoc.t * KeyGroupConfig.t) -> 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 ]) 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