aws-cdk-lib.aws_managedblockchain.CfnMemberProps

interface CfnMemberProps

LanguageType name
.NETAmazon.CDK.AWS.ManagedBlockchain.CfnMemberProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsmanagedblockchain#CfnMemberProps
Javasoftware.amazon.awscdk.services.managedblockchain.CfnMemberProps
Pythonaws_cdk.aws_managedblockchain.CfnMemberProps
TypeScript aws-cdk-lib » aws_managedblockchain » CfnMemberProps

Properties for defining a CfnMember.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_managedblockchain as managedblockchain } from 'aws-cdk-lib';
const cfnMemberProps: managedblockchain.CfnMemberProps = {
  memberConfiguration: {
    name: 'name',

    // the properties below are optional
    description: 'description',
    memberFrameworkConfiguration: {
      memberFabricConfiguration: {
        adminPassword: 'adminPassword',
        adminUsername: 'adminUsername',
      },
    },
  },

  // the properties below are optional
  invitationId: 'invitationId',
  networkConfiguration: {
    framework: 'framework',
    frameworkVersion: 'frameworkVersion',
    name: 'name',
    votingPolicy: {
      approvalThresholdPolicy: {
        proposalDurationInHours: 123,
        thresholdComparator: 'thresholdComparator',
        thresholdPercentage: 123,
      },
    },

    // the properties below are optional
    description: 'description',
    networkFrameworkConfiguration: {
      networkFabricConfiguration: {
        edition: 'edition',
      },
    },
  },
  networkId: 'networkId',
};

Properties

NameTypeDescription
memberConfigurationIResolvable | MemberConfigurationPropertyConfiguration properties of the member.
invitationId?stringThe unique identifier of the invitation to join the network sent to the account that creates the member.
networkConfiguration?IResolvable | NetworkConfigurationPropertyConfiguration properties of the network to which the member belongs.
networkId?stringThe unique identifier of the network to which the member belongs.

memberConfiguration

Type: IResolvable | MemberConfigurationProperty

Configuration properties of the member.


invitationId?

Type: string (optional)

The unique identifier of the invitation to join the network sent to the account that creates the member.


networkConfiguration?

Type: IResolvable | NetworkConfigurationProperty (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.