Interface CfnMemberProps

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

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:29:59.877Z") @Stability(Stable) public interface CfnMemberProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnMember.

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.*;
 CfnMemberProps cfnMemberProps = CfnMemberProps.builder()
         .memberConfiguration(MemberConfigurationProperty.builder()
                 .name("name")
                 // the properties below are optional
                 .description("description")
                 .memberFrameworkConfiguration(MemberFrameworkConfigurationProperty.builder()
                         .memberFabricConfiguration(MemberFabricConfigurationProperty.builder()
                                 .adminPassword("adminPassword")
                                 .adminUsername("adminUsername")
                                 .build())
                         .build())
                 .build())
         // the properties below are optional
         .invitationId("invitationId")
         .networkConfiguration(NetworkConfigurationProperty.builder()
                 .framework("framework")
                 .frameworkVersion("frameworkVersion")
                 .name("name")
                 .votingPolicy(VotingPolicyProperty.builder()
                         .approvalThresholdPolicy(ApprovalThresholdPolicyProperty.builder()
                                 .proposalDurationInHours(123)
                                 .thresholdComparator("thresholdComparator")
                                 .thresholdPercentage(123)
                                 .build())
                         .build())
                 // the properties below are optional
                 .description("description")
                 .networkFrameworkConfiguration(NetworkFrameworkConfigurationProperty.builder()
                         .networkFabricConfiguration(NetworkFabricConfigurationProperty.builder()
                                 .edition("edition")
                                 .build())
                         .build())
                 .build())
         .networkId("networkId")
         .build();
 
  • Method Details

    • getMemberConfiguration

      @Stability(Stable) @NotNull Object getMemberConfiguration()
      Configuration properties of the member.
    • getInvitationId

      @Stability(Stable) @Nullable default String getInvitationId()
      The unique identifier of the invitation to join the network sent to the account that creates the member.
    • getNetworkConfiguration

      @Stability(Stable) @Nullable default Object getNetworkConfiguration()
      Configuration properties of the network to which the member belongs.
    • getNetworkId

      @Stability(Stable) @Nullable default String getNetworkId()
      The unique identifier of the network to which the member belongs.
    • builder

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