interface CfnAccessorProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ManagedBlockchain.CfnAccessorProps |
Java | software.amazon.awscdk.services.managedblockchain.CfnAccessorProps |
Python | aws_cdk.aws_managedblockchain.CfnAccessorProps |
TypeScript | @aws-cdk/aws-managedblockchain » CfnAccessorProps |
Properties for defining a CfnAccessor.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as managedblockchain from '@aws-cdk/aws-managedblockchain';
const cfnAccessorProps: managedblockchain.CfnAccessorProps = {
accessorType: 'accessorType',
// the properties below are optional
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| accessor | string | The type of the accessor. |
| tags? | Cfn[] | The tags assigned to the Accessor. |
accessorType
Type:
string
The type of the accessor.
Currently, accessor type is restricted to
BILLING_TOKEN.
tags?
Type:
Cfn[]
(optional)
The tags assigned to the Accessor.
For more information about tags, see Tagging Resources in the Amazon Managed Blockchain Ethereum Developer Guide , or Tagging Resources in the Amazon Managed Blockchain Hyperledger Fabric Developer Guide .

.NET
Java
Python
TypeScript