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
|
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"
)
)