Interface CfnMemberPropsMixin.IMemberFabricConfigurationProperty
Configuration properties for Hyperledger Fabric for a member in a Managed Blockchain network that is using the Hyperledger Fabric framework.
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.ManagedBlockchain
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnMemberPropsMixin.IMemberFabricConfigurationProperty
Syntax (vb)
Public Interface CfnMemberPropsMixin.IMemberFabricConfigurationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.ManagedBlockchain;
var memberFabricConfigurationProperty = new MemberFabricConfigurationProperty {
AdminPassword = "adminPassword",
AdminUsername = "adminUsername"
};
Synopsis
Properties
| AdminPassword | The password for the member's initial administrative user. |
| AdminUsername | The user name for the member's initial administrative user. |
Properties
AdminPassword
The password for the member's initial administrative user.
string? AdminPassword { get; }
Property Value
Remarks
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.
AdminUsername
The user name for the member's initial administrative user.
string? AdminUsername { get; }