{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-managed-apache-flink/refs/heads/main/json-schema/amazon-managed-apache-flink-custom-artifact-configuration-description-schema.json",
"title": "CustomArtifactConfigurationDescription",
"description": "Specifies a dependency JAR or a JAR of user-defined functions.",
"type": "object",
"properties": {
"ArtifactType": {
"allOf": [
{
"$ref": "#/components/schemas/ArtifactType"
},
{
"description": " UDF stands for user-defined functions. This type of artifact must be in an S3 bucket. A DEPENDENCY_JAR can be in either Maven or an S3 bucket."
}
]
},
"S3ContentLocationDescription": {
"$ref": "#/components/schemas/S3ContentLocation"
},
"MavenReferenceDescription": {
"allOf": [
{
"$ref": "#/components/schemas/MavenReference"
},
{
"description": "The parameters that are required to specify a Maven dependency."
}
]
}
}
}