Interface CfnMember.MemberFabricConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnMember.MemberFabricConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnMember

@Stability(Stable) public static interface CfnMember.MemberFabricConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Configuration properties for Hyperledger Fabric for a member in a Managed Blockchain network that is using the Hyperledger Fabric framework.

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.*;
 MemberFabricConfigurationProperty memberFabricConfigurationProperty = MemberFabricConfigurationProperty.builder()
         .adminPassword("adminPassword")
         .adminUsername("adminUsername")
         .build();
 
  • Method Details