Module Values.ActiveTrustedSignersSource

A list of Amazon Web Services accounts and the active CloudFront key pairs in each account that CloudFront can use to verify the signatures of signed URLs and signed cookies.

Sourcetype nonrec t = {
  1. enabled : Boolean.t option;
    (*

    This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.

    *)
  2. quantity : Integer.t option;
    (*

    The number of Amazon Web Services accounts in the list.

    *)
  3. items : SignerList.t option;
    (*

    A list of Amazon Web Services accounts and the identifiers of active CloudFront key pairs in each account that CloudFront can use to verify the signatures of signed URLs and signed cookies.

    *)
}
Sourceval make : ?enabled:??? -> ?quantity:??? -> ?items:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of Integer.t | `List of [> `Structure of (string * [> `String of String_.t | `Structure of (string * [> `Integer of Integer.t | `List of [> `String of String_.t ] list ]) list ]) list ] 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