CfnPublicKeyProps
- class aws_cdk.aws_ivs.CfnPublicKeyProps(*, name=None, public_key_material=None, tags=None)
Bases:
objectProperties for defining a
CfnPublicKey.- Parameters:
name (
Optional[str]) – Public key 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::PublicKey resource.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – An array of key-value pairs to apply to this resource.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-publickey.html
- ExampleMetadata:
fixture=_generated
Example:
from aws_cdk import CfnTag # 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_public_key_props = ivs.CfnPublicKeyProps( name="name", public_key_material="publicKeyMaterial", tags=[CfnTag( key="key", value="value" )] )
Attributes
- name
Public key name.
The value does not need to be unique.
- public_key_material
The public portion of a customer-generated key pair.
Note that this field is required to create the AWS::IVS::PublicKey resource.
- tags
An array of key-value pairs to apply to this resource.