Module Values.ImportPlaybackKeyPairRequestSource

Imports the public portion of a new key pair and returns its arn and fingerprint. The privateKey can then be used to generate viewer authorization tokens, to grant viewers access to private channels. For more information, see Setting Up Private Channels in the Amazon IVS User Guide.

Sourcetype nonrec t = {
  1. publicKeyMaterial : PlaybackPublicKeyMaterial.t;
    (*

    The public portion of a customer-generated key pair.

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

    Playback-key-pair name. The value does not need to be unique.

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

    Any tags provided with the request are added to the playback key pair tags. See Best practices and strategies in Tagging Amazon Web Services Resources and Tag Editor for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no service-specific constraints beyond what is documented there.

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