Amazon Managed Blockchain · Schema
MemberConfiguration
Configuration properties of the member.
Applies only to Hyperledger Fabric.
BlockchainDistributed LedgerHyperledger FabricEthereum
Properties
| Name | Type | Description |
|---|---|---|
| Name | object | |
| Description | object | |
| FrameworkConfiguration | object | |
| LogPublishingConfiguration | object | |
| Tags | object | |
| KmsKeyArn | object |
JSON Schema
{
"$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": "<p>Configuration properties of the member.</p> <p>Applies only to Hyperledger Fabric.</p>",
"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": "<p>Tags assigned to the member. Tags consist of a key and optional value. </p> <p>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.</p> <p>For more information about tags, see <a href=\"https://docs.aws.amazon.com/managed-blockchain/latest/ethereum-dev/tagging-resources.html\">Tagging Resources</a> in the <i>Amazon Managed Blockchain Ethereum Developer Guide</i>, or <a href=\"https://docs.aws.amazon.com/managed-blockchain/latest/hyperledger-fabric-dev/tagging-resources.html\">Tagging Resources</a> in the <i>Amazon Managed Blockchain Hyperledger Fabric Developer Guide</i>.</p>"
}
]
},
"KmsKeyArn": {
"allOf": [
{
"$ref": "#/components/schemas/ArnString"
},
{
"description": "<p>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 <a href=\"https://docs.aws.amazon.com/managed-blockchain/latest/hyperledger-fabric-dev/managed-blockchain-encryption-at-rest.html\">Encryption at Rest</a> in the <i>Amazon Managed Blockchain Hyperledger Fabric Developer Guide</i>.</p> <p>Use one of the following options to specify this parameter:</p> <ul> <li> <p> <b>Undefined or empty string</b> - By default, use an KMS key that is owned and managed by Amazon Web Services on your behalf.</p> </li> <li> <p> <b>A valid symmetric customer managed KMS key</b> - Use the specified KMS key in your account that you create, own, and manage.</p> <p>Amazon Managed Blockchain doesn't support asymmetric keys. For more information, see <a href=\"https://docs.aws.amazon.com/kms/latest/developerguide/symmetric-asymmetric.html\">Using symmetric and asymmetric keys</a> in the <i>Key Management Service Developer Guide</i>.</p> <p>The following is an example of a KMS key ARN: <code>arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab</code> </p> </li> </ul>"
}
]
}
},
"required": [
"Name",
"FrameworkConfiguration"
]
}