interface CfnAliasProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.PaymentCryptography.CfnAliasProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awspaymentcryptography#CfnAliasProps |
Java | software.amazon.awscdk.services.paymentcryptography.CfnAliasProps |
Python | aws_cdk.aws_paymentcryptography.CfnAliasProps |
TypeScript | aws-cdk-lib » aws_paymentcryptography » CfnAliasProps |
Properties for defining a CfnAlias.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_paymentcryptography as paymentcryptography } from 'aws-cdk-lib';
const cfnAliasProps: paymentcryptography.CfnAliasProps = {
aliasName: 'aliasName',
// the properties below are optional
keyArn: 'keyArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| alias | string | A friendly name that you can use to refer to a key. The value must begin with alias/ . |
| key | string | The KeyARN of the key associated with the alias. |
aliasName
Type:
string
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.
keyArn?
Type:
string
(optional)
The KeyARN of the key associated with the alias.

.NET
Go
Java
Python
TypeScript