Amazon Managed Apache Flink Custom Artifact Configuration Description Structure

Specifies a dependency JAR or a JAR of user-defined functions.

Type: object Properties: 3
Apache FlinkBig DataReal-Time ProcessingStreaming Analytics

CustomArtifactConfigurationDescription is a JSON Structure definition published by Amazon Managed Service for Apache Flink, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

ArtifactType S3ContentLocationDescription MavenReferenceDescription

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-managed-apache-flink/refs/heads/main/json-structure/amazon-managed-apache-flink-custom-artifact-configuration-description-structure.json",
  "name": "CustomArtifactConfigurationDescription",
  "description": "Specifies a dependency JAR or a JAR of user-defined functions.",
  "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."
        }
      ]
    },
    "S3ContentLocationDescription": {
      "$ref": "#/components/schemas/S3ContentLocation"
    },
    "MavenReferenceDescription": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MavenReference"
        },
        {
          "description": "The parameters that are required to specify a Maven dependency."
        }
      ]
    }
  }
}