interface PlaybackKeyPairProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IVS.PlaybackKeyPairProps |
Java | software.amazon.awscdk.services.ivs.PlaybackKeyPairProps |
Python | aws_cdk.aws_ivs.PlaybackKeyPairProps |
TypeScript (source) | @aws-cdk/aws-ivs » PlaybackKeyPairProps |
Properties for creating a new Playback Key Pair.
Example
const keyPair = new ivs.PlaybackKeyPair(this, 'PlaybackKeyPair', {
publicKeyMaterial: myPublicKeyPemString,
});
Properties
| Name | Type | Description |
|---|---|---|
| public | string | The public portion of a customer-generated key pair. |
| name? | string | An arbitrary string (a nickname) assigned to a playback key pair that helps the customer identify that resource. |
publicKeyMaterial
Type:
string
The public portion of a customer-generated key pair.
name?
Type:
string
(optional, default: None)
An arbitrary string (a nickname) assigned to a playback key pair that helps the customer identify that resource.
The value does not need to be unique.

.NET
Java
Python
TypeScript (