Class CfnMemberPropsMixin.MemberConfigurationProperty
Configuration properties of the member.
Implements
Inherited Members
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.
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.
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
Remarks
MemberFrameworkConfiguration
Configuration properties of the blockchain framework relevant to the member.
public object? MemberFrameworkConfiguration { get; set; }
Property Value
Remarks
Type union: either IResolvable or CfnMemberPropsMixin.IMemberFrameworkConfigurationProperty
Name
The name of the member.
public string? Name { get; set; }