Show / Hide Table of Contents

Class PlaybackKeyPairProps

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

Inheritance
System.Object
PlaybackKeyPairProps
Implements
IPlaybackKeyPairProps
Namespace: Amazon.CDK.AWS.IVS
Assembly: Amazon.CDK.AWS.IVS.dll
Syntax (csharp)
public class PlaybackKeyPairProps : Object, IPlaybackKeyPairProps
Syntax (vb)
Public Class PlaybackKeyPairProps
    Inherits Object
    Implements IPlaybackKeyPairProps
Remarks

Stability: Experimental

ExampleMetadata: infused

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

Synopsis

Constructors

PlaybackKeyPairProps()

Properties

Name

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

public PlaybackKeyPairProps()

Properties

Name

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

public string Name { get; set; }
Property Value

System.String

Remarks

The value does not need to be unique.

Default: None

Stability: Experimental

PublicKeyMaterial

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

public string PublicKeyMaterial { get; set; }
Property Value

System.String

Remarks

Stability: Experimental

Implements

IPlaybackKeyPairProps
Back to top Generated by DocFX