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();
 

See Also: