Interface CfnMemberMixinProps
- 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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnMemberMixinPropsstatic final classAn implementation forCfnMemberMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnMemberMixinProps.Builderbuilder()default StringThe unique identifier of the invitation to join the network sent to the account that creates the member.default ObjectConfiguration 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
-
getInvitationId
The unique identifier of the invitation to join the network sent to the account that creates the member.- See Also:
-
getMemberConfiguration
Configuration properties of the member.Returns union: either
IResolvableorCfnMemberPropsMixin.MemberConfigurationProperty- See Also:
-
getNetworkConfiguration
Configuration properties of the network to which the member belongs.Returns union: either
IResolvableorCfnMemberPropsMixin.NetworkConfigurationProperty- See Also:
-
getNetworkId
The unique identifier of the network to which the member belongs.- See Also:
-
builder
- Returns:
- a
CfnMemberMixinProps.BuilderofCfnMemberMixinProps
-