@Stability(value=Stable)
public static interface CfnApplicationV2.MavenReferenceProperty
extends software.amazon.jsii.JsiiSerializable
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.kinesisanalytics.*;
MavenReferenceProperty mavenReferenceProperty = MavenReferenceProperty.builder()
.artifactId("artifactId")
.groupId("groupId")
.version("version")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnApplicationV2.MavenReferenceProperty.Builder
A builder for
CfnApplicationV2.MavenReferenceProperty |
static class |
CfnApplicationV2.MavenReferenceProperty.Jsii$Proxy
An implementation for
CfnApplicationV2.MavenReferenceProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnApplicationV2.MavenReferenceProperty.Builder |
builder() |
String |
getArtifactId()
The artifact ID of the Maven reference.
|
String |
getGroupId()
The group ID of the Maven reference.
|
String |
getVersion()
The version of the Maven reference.
|
@Stability(value=Stable) @NotNull String getArtifactId()
@Stability(value=Stable) @NotNull String getGroupId()
@Stability(value=Stable) @NotNull String getVersion()
@Stability(value=Stable) static CfnApplicationV2.MavenReferenceProperty.Builder builder()
Copyright © 2022. All rights reserved.