interface CfnPlaybackKeyPairProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Ivs.CfnPlaybackKeyPairProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsivs#CfnPlaybackKeyPairProps |
Java | software.amazon.awscdk.services.ivs.CfnPlaybackKeyPairProps |
Python | aws_cdk.aws_ivs.CfnPlaybackKeyPairProps |
TypeScript | aws-cdk-lib » aws_ivs » CfnPlaybackKeyPairProps |
Properties for defining a CfnPlaybackKeyPair.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-playbackkeypair.html
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
| Name | Type | Description |
|---|---|---|
| name? | string | Playback-key-pair name. |
| public | string | The public portion of a customer-generated key pair. |
| tags? | Cfn[] | 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.
Note that this field is required to create the AWS::IVS::PlaybackKeyPair resource.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.
For more information, see Tag .

.NET
Go
Java
Python
TypeScript