Interface CfnMemberProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMemberProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-20T23:37:24.953Z")
@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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnMemberPropsstatic final classAn implementation forCfnMemberProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnMemberProps.Builderbuilder()default StringThe unique identifier of the invitation to join the network sent to the account that creates the member.Configuration properties of the member.default ObjectConfiguration properties of the network to which the member belongs.default StringThe 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.Returns union: either
IResolvableorCfnMember.MemberConfigurationProperty- See Also:
-
getInvitationId
The unique identifier of the invitation to join the network sent to the account that creates the member.- See Also:
-
getNetworkConfiguration
Configuration properties of the network to which the member belongs.Returns union: either
IResolvableorCfnMember.NetworkConfigurationProperty- See Also:
-
getNetworkId
The unique identifier of the network to which the member belongs.- See Also:
-
builder
- Returns:
- a
CfnMemberProps.BuilderofCfnMemberProps
-