{ "$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-node-schema.json", "title": "Node", "description": "Configuration properties of a node.", "type": "object", "properties": { "NetworkId": { "allOf": [ { "$ref": "#/components/schemas/ResourceIdString" }, { "description": "The unique identifier of the network that the node is on." } ] }, "MemberId": { "allOf": [ { "$ref": "#/components/schemas/ResourceIdString" }, { "description": "

The unique identifier of the member to which the node belongs.

Applies only to Hyperledger Fabric.

" } ] }, "Id": { "allOf": [ { "$ref": "#/components/schemas/ResourceIdString" }, { "description": "The unique identifier of the node." } ] }, "InstanceType": { "allOf": [ { "$ref": "#/components/schemas/InstanceTypeString" }, { "description": "The instance type of the node." } ] }, "AvailabilityZone": { "allOf": [ { "$ref": "#/components/schemas/AvailabilityZoneString" }, { "description": "The Availability Zone in which the node exists. Required for Ethereum nodes. " } ] }, "FrameworkAttributes": { "allOf": [ { "$ref": "#/components/schemas/NodeFrameworkAttributes" }, { "description": "Attributes of the blockchain framework being used." } ] }, "LogPublishingConfiguration": { "allOf": [ { "$ref": "#/components/schemas/NodeLogPublishingConfiguration" }, { "description": "Configuration properties for logging events associated with a peer node on a Hyperledger Fabric network on Managed Blockchain." } ] }, "StateDB": { "allOf": [ { "$ref": "#/components/schemas/StateDBType" }, { "description": "

The state database that the node uses. Values are LevelDB or CouchDB.

Applies only to Hyperledger Fabric.

" } ] }, "Status": { "allOf": [ { "$ref": "#/components/schemas/NodeStatus" }, { "description": "

The status of the node.

" } ] }, "CreationDate": { "allOf": [ { "$ref": "#/components/schemas/Timestamp" }, { "description": "The date and time that the node was created." } ] }, "Tags": { "allOf": [ { "$ref": "#/components/schemas/OutputTagMap" }, { "description": "

Tags assigned to the node. Each tag consists of a key and optional value.

For more information about tags, see Tagging Resources in the Amazon Managed Blockchain Ethereum Developer Guide, or Tagging Resources in the Amazon Managed Blockchain Hyperledger Fabric Developer Guide.

" } ] }, "Arn": { "allOf": [ { "$ref": "#/components/schemas/ArnString" }, { "description": "The Amazon Resource Name (ARN) of the node. For more information about ARNs and their format, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference." } ] }, "KmsKeyArn": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "

The Amazon Resource Name (ARN) of the customer managed key in Key Management Service (KMS) that the node uses for encryption at rest. If the value of this parameter is \"AWS Owned KMS Key\", the node uses an Amazon Web Services owned KMS key for encryption. The node inherits this parameter from the member that it belongs to.

For more information, see Encryption at Rest in the Amazon Managed Blockchain Hyperledger Fabric Developer Guide.

Applies only to Hyperledger Fabric.

" } ] } } }