PlaybackKeyPairProps¶
-
class
aws_cdk.aws_ivs.
PlaybackKeyPairProps
(*, public_key_material, 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.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: None
- Stability
experimental
- ExampleMetadata
infused
Example:
key_pair = ivs.PlaybackKeyPair(self, "PlaybackKeyPair", public_key_material=my_public_key_pem_string )
Attributes
-
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
None
- Stability
experimental
- Return type
Optional
[str
]
-
public_key_material
¶ (experimental) The public portion of a customer-generated key pair.
- Stability
experimental
- Return type
str