aws-cdk-lib.aws_ivs.CfnPlaybackKeyPairProps

interface CfnPlaybackKeyPairProps

LanguageType name
.NETAmazon.CDK.AWS.Ivs.CfnPlaybackKeyPairProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsivs#CfnPlaybackKeyPairProps
Javasoftware.amazon.awscdk.services.ivs.CfnPlaybackKeyPairProps
Pythonaws_cdk.aws_ivs.CfnPlaybackKeyPairProps
TypeScript aws-cdk-lib » aws_ivs » CfnPlaybackKeyPairProps

Properties for defining a CfnPlaybackKeyPair.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ivs as ivs } from 'aws-cdk-lib';
const cfnPlaybackKeyPairProps: ivs.CfnPlaybackKeyPairProps = {
  name: 'name',
  publicKeyMaterial: 'publicKeyMaterial',
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
name?stringPlayback-key-pair name.
publicKeyMaterial?stringThe public portion of a customer-generated key pair.
tags?CfnTag[]An array of key-value pairs to apply to this resource.

name?

Type: string (optional)

Playback-key-pair name.

The value does not need to be unique.


publicKeyMaterial?

Type: string (optional)

The public portion of a customer-generated key pair.


tags?

Type: CfnTag[] (optional)

An array of key-value pairs to apply to this resource.

For more information, see Tag .