Show / Hide Table of Contents

Class CfnMemberPropsMixin.MemberConfigurationProperty

Configuration properties of the member.

Inheritance
object
CfnMemberPropsMixin.MemberConfigurationProperty
Implements
CfnMemberPropsMixin.IMemberConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.ManagedBlockchain.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnMemberPropsMixin.MemberConfigurationProperty : CfnMemberPropsMixin.IMemberConfigurationProperty
Syntax (vb)
Public Class CfnMemberPropsMixin.MemberConfigurationProperty Implements CfnMemberPropsMixin.IMemberConfigurationProperty
Remarks

Applies only to Hyperledger Fabric.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-memberconfiguration.html

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.Mixins.Preview.AWS.ManagedBlockchain.Mixins;

             var memberConfigurationProperty = new MemberConfigurationProperty {
                 Description = "description",
                 MemberFrameworkConfiguration = new MemberFrameworkConfigurationProperty {
                     MemberFabricConfiguration = new MemberFabricConfigurationProperty {
                         AdminPassword = "adminPassword",
                         AdminUsername = "adminUsername"
                     }
                 },
                 Name = "name"
             };

Synopsis

Constructors

MemberConfigurationProperty()

Configuration properties of the member.

Properties

Description

An optional description of the member.

MemberFrameworkConfiguration

Configuration properties of the blockchain framework relevant to the member.

Name

The name of the member.

Constructors

MemberConfigurationProperty()

Configuration properties of the member.

public MemberConfigurationProperty()
Remarks

Applies only to Hyperledger Fabric.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-memberconfiguration.html

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.Mixins.Preview.AWS.ManagedBlockchain.Mixins;

             var memberConfigurationProperty = new MemberConfigurationProperty {
                 Description = "description",
                 MemberFrameworkConfiguration = new MemberFrameworkConfigurationProperty {
                     MemberFabricConfiguration = new MemberFabricConfigurationProperty {
                         AdminPassword = "adminPassword",
                         AdminUsername = "adminUsername"
                     }
                 },
                 Name = "name"
             };

Properties

Description

An optional description of the member.

public string? Description { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-memberconfiguration.html#cfn-managedblockchain-member-memberconfiguration-description

MemberFrameworkConfiguration

Configuration properties of the blockchain framework relevant to the member.

public object? MemberFrameworkConfiguration { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-memberconfiguration.html#cfn-managedblockchain-member-memberconfiguration-memberframeworkconfiguration

Type union: either IResolvable or CfnMemberPropsMixin.IMemberFrameworkConfigurationProperty

Name

The name of the member.

public string? Name { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-managedblockchain-member-memberconfiguration.html#cfn-managedblockchain-member-memberconfiguration-name

Implements

CfnMemberPropsMixin.IMemberConfigurationProperty
Back to top Generated by DocFX