json.schema.entity.services.connections.storage.s3Connection.json Maven / Gradle / Ivy
{
"$id": "https://open-metadata.org/schema/entity/services/connections/storage/s3Connection.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "S3 Connection",
"description": "S3 Connection.",
"type": "object",
"javaType": "org.openmetadata.schema.services.connections.storage.S3Connection",
"definitions": {
"s3Type": {
"description": "S3 service type",
"type": "string",
"enum": ["S3"],
"default": "S3"
}
},
"properties": {
"type": {
"title": "Service Type",
"description": "Service Type",
"$ref": "#/definitions/s3Type",
"default": "S3"
},
"awsConfig": {
"title": "AWS Credentials Configuration",
"$ref": "../../../../security/credentials/awsCredentials.json"
},
"bucketNames": {
"title": "Bucket Names",
"description": "Bucket Names of the data source.",
"type": "array",
"items": {
"type": "string"
},
"default": null
},
"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"
}
},
"additionalProperties": false,
"required": [
"awsConfig"
]
}