CfnPlaybackKeyPairMixinProps

class aws_cdk.mixins_preview.aws_ivs.mixins.CfnPlaybackKeyPairMixinProps(*, name=None, public_key_material=None, tags=None)

Bases: object

Properties for CfnPlaybackKeyPairPropsMixin.

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. Note that this field is required to create the AWS::IVS::PlaybackKeyPair resource.

  • 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.mixins_preview.aws_ivs import mixins as ivs_mixins

cfn_playback_key_pair_mixin_props = ivs_mixins.CfnPlaybackKeyPairMixinProps(
    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.

Note that this field is required to create the AWS::IVS::PlaybackKeyPair resource.

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