Amazon FinSpace · Schema
KxCluster
Represents a cluster of compute resources in a FinSpace kdb environment.
Capital MarketsData AnalyticsData ManagementFinancial Services
Properties
| Name | Type | Description |
|---|---|---|
| clusterName | string | |
| status | string | |
| statusReason | string | |
| clusterType | string | |
| tickerplantLogConfiguration | object | |
| volumes | array | |
| databases | array | |
| cacheStorageConfigurations | array | |
| autoScalingConfiguration | object | |
| clusterDescription | string | |
| capacityConfiguration | object | |
| releaseLabel | string | |
| vpcConfiguration | object | |
| initializationScript | string | |
| commandLineArguments | array | |
| code | object | |
| executionRole | string | |
| lastModifiedTimestamp | string | |
| savedownStorageConfiguration | object | |
| azMode | string | |
| availabilityZoneId | string | |
| createdTimestamp | string | |
| tags | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-finspace/refs/heads/main/json-schema/amazon-finspace-kx-cluster-schema.json",
"title": "KxCluster",
"description": "Represents a cluster of compute resources in a FinSpace kdb environment.",
"type": "object",
"properties": {
"clusterName": {
"type": "string"
},
"status": {
"type": "string",
"enum": [
"PENDING",
"CREATING",
"CREATE_FAILED",
"RUNNING",
"UPDATING",
"DELETING",
"DELETED",
"DELETE_FAILED"
]
},
"statusReason": {
"type": "string"
},
"clusterType": {
"type": "string",
"enum": [
"HDB",
"RDB",
"GATEWAY",
"GP",
"TICKERPLANT"
]
},
"tickerplantLogConfiguration": {
"type": "object"
},
"volumes": {
"type": "array",
"items": {
"type": "object"
}
},
"databases": {
"type": "array",
"items": {
"type": "object"
}
},
"cacheStorageConfigurations": {
"type": "array",
"items": {
"type": "object"
}
},
"autoScalingConfiguration": {
"type": "object"
},
"clusterDescription": {
"type": "string"
},
"capacityConfiguration": {
"type": "object",
"properties": {
"nodeType": {
"type": "string"
},
"nodeCount": {
"type": "integer"
}
}
},
"releaseLabel": {
"type": "string"
},
"vpcConfiguration": {
"type": "object"
},
"initializationScript": {
"type": "string"
},
"commandLineArguments": {
"type": "array",
"items": {
"type": "object"
}
},
"code": {
"type": "object"
},
"executionRole": {
"type": "string"
},
"lastModifiedTimestamp": {
"type": "string",
"format": "date-time"
},
"savedownStorageConfiguration": {
"type": "object"
},
"azMode": {
"type": "string",
"enum": [
"SINGLE",
"MULTI"
]
},
"availabilityZoneId": {
"type": "string"
},
"createdTimestamp": {
"type": "string",
"format": "date-time"
},
"tags": {
"type": "object",
"additionalProperties": {
"type": "string"
}
}
},
"required": [
"clusterName",
"clusterType",
"capacityConfiguration",
"releaseLabel",
"azMode"
]
}