CfnPlaybackKeyPairProps

class aws_cdk.aws_ivs.CfnPlaybackKeyPairProps(*, name=None, public_key_material=None, tags=None)

Bases: object

Properties for defining a CfnPlaybackKeyPair.

Parameters:
  • name (Optional[str]) – Playback-key-pair name. The value does not need to be unique.

  • public_key_material (Optional[str]) – The public portion of a customer-generated key pair.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – An array of key-value pairs to apply to this resource. For more information, see Tag .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-playbackkeypair.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_ivs as ivs

cfn_playback_key_pair_props = ivs.CfnPlaybackKeyPairProps(
    name="name",
    public_key_material="publicKeyMaterial",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

name

Playback-key-pair name.

The value does not need to be unique.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-playbackkeypair.html#cfn-ivs-playbackkeypair-name

public_key_material

The public portion of a customer-generated key pair.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-playbackkeypair.html#cfn-ivs-playbackkeypair-publickeymaterial

tags

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

For more information, see Tag .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-playbackkeypair.html#cfn-ivs-playbackkeypair-tags