@aws-cdk_aws-ivs-alpha.PlaybackKeyPairProps

interface PlaybackKeyPairProps ๐Ÿ”น

LanguageType name
.NETAmazon.CDK.AWS.Ivs.Alpha.PlaybackKeyPairProps
Gogithub.com/aws/aws-cdk-go/awscdkivsalpha/v2#PlaybackKeyPairProps
Javasoftware.amazon.awscdk.services.ivs.alpha.PlaybackKeyPairProps
Pythonaws_cdk.aws_ivs_alpha.PlaybackKeyPairProps
TypeScript (source)@aws-cdk/aws-ivs-alpha ยป PlaybackKeyPairProps

Properties for creating a new Playback Key Pair.

Example

const keyPair = new ivs.PlaybackKeyPair(this, 'PlaybackKeyPair', {
  publicKeyMaterial: myPublicKeyPemString,
});

Properties

NameTypeDescription
publicKeyMaterial๐Ÿ”นstringThe public portion of a customer-generated key pair.
playbackKeyPairName?๐Ÿ”นstringAn 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.


playbackKeyPairName?๐Ÿ”น

Type: string (optional, default: Automatically generated name)

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.