Class: Aws::ManagedBlockchain::Types::MemberFabricConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::ManagedBlockchain::Types::MemberFabricConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-managedblockchain/types.rb
Overview
Configuration properties for Hyperledger Fabric for a member in a Managed Blockchain network that is using the Hyperledger Fabric framework.
Constant Summary collapse
- SENSITIVE =
[:admin_password]
Instance Attribute Summary collapse
-
#admin_password ⇒ String
The password for the member’s initial administrative user.
-
#admin_username ⇒ String
The user name for the member’s initial administrative user.
Instance Attribute Details
#admin_password ⇒ String
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.
1556 1557 1558 1559 1560 1561 |
# File 'lib/aws-sdk-managedblockchain/types.rb', line 1556 class MemberFabricConfiguration < Struct.new( :admin_username, :admin_password) SENSITIVE = [:admin_password] include Aws::Structure end |
#admin_username ⇒ String
The user name for the member’s initial administrative user.
1556 1557 1558 1559 1560 1561 |
# File 'lib/aws-sdk-managedblockchain/types.rb', line 1556 class MemberFabricConfiguration < Struct.new( :admin_username, :admin_password) SENSITIVE = [:admin_password] include Aws::Structure end |