Module Values.PublicKeySource

Object specifying a public key used to sign stage participant tokens.

Sourcetype nonrec t = {
  1. arn : PublicKeyArn.t option;
    (*

    Public key ARN.

    *)
  2. name : PublicKeyName.t option;
    (*

    Public key name.

    *)
  3. publicKeyMaterial : PublicKeyMaterial.t option;
    (*

    Public key material.

    *)
  4. fingerprint : PublicKeyFingerprint.t option;
    (*

    The public key fingerprint, a short string used to identify or verify the full public key.

    *)
  5. tags : Tags.t option;
    (*

    Tags attached to the resource. Array of maps, each of the form string:string (key:value). See Best practices and strategies in Tagging AWS Resources and Tag Editor for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no constraints on tags beyond what is documented there.

    *)
}
Sourceval make : ?arn:??? -> ?name:??? -> ?publicKeyMaterial:??? -> ?fingerprint:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of PublicKeyArn.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