AWS::IVS::PlaybackKeyPair
The AWS::IVS::PlaybackKeyPair resource specifies an Amazon IVS playback key pair. Amazon IVS
uses a public playback key to validate playback tokens that have been signed with the
corresponding private key. For more information, see Setting Up Private Channels
in the Amazon Interactive Video Service User Guide.
Syntax
To declare this entity in your Amazon CloudFormation template, use the following syntax:
JSON
{ "Type" : "AWS::IVS::PlaybackKeyPair", "Properties" : { "Name" :String, "PublicKeyMaterial" :String, "Tags" :[ Tag, ... ]} }
YAML
Type: AWS::IVS::PlaybackKeyPair Properties: Name:StringPublicKeyMaterial:StringTags:- Tag
Properties
Name-
Playback-key-pair name. The value does not need to be unique.
Required: No
Type: String
Minimum:
0Maximum:
128Pattern:
^[a-zA-Z0-9-_]*$Update requires: Replacement
PublicKeyMaterial-
The public portion of a customer-generated key pair.
Required: No
Type: String
Update requires: Replacement
Tags-
An array of key-value pairs to apply to this resource.
For more information, see Tag.
Required: No
Type: List of Tag
Update requires: No interruption
Return values
Ref
When you pass the logical ID of this resource to the intrinsic Reffunction, Refreturns the playback key pair ARN. For example:
{ "Ref": "myPlaybackKeyPair" }
For the Amazon IVS playback key pair
myPlaybackKeyPair, Ref returns the playback key pair
ARN.
For more information about using the Reffunction, see Ref.
Fn::GetAtt
The Fn::GetAttintrinsic function returns a value for a specified attribute of this type. The following are the available attributes and sample return values.
For more information about using the Fn::GetAttintrinsic function, see Fn::GetAtt.
Examples
Playback Key Pair Template Examples
The following examples specify an Amazon IVS playback key pair.
JSON
{ "AWSTemplateFormatVersion": "2010-09-09", "Resources": { "PlaybackKeyPair": { "Type": "AWS::IVS::PlaybackKeyPair", "Properties": { "PublicKeyMaterial": "-----BEGIN PUBLIC KEY-----\nMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEwOR43ETwEoWif1i14aL8GtDMNkT/kBQm\nh4sas9P//bjCU988rmQQXVBfftKT9xngg+W6hzOEpeUlCRlAtz6b6U79naYYRaSk\nK/UhYGWkXlbJlc9zn13imYWgVGe/BMFp\n-----END PUBLIC KEY-----\n", "Name": "MyPlaybackKeyPair", "Tags": [ { "Key": "MyKey", "Value": "MyValue" } ] } } }, "Outputs": { "PlaybackKeyPairArn": { "Value": {"Ref": "PlaybackKeyPair"} }, "PlaybackKeyPairFingerprint": { "Value": { "Fn::GetAtt": [ "PlaybackKeyPair", "Fingerprint" ] } } } }
YAML
AWSTemplateFormatVersion: 2010-09-09 Resources: PlaybackKeyPair: Type: AWS::IVS::PlaybackKeyPair Properties: PublicKeyMaterial: | -----BEGIN PUBLIC KEY----- MHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEwOR43ETwEoWif1i14aL8GtDMNkT/kBQm h4sas9P//bjCU988rmQQXVBfftKT9xngg+W6hzOEpeUlCRlAtz6b6U79naYYRaSk K/UhYGWkXlbJlc9zn13imYWgVGe/BMFp -----END PUBLIC KEY----- Name: MyPlaybackKeyPair Tags: - Key: MyKey Value: MyValue Outputs: PlaybackKeyPairArn: Value: !Ref PlaybackKeyPair PlaybackKeyPairFingerprint: Value: !GetAtt PlaybackKeyPair.Fingerprint
See also
-
PlaybackKeyPair data type
-
ImportPlaybackKeyPair API endpoint