{ "$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-member-configuration-schema.json", "title": "MemberConfiguration", "description": "

Configuration properties of the member.

Applies only to Hyperledger Fabric.

", "type": "object", "properties": { "Name": { "allOf": [ { "$ref": "#/components/schemas/NetworkMemberNameString" }, { "description": "The name of the member." } ] }, "Description": { "allOf": [ { "$ref": "#/components/schemas/DescriptionString" }, { "description": "An optional description of the member." } ] }, "FrameworkConfiguration": { "allOf": [ { "$ref": "#/components/schemas/MemberFrameworkConfiguration" }, { "description": "Configuration properties of the blockchain framework relevant to the member." } ] }, "LogPublishingConfiguration": { "allOf": [ { "$ref": "#/components/schemas/MemberLogPublishingConfiguration" }, { "description": "Configuration properties for logging events associated with a member of a Managed Blockchain network." } ] }, "Tags": { "allOf": [ { "$ref": "#/components/schemas/InputTagMap" }, { "description": "

Tags assigned to the member. Tags consist of a key and optional value.

When specifying tags during creation, you can specify multiple key-value pairs in a single request, with an overall maximum of 50 tags added to each resource.

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.

" } ] }, "KmsKeyArn": { "allOf": [ { "$ref": "#/components/schemas/ArnString" }, { "description": "

The Amazon Resource Name (ARN) of the customer managed key in Key Management Service (KMS) to use for encryption at rest in the member. This parameter is inherited by any nodes that this member creates. For more information, see Encryption at Rest in the Amazon Managed Blockchain Hyperledger Fabric Developer Guide.

Use one of the following options to specify this parameter:

" } ] } }, "required": [ "Name", "FrameworkConfiguration" ] }