InviteAction

An action to invite a specific Amazon Web Services account to create a member and join the network. The InviteAction is carried out when a Proposal is APPROVED.

Applies only to Hyperledger Fabric.

BlockchainDistributed LedgerHyperledger FabricEthereum

Properties

Name Type Description
Principal object
View JSON Schema on GitHub

JSON Schema

amazon-managed-blockchain-invite-action-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-managed-blockchain/refs/heads/main/json-schema/amazon-managed-blockchain-invite-action-schema.json",
  "title": "InviteAction",
  "description": "<p>An action to invite a specific Amazon Web Services account to create a member and join the network. The <code>InviteAction</code> is carried out when a <code>Proposal</code> is <code>APPROVED</code>.</p> <p>Applies only to Hyperledger Fabric.</p>",
  "type": "object",
  "properties": {
    "Principal": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PrincipalString"
        },
        {
          "description": "The Amazon Web Services account ID to invite."
        }
      ]
    }
  },
  "required": [
    "Principal"
  ]
}