Show / Hide Table of Contents

Class PlaybackKeyPairProps

(experimental) Properties for creating a new Playback Key Pair.

Inheritance
object
PlaybackKeyPairProps
Implements
IPlaybackKeyPairProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Ivs.Alpha
Assembly: Amazon.CDK.AWS.IVS.Alpha.dll
Syntax (csharp)
public class PlaybackKeyPairProps : IPlaybackKeyPairProps
Syntax (vb)
Public Class PlaybackKeyPairProps Implements IPlaybackKeyPairProps
Remarks

Stability: Experimental

ExampleMetadata: infused

Examples
var keyPair = new PlaybackKeyPair(this, "PlaybackKeyPair", new PlaybackKeyPairProps {
                 PublicKeyMaterial = myPublicKeyPemString
             });

Synopsis

Constructors

PlaybackKeyPairProps()

(experimental) Properties for creating a new Playback Key Pair.

Properties

PlaybackKeyPairName

(experimental) An arbitrary string (a nickname) assigned to a playback key pair that helps the customer identify that resource.

PublicKeyMaterial

(experimental) The public portion of a customer-generated key pair.

Constructors

PlaybackKeyPairProps()

(experimental) Properties for creating a new Playback Key Pair.

public PlaybackKeyPairProps()
Remarks

Stability: Experimental

ExampleMetadata: infused

Examples
var keyPair = new PlaybackKeyPair(this, "PlaybackKeyPair", new PlaybackKeyPairProps {
                 PublicKeyMaterial = myPublicKeyPemString
             });

Properties

PlaybackKeyPairName

(experimental) An arbitrary string (a nickname) assigned to a playback key pair that helps the customer identify that resource.

public string? PlaybackKeyPairName { get; set; }
Property Value

string

Remarks

The value does not need to be unique.

Default: Automatically generated name

Stability: Experimental

PublicKeyMaterial

(experimental) The public portion of a customer-generated key pair.

public string PublicKeyMaterial { get; set; }
Property Value

string

Remarks

Stability: Experimental

Implements

IPlaybackKeyPairProps
Back to top Generated by DocFX