Interface CfnMember.MemberFabricConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMember.MemberFabricConfigurationProperty.Jsii$Proxy
- Enclosing class:
- CfnMember
@Stability(Stable)
public static interface CfnMember.MemberFabricConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Configuration properties for Hyperledger Fabric for a member in a Managed Blockchain network that is using the Hyperledger Fabric framework.
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.*; MemberFabricConfigurationProperty memberFabricConfigurationProperty = MemberFabricConfigurationProperty.builder() .adminPassword("adminPassword") .adminUsername("adminUsername") .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnMember.MemberFabricConfigurationProperty
static final class
An implementation forCfnMember.MemberFabricConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The password for the member's initial administrative user.The user name for the member's initial administrative user.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAdminPassword
The password for the member's initial administrative user.The
AdminPassword
must be at least 8 characters long and no more than 32 characters. It must contain at least one uppercase letter, one lowercase letter, and one digit. It cannot have a single quotation mark (‘), a double quotation marks (“), a forward slash(/), a backward slash(), @, or a space. -
getAdminUsername
The user name for the member's initial administrative user. -
builder
-