Interface CfnApplicationV2.MavenReferenceProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplicationV2.MavenReferenceProperty.Jsii$Proxy
- Enclosing class:
CfnApplicationV2
@Stability(Stable)
public static interface CfnApplicationV2.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.kinesisanalytics.*; MavenReferenceProperty mavenReferenceProperty = MavenReferenceProperty.builder() .artifactId("artifactId") .groupId("groupId") .version("version") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnApplicationV2.MavenReferenceProperty
static final class
An implementation forCfnApplicationV2.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.- See Also:
-
getGroupId
The group ID of the Maven reference.- See Also:
-
getVersion
The version of the Maven reference.- See Also:
-
builder
-