Module Values.PublicKeyConfigSource

Configuration information about 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. callerReference : String_.t;
    (*

    A string included in the request to help make sure that the request can't be replayed.

    *)
  2. name : String_.t;
    (*

    A name to help identify the public key.

    *)
  3. encodedKey : String_.t;
    (*

    The public key that you can use with signed URLs and signed cookies, or with field-level encryption.

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

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

    *)
}
Sourceval context_ : string
Sourceval make : ?comment:??? -> callerReference:String_.t -> name:String_.t -> encodedKey:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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