Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

CustomArtifactConfiguration

import type { CustomArtifactConfiguration } from "https://aws-api.deno.dev/v0.4/services/kinesisanalyticsv2.ts?docs=full";

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

interface CustomArtifactConfiguration {
ArtifactType: ArtifactType;
MavenReference?: MavenReference | null;
S3ContentLocation?: S3ContentLocation | null;
}

§Properties

§
ArtifactType: ArtifactType
[src]

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.

§
MavenReference?: MavenReference | null
[src]

The parameters required to fully specify a Maven reference.

§
S3ContentLocation?: S3ContentLocation | null
[src]