[][src]Struct rusoto_managedblockchain::MemberFabricConfiguration

pub struct MemberFabricConfiguration {
    pub admin_password: String,
    pub admin_username: String,
}

Configuration properties for Hyperledger Fabric for a member in a Managed Blockchain network using the Hyperledger Fabric framework.

Fields

admin_password: String

The password for the member's initial administrative user. The AdminPassword must be at least eight 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.

admin_username: String

The user name for the member's initial administrative user.

Trait Implementations

impl Clone for MemberFabricConfiguration[src]

impl Debug for MemberFabricConfiguration[src]

impl Default for MemberFabricConfiguration[src]

impl PartialEq<MemberFabricConfiguration> for MemberFabricConfiguration[src]

impl Serialize for MemberFabricConfiguration[src]

impl StructuralPartialEq for MemberFabricConfiguration[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.