Interface CfnMemberPropsMixin.MemberConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMemberPropsMixin.MemberConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnMemberPropsMixin
@Stability(Stable)
public static interface CfnMemberPropsMixin.MemberConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Configuration properties of the member.
Applies only to Hyperledger Fabric.
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.*;
MemberConfigurationProperty memberConfigurationProperty = MemberConfigurationProperty.builder()
.description("description")
.memberFrameworkConfiguration(MemberFrameworkConfigurationProperty.builder()
.memberFabricConfiguration(MemberFabricConfigurationProperty.builder()
.adminPassword("adminPassword")
.adminUsername("adminUsername")
.build())
.build())
.name("name")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnMemberPropsMixin.MemberConfigurationPropertystatic final classAn implementation forCfnMemberPropsMixin.MemberConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
An optional description of the member.- See Also:
-
getMemberFrameworkConfiguration
Configuration properties of the blockchain framework relevant to the member.Returns union: either
IResolvableorCfnMemberPropsMixin.MemberFrameworkConfigurationProperty- See Also:
-
getName
The name of the member.- See Also:
-
builder
-