interface CustomArtifactConfigurationProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.KinesisAnalyticsV2.CfnApplication.CustomArtifactConfigurationProperty | 
  Java | software.amazon.awscdk.services.kinesisanalyticsv2.CfnApplication.CustomArtifactConfigurationProperty | 
  Python | aws_cdk.aws_kinesisanalyticsv2.CfnApplication.CustomArtifactConfigurationProperty | 
  TypeScript  | @aws-cdk/aws-kinesisanalyticsv2 » CfnApplication » CustomArtifactConfigurationProperty | 
The configuration of connectors and user-defined functions.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as kinesisanalyticsv2 from '@aws-cdk/aws-kinesisanalyticsv2';
const customArtifactConfigurationProperty: kinesisanalyticsv2.CfnApplication.CustomArtifactConfigurationProperty = {
  artifactType: 'artifactType',
  // the properties below are optional
  mavenReference: {
    artifactId: 'artifactId',
    groupId: 'groupId',
    version: 'version',
  },
  s3ContentLocation: {
    bucketArn: 'bucketArn',
    fileKey: 'fileKey',
    // the properties below are optional
    objectVersion: 'objectVersion',
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| artifact | string | Set this to either UDF or DEPENDENCY_JAR . | 
| maven | IResolvable | Maven | The parameters required to fully specify a Maven reference. | 
| s3 | IResolvable | S3 | The location of the custom artifacts. | 
artifactType
Type:
string
Set this to either UDF or DEPENDENCY_JAR .
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?
Type:
IResolvable | Maven
(optional)
The parameters required to fully specify a Maven reference.
s3ContentLocation?
Type:
IResolvable | S3
(optional)
The location of the custom artifacts.

 .NET
 Java
 Python
 TypeScript