json.schema.entity.services.connections.database.glueConnection.json Maven / Gradle / Ivy
{
"$id": "https://open-metadata.org/schema/entity/services/connections/database/glueConnection.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "GlueConnection",
"description": "Glue Connection Config",
"type": "object",
"javaType": "org.openmetadata.schema.services.connections.database.GlueConnection",
"definitions": {
"glueType": {
"description": "Service type.",
"type": "string",
"enum": ["Glue"],
"default": "Glue"
}
},
"properties": {
"type": {
"title": "Service Type",
"description": "Service Type",
"$ref": "#/definitions/glueType",
"default": "Glue"
},
"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"
},
"supportsDBTExtraction": {
"$ref": "../connectionBasicType.json#/definitions/supportsDBTExtraction"
}
},
"additionalProperties": false,
"required": ["awsConfig"]
}