CfnAccessorProps
- class aws_cdk.aws_managedblockchain.CfnAccessorProps(*, accessor_type, tags=None)
Bases:
objectProperties for defining a
CfnAccessor.- Parameters:
accessor_type (
str) – The type of the accessor. .. epigraph:: Currently, accessor type is restricted toBILLING_TOKEN.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) –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 .
- Link:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_managedblockchain as managedblockchain cfn_accessor_props = managedblockchain.CfnAccessorProps( accessor_type="accessorType", # the properties below are optional tags=[CfnTag( key="key", value="value" )] )
Attributes
- accessor_type
The type of the accessor.
Currently, accessor type is restricted to
BILLING_TOKEN.
- tags
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 .