Class CfnMemberPropsMixin.MemberFabricConfigurationProperty
Configuration properties for Hyperledger Fabric for a member in a Managed Blockchain network that is using the Hyperledger Fabric framework.
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.ManagedBlockchain
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnMemberPropsMixin.MemberFabricConfigurationProperty : CfnMemberPropsMixin.IMemberFabricConfigurationProperty
Syntax (vb)
Public Class CfnMemberPropsMixin.MemberFabricConfigurationProperty Implements 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
Constructors
| MemberFabricConfigurationProperty() | Configuration properties for Hyperledger Fabric for a member in a Managed Blockchain network that is using the Hyperledger Fabric framework. |
Properties
| AdminPassword | The password for the member's initial administrative user. |
| AdminUsername | The user name for the member's initial administrative user. |
Constructors
MemberFabricConfigurationProperty()
Configuration properties for Hyperledger Fabric for a member in a Managed Blockchain network that is using the Hyperledger Fabric framework.
public MemberFabricConfigurationProperty()
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"
};
Properties
AdminPassword
The password for the member's initial administrative user.
public string? AdminPassword { get; set; }
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.
public string? AdminUsername { get; set; }