CfnPublicKeyMixinProps
- class aws_cdk.mixins_preview.aws_ivs.mixins.CfnPublicKeyMixinProps(*, name=None, public_key_material=None, tags=None)
Bases:
objectProperties for CfnPublicKeyPropsMixin.
- 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:
# 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_public_key_mixin_props = ivs_mixins.CfnPublicKeyMixinProps( 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.