interface CfnAliasMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.PaymentCryptography.Mixins.CfnAliasMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspaymentcryptography/mixins#CfnAliasMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.paymentcryptography.mixins.CfnAliasMixinProps |
Python | aws_cdk.mixins_preview.aws_paymentcryptography.mixins.CfnAliasMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_paymentcryptography » mixins » 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 { mixins as paymentcryptography_mixins } from '@aws-cdk/mixins-preview/aws-paymentcryptography';
const cfnAliasMixinProps: paymentcryptography_mixins.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