package awsmanagedblockchain // 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 "github.com/aws/aws-cdk-go/awscdk" // // memberFabricConfigurationProperty := &MemberFabricConfigurationProperty{ // AdminPassword: jsii.String("adminPassword"), // AdminUsername: jsii.String("adminUsername"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-memberfabricconfiguration.html // type CfnMember_MemberFabricConfigurationProperty struct { // 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(\), // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-memberfabricconfiguration.html#cfn-managedblockchain-member-memberfabricconfiguration-adminpassword // AdminPassword *string `field:"required" json:"adminPassword" yaml:"adminPassword"` // The user name for the member's initial administrative user. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-memberfabricconfiguration.html#cfn-managedblockchain-member-memberfabricconfiguration-adminusername // AdminUsername *string `field:"required" json:"adminUsername" yaml:"adminUsername"` }