CfnAliasProps

class aws_cdk.aws_paymentcryptography.CfnAliasProps(*, alias_name, key_arn=None)

Bases: object

Properties for defining a CfnAlias.

Parameters:
  • alias_name (str) – A friendly name that you can use to refer to a key. The value must begin with alias/ . .. 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]) – The KeyARN of the key associated with the alias.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-paymentcryptography-alias.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 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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-paymentcryptography-alias.html#cfn-paymentcryptography-alias-aliasname

key_arn

The KeyARN of the key associated with the alias.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-paymentcryptography-alias.html#cfn-paymentcryptography-alias-keyarn