Interface CfnMember.MemberFrameworkConfigurationProperty

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

@Stability(Stable) public static interface CfnMember.MemberFrameworkConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Configuration properties relevant to a member for the blockchain framework that the Managed Blockchain network uses.

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.*;
 MemberFrameworkConfigurationProperty memberFrameworkConfigurationProperty = MemberFrameworkConfigurationProperty.builder()
         .memberFabricConfiguration(MemberFabricConfigurationProperty.builder()
                 .adminPassword("adminPassword")
                 .adminUsername("adminUsername")
                 .build())
         .build();