CustomArtifactConfiguration

Specifies dependency JARs, as well as JAR files that contain user-defined functions (UDF).

Apache FlinkBig DataReal-Time ProcessingStreaming Analytics

Properties

Name Type Description
ArtifactType object
S3ContentLocation object
MavenReference object
View JSON Schema on GitHub

JSON Schema

amazon-managed-apache-flink-custom-artifact-configuration-schema.json Raw ↑
{
  "$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-schema.json",
  "title": "CustomArtifactConfiguration",
  "description": "Specifies dependency JARs, as well as JAR files that contain user-defined functions (UDF).",
  "type": "object",
  "properties": {
    "ArtifactType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ArtifactType"
        },
        {
          "description": " <code>UDF</code> stands for user-defined functions. This type of artifact must be in an S3 bucket. A <code>DEPENDENCY_JAR</code> can be in either Maven or an S3 bucket."
        }
      ]
    },
    "S3ContentLocation": {
      "$ref": "#/components/schemas/S3ContentLocation"
    },
    "MavenReference": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MavenReference"
        },
        {
          "description": "The parameters required to fully specify a Maven reference."
        }
      ]
    }
  },
  "required": [
    "ArtifactType"
  ]
}