interface CfnMemberMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ManagedBlockchain.Mixins.CfnMemberMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmanagedblockchain/mixins#CfnMemberMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.managedblockchain.mixins.CfnMemberMixinProps |
Python | aws_cdk.mixins_preview.aws_managedblockchain.mixins.CfnMemberMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_managedblockchain » mixins » CfnMemberMixinProps |
Properties for CfnMemberPropsMixin.
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 cfnMemberMixinProps: managedblockchain_mixins.CfnMemberMixinProps = {
invitationId: 'invitationId',
memberConfiguration: {
description: 'description',
memberFrameworkConfiguration: {
memberFabricConfiguration: {
adminPassword: 'adminPassword',
adminUsername: 'adminUsername',
},
},
name: 'name',
},
networkConfiguration: {
description: 'description',
framework: 'framework',
frameworkVersion: 'frameworkVersion',
name: 'name',
networkFrameworkConfiguration: {
networkFabricConfiguration: {
edition: 'edition',
},
},
votingPolicy: {
approvalThresholdPolicy: {
proposalDurationInHours: 123,
thresholdComparator: 'thresholdComparator',
thresholdPercentage: 123,
},
},
},
networkId: 'networkId',
};
Properties
| Name | Type | Description |
|---|---|---|
| invitation | string | The unique identifier of the invitation to join the network sent to the account that creates the member. |
| member | IResolvable | Member | Configuration properties of the member. |
| network | IResolvable | Network | Configuration properties of the network to which the member belongs. |
| network | string | The unique identifier of the network to which the member belongs. |
invitationId?
Type:
string
(optional)
The unique identifier of the invitation to join the network sent to the account that creates the member.
memberConfiguration?
Type:
IResolvable | Member
(optional)
Configuration properties of the member.
networkConfiguration?
Type:
IResolvable | Network
(optional)
Configuration properties of the network to which the member belongs.
networkId?
Type:
string
(optional)
The unique identifier of the network to which the member belongs.

.NET
Go
Java
Python
TypeScript