Interface CfnAccessorProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAccessorProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:29:59.856Z") @Stability(Stable) public interface CfnAccessorProps extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.managedblockchain.*;
 CfnAccessorProps cfnAccessorProps = CfnAccessorProps.builder()
         .accessorType("accessorType")
         // the properties below are optional
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 
  • Method Details

    • getAccessorType

      @Stability(Stable) @NotNull String getAccessorType()
      The type of the accessor.

      Currently, accessor type is restricted to BILLING_TOKEN .

    • getTags

      @Stability(Stable) @Nullable default List<CfnTag> 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 .

    • builder

      @Stability(Stable) static CfnAccessorProps.Builder builder()
      Returns:
      a CfnAccessorProps.Builder of CfnAccessorProps