CfnAliasProps
- class aws_cdk.aws_paymentcryptography.CfnAliasProps(*, alias_name, key_arn=None)
Bases:
objectProperties for defining a
CfnAlias.- Parameters:
alias_name (
str) – A friendly name that you can use to refer to a key. The value must begin withalias/. .. epigraph:: Do not include confidential or sensitive information in this field. This field may be displayed in plaintext in AWS CloudTrail logs and other output.key_arn (
Optional[str]) – TheKeyARNof the key associated with the alias.
- See:
- 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 import aws_paymentcryptography as paymentcryptography cfn_alias_props = paymentcryptography.CfnAliasProps( alias_name="aliasName", # the properties below are optional key_arn="keyArn" )
Attributes
- alias_name
A friendly name that you can use to refer to a key. The value must begin with
alias/.Do not include confidential or sensitive information in this field. This field may be displayed in plaintext in AWS CloudTrail logs and other output.
- key_arn
The
KeyARNof the key associated with the alias.