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 .
- Link:
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. import aws_cdk.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.
- public_key_material
The public portion of a customer-generated key pair.