Module Values.PublicKeySource

A public key that you can use with signed URLs and signed cookies, or with field-level encryption. CloudFront supports signed URLs and signed cookies with RSA 2048 or ECDSA 256 key signatures. Field-level encryption is only compatible with RSA 2048 key signatures.

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

    The identifier of the public key.

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

    The date and time when the public key was uploaded.

    *)
  3. publicKeyConfig : PublicKeyConfig.t option;
    (*

    Configuration information about a public key that you can use with signed URLs and signed cookies, or with field-level encryption.

    *)
}
Sourceval make : ?id:??? -> ?createdTime:??? -> ?publicKeyConfig:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Structure of (string * [> `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