aws-cdk-lib.aws_kinesisanalyticsv2.CfnApplication.MavenReferenceProperty

interface MavenReferenceProperty

LanguageType name
.NETAmazon.CDK.AWS.KinesisAnalyticsV2.CfnApplication.MavenReferenceProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awskinesisanalyticsv2#CfnApplication_MavenReferenceProperty
Javasoftware.amazon.awscdk.services.kinesisanalyticsv2.CfnApplication.MavenReferenceProperty
Pythonaws_cdk.aws_kinesisanalyticsv2.CfnApplication.MavenReferenceProperty
TypeScript aws-cdk-lib » 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 { aws_kinesisanalyticsv2 as kinesisanalyticsv2 } from 'aws-cdk-lib';
const mavenReferenceProperty: kinesisanalyticsv2.CfnApplication.MavenReferenceProperty = {
  artifactId: 'artifactId',
  groupId: 'groupId',
  version: 'version',
};

Properties

NameTypeDescription
artifactIdstringThe artifact ID of the Maven reference.
groupIdstringThe group ID of the Maven reference.
versionstringThe 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.