interface CustomArtifactConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.KinesisAnalyticsV2.Mixins.CfnApplicationPropsMixin.CustomArtifactConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskinesisanalyticsv2/mixins#CfnApplicationPropsMixin_CustomArtifactConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.kinesisanalyticsv2.mixins.CfnApplicationPropsMixin.CustomArtifactConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_kinesisanalyticsv2.mixins.CfnApplicationPropsMixin.CustomArtifactConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_kinesisanalyticsv2 » mixins » CfnApplicationPropsMixin » 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 { mixins as kinesisanalyticsv2_mixins } from '@aws-cdk/mixins-preview/aws-kinesisanalyticsv2';
const customArtifactConfigurationProperty: kinesisanalyticsv2_mixins.CfnApplicationPropsMixin.CustomArtifactConfigurationProperty = {
artifactType: 'artifactType',
mavenReference: {
artifactId: 'artifactId',
groupId: 'groupId',
version: 'version',
},
s3ContentLocation: {
bucketArn: 'bucketArn',
fileKey: 'fileKey',
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
(optional)
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
Go
Java
Python
TypeScript