interface LedgerReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.QLDB.LedgerReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsqldb#LedgerReference |
Java | software.amazon.awscdk.interfaces.qldb.LedgerReference |
Python | aws_cdk.interfaces.aws_qldb.LedgerReference |
TypeScript | aws-cdk-lib » interfaces » aws_qldb » LedgerReference |
A reference to a Ledger resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_qldb as interfaces_aws_qldb } from 'aws-cdk-lib/interfaces';
const ledgerReference: interfaces_aws_qldb.LedgerReference = {
ledgerId: 'ledgerId',
};
Properties
| Name | Type | Description |
|---|---|---|
| ledger | string | The Id of the Ledger resource. |
ledgerId
Type:
string
The Id of the Ledger resource.

.NET
Go
Java
Python
TypeScript