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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnMemberProps
static final class
An implementation forCfnMemberProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnMemberProps.Builder
builder()
default String
The unique identifier of the invitation to join the network sent to the account that creates the member.Configuration properties of the member.default Object
Configuration properties of the network to which the member belongs.default String
The unique identifier of the network to which the member belongs.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMemberConfiguration
Configuration properties of the member. -
getInvitationId
The unique identifier of the invitation to join the network sent to the account that creates the member. -
getNetworkConfiguration
Configuration properties of the network to which the member belongs. -
getNetworkId
The unique identifier of the network to which the member belongs. -
builder
- Returns:
- a
CfnMemberProps.Builder
ofCfnMemberProps
-