interface KeyReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.PaymentCryptography.KeyReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awspaymentcryptography#KeyReference |
Java | software.amazon.awscdk.interfaces.paymentcryptography.KeyReference |
Python | aws_cdk.interfaces.aws_paymentcryptography.KeyReference |
TypeScript | aws-cdk-lib » interfaces » aws_paymentcryptography » KeyReference |
A reference to a Key resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_paymentcryptography as interfaces_aws_paymentcryptography } from 'aws-cdk-lib/interfaces';
const keyReference: interfaces_aws_paymentcryptography.KeyReference = {
keyIdentifier: 'keyIdentifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| key | string | The KeyIdentifier of the Key resource. |
keyIdentifier
Type:
string
The KeyIdentifier of the Key resource.

.NET
Go
Java
Python
TypeScript