json.schema.entity.services.connections.database.dynamoDBConnection.json Maven / Gradle / Ivy
{
"$id": "https://open-metadata.org/schema/entity/services/connections/database/dynamoDBConnection.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "DynamoDBConnection",
"description": "DynamoDB Connection Config",
"type": "object",
"javaType": "org.openmetadata.schema.services.connections.database.DynamoDBConnection",
"definitions": {
"dynamoDBType": {
"description": "Service type.",
"type": "string",
"enum": ["DynamoDB"],
"default": "DynamoDB"
}
},
"properties": {
"type": {
"title": "Service Type",
"description": "Service Type",
"$ref": "#/definitions/dynamoDBType",
"default": "DynamoDB"
},
"awsConfig": {
"title": "AWS Credentials Configuration",
"$ref": "../../../../security/credentials/awsCredentials.json"
},
"databaseName": {
"title": "Database Name",
"description": "Optional name to give to the database in OpenMetadata. If left blank, we will use default as the database name.",
"type": "string"
},
"connectionOptions": {
"title": "Connection Options",
"$ref": "../connectionBasicType.json#/definitions/connectionOptions"
},
"connectionArguments": {
"title": "Connection Arguments",
"$ref": "../connectionBasicType.json#/definitions/connectionArguments"
},
"supportsMetadataExtraction": {
"title": "Supports Metadata Extraction",
"$ref": "../connectionBasicType.json#/definitions/supportsMetadataExtraction"
},
"supportsProfiler": {
"title": "Supports Profiler",
"$ref": "../connectionBasicType.json#/definitions/supportsProfiler"
}
},
"additionalProperties": false,
"required": ["awsConfig"]
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy