Skip to content

Import Public Key

ivsrealtime_import_public_key R Documentation

Import a public key to be used for signing stage participant tokens

Description

Import a public key to be used for signing stage participant tokens.

Usage

ivsrealtime_import_public_key(publicKeyMaterial, name, tags)

Arguments

publicKeyMaterial

[required] The content of the public key to be imported.

name

Name of the public key to be imported.

tags

Tags attached to the resource. Array of maps, each of the form string:string (key:value). See Tagging AWS Resources 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.

Value

A list with the following syntax:

list(
  publicKey = list(
    arn = "string",
    name = "string",
    publicKeyMaterial = "string",
    fingerprint = "string",
    tags = list(
      "string"
    )
  )
)

Request syntax

svc$import_public_key(
  publicKeyMaterial = "string",
  name = "string",
  tags = list(
    "string"
  )
)