Class CfnApplicationV2.MavenReferenceProperty
The information required to specify a Maven reference.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.KinesisAnalytics
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnApplicationV2.MavenReferenceProperty : CfnApplicationV2.IMavenReferenceProperty
Syntax (vb)
Public Class CfnApplicationV2.MavenReferenceProperty Implements CfnApplicationV2.IMavenReferenceProperty
Remarks
You can use Maven references to specify dependency JAR files.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.KinesisAnalytics;
var mavenReferenceProperty = new MavenReferenceProperty {
ArtifactId = "artifactId",
GroupId = "groupId",
Version = "version"
};
Synopsis
Constructors
MavenReferenceProperty() | The information required to specify a Maven reference. |
Properties
ArtifactId | The artifact ID of the Maven reference. |
GroupId | The group ID of the Maven reference. |
Version | The version of the Maven reference. |
Constructors
MavenReferenceProperty()
The information required to specify a Maven reference.
public MavenReferenceProperty()
Remarks
You can use Maven references to specify dependency JAR files.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.KinesisAnalytics;
var mavenReferenceProperty = new MavenReferenceProperty {
ArtifactId = "artifactId",
GroupId = "groupId",
Version = "version"
};
Properties
ArtifactId
The artifact ID of the Maven reference.
public string ArtifactId { get; set; }
Property Value
Remarks
GroupId
The group ID of the Maven reference.
public string GroupId { get; set; }
Property Value
Remarks
Version
The version of the Maven reference.
public string Version { get; set; }