interface MemberConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ManagedBlockchain.Mixins.CfnMemberPropsMixin.MemberConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmanagedblockchain/mixins#CfnMemberPropsMixin_MemberConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.managedblockchain.mixins.CfnMemberPropsMixin.MemberConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_managedblockchain.mixins.CfnMemberPropsMixin.MemberConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_managedblockchain » mixins » CfnMemberPropsMixin » MemberConfigurationProperty |
Configuration properties of the member.
Applies only to Hyperledger Fabric.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as managedblockchain_mixins } from '@aws-cdk/mixins-preview/aws-managedblockchain';
const memberConfigurationProperty: managedblockchain_mixins.CfnMemberPropsMixin.MemberConfigurationProperty = {
description: 'description',
memberFrameworkConfiguration: {
memberFabricConfiguration: {
adminPassword: 'adminPassword',
adminUsername: 'adminUsername',
},
},
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | An optional description of the member. |
| member | IResolvable | Member | Configuration properties of the blockchain framework relevant to the member. |
| name? | string | The name of the member. |
description?
Type:
string
(optional)
An optional description of the member.
memberFrameworkConfiguration?
Type:
IResolvable | Member
(optional)
Configuration properties of the blockchain framework relevant to the member.
name?
Type:
string
(optional)
The name of the member.

.NET
Go
Java
Python
TypeScript