PlaybackKeyPairProps

class aws_cdk.aws_ivs_alpha.PlaybackKeyPairProps(*, public_key_material, playback_key_pair_name=None)

Bases: object

(experimental) Properties for creating a new Playback Key Pair.

Parameters:
  • public_key_material (str) – (experimental) The public portion of a customer-generated key pair.

  • playback_key_pair_name (Optional[str]) – (experimental) An arbitrary string (a nickname) assigned to a playback key pair that helps the customer identify that resource. The value does not need to be unique. Default: Automatically generated name

Stability:

experimental

ExampleMetadata:

infused

Example:

key_pair = ivs.PlaybackKeyPair(self, "PlaybackKeyPair",
    public_key_material=my_public_key_pem_string
)

Attributes

playback_key_pair_name

(experimental) An arbitrary string (a nickname) assigned to a playback key pair that helps the customer identify that resource.

The value does not need to be unique.

Default:

Automatically generated name

Stability:

experimental

public_key_material

(experimental) The public portion of a customer-generated key pair.

Stability:

experimental