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

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-11T13:20:01.269Z") @Stability(Stable) public interface CfnMemberMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnMemberPropsMixin.

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.*;
 CfnMemberMixinProps cfnMemberMixinProps = CfnMemberMixinProps.builder()
         .invitationId("invitationId")
         .memberConfiguration(MemberConfigurationProperty.builder()
                 .description("description")
                 .memberFrameworkConfiguration(MemberFrameworkConfigurationProperty.builder()
                         .memberFabricConfiguration(MemberFabricConfigurationProperty.builder()
                                 .adminPassword("adminPassword")
                                 .adminUsername("adminUsername")
                                 .build())
                         .build())
                 .name("name")
                 .build())
         .networkConfiguration(NetworkConfigurationProperty.builder()
                 .description("description")
                 .framework("framework")
                 .frameworkVersion("frameworkVersion")
                 .name("name")
                 .networkFrameworkConfiguration(NetworkFrameworkConfigurationProperty.builder()
                         .networkFabricConfiguration(NetworkFabricConfigurationProperty.builder()
                                 .edition("edition")
                                 .build())
                         .build())
                 .votingPolicy(VotingPolicyProperty.builder()
                         .approvalThresholdPolicy(ApprovalThresholdPolicyProperty.builder()
                                 .proposalDurationInHours(123)
                                 .thresholdComparator("thresholdComparator")
                                 .thresholdPercentage(123)
                                 .build())
                         .build())
                 .build())
         .networkId("networkId")
         .build();
 

See Also: