interface MavenReferenceProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.KinesisAnalyticsV2.CfnApplication.MavenReferenceProperty | 
|  Java | software.amazon.awscdk.services.kinesisanalyticsv2.CfnApplication.MavenReferenceProperty | 
|  Python | aws_cdk.aws_kinesisanalyticsv2.CfnApplication.MavenReferenceProperty | 
|  TypeScript | @aws-cdk/aws-kinesisanalyticsv2»CfnApplication»MavenReferenceProperty | 
The information required to specify a Maven reference.
You can use Maven references to specify dependency JAR files.
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 mavenReferenceProperty: kinesisanalyticsv2.CfnApplication.MavenReferenceProperty = {
  artifactId: 'artifactId',
  groupId: 'groupId',
  version: 'version',
};
Properties
| Name | Type | Description | 
|---|---|---|
| artifact | string | The artifact ID of the Maven reference. | 
| group | string | The group ID of the Maven reference. | 
| version | string | The version of the Maven reference. | 
artifactId
Type:
string
The artifact ID of the Maven reference.
groupId
Type:
string
The group ID of the Maven reference.
version
Type:
string
The version of the Maven reference.
