Interface CfnAccessorMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAccessorMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:01.267Z")
@Stability(Stable)
public interface CfnAccessorMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnAccessorPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.managedblockchain.*;
CfnAccessorMixinProps cfnAccessorMixinProps = CfnAccessorMixinProps.builder()
.accessorType("accessorType")
.networkType("networkType")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAccessorMixinPropsstatic final classAn implementation forCfnAccessorMixinProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAccessorType
The type of the accessor.Currently, accessor type is restricted to
BILLING_TOKEN.- See Also:
-
getNetworkType
The blockchain network that theAccessortoken is created for.We recommend using the appropriate
networkTypevalue for the blockchain network that you are creating theAccessortoken for. You cannot use the valueETHEREUM_MAINNET_AND_GOERLIto specify anetworkTypefor your Accessor token.The default value of
ETHEREUM_MAINNET_AND_GOERLIis only applied:- when the
CreateAccessoraction does not set anetworkType. - to all existing
Accessortokens that were created before thenetworkTypeproperty was introduced.
- See Also:
- when the
-
getTags
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 .
- See Also:
-
builder
- Returns:
- a
CfnAccessorMixinProps.BuilderofCfnAccessorMixinProps
-