interface CfnAliasMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.PaymentCryptography.CfnAliasMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awspaymentcryptography#CfnAliasMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.paymentcryptography.CfnAliasMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_paymentcryptography.CfnAliasMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_paymentcryptography » CfnAliasMixinProps |
Properties for CfnAliasPropsMixin.
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/cfn-property-mixins';
const cfnAliasMixinProps: paymentcryptography.CfnAliasMixinProps = {
aliasName: 'aliasName',
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
(optional)
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