Interface CfnApplication.MavenReferenceProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplication.MavenReferenceProperty.Jsii$Proxy
- Enclosing class:
- CfnApplication
@Stability(Stable)
public static interface CfnApplication.MavenReferenceProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.kinesisanalyticsv2.*;
MavenReferenceProperty mavenReferenceProperty = MavenReferenceProperty.builder()
.artifactId("artifactId")
.groupId("groupId")
.version("version")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnApplication.MavenReferencePropertystatic final classAn implementation forCfnApplication.MavenReferenceProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The artifact ID of the Maven reference.The group ID of the Maven reference.The version of the Maven reference.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getArtifactId
The artifact ID of the Maven reference. -
getGroupId
The group ID of the Maven reference. -
getVersion
The version of the Maven reference. -
builder
-