interface AccessorReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.ManagedBlockchain.AccessorReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsmanagedblockchain#AccessorReference |
Java | software.amazon.awscdk.interfaces.managedblockchain.AccessorReference |
Python | aws_cdk.interfaces.aws_managedblockchain.AccessorReference |
TypeScript | aws-cdk-lib » interfaces » aws_managedblockchain » AccessorReference |
A reference to a Accessor resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_managedblockchain as interfaces_aws_managedblockchain } from 'aws-cdk-lib/interfaces';
const accessorReference: interfaces_aws_managedblockchain.AccessorReference = {
accessorArn: 'accessorArn',
accessorId: 'accessorId',
};
Properties
| Name | Type | Description |
|---|---|---|
| accessor | string | The ARN of the Accessor resource. |
| accessor | string | The Id of the Accessor resource. |
accessorArn
Type:
string
The ARN of the Accessor resource.
accessorId
Type:
string
The Id of the Accessor resource.

.NET
Go
Java
Python
TypeScript