Interface CfnApplicationPropsMixin.MavenReferenceProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplicationPropsMixin.MavenReferenceProperty.Jsii$Proxy
- Enclosing class:
CfnApplicationPropsMixin
@Stability(Stable)
public static interface CfnApplicationPropsMixin.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.cfnpropertymixins.services.kinesisanalyticsv2.*;
MavenReferenceProperty mavenReferenceProperty = MavenReferenceProperty.builder()
.artifactId("artifactId")
.groupId("groupId")
.version("version")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnApplicationPropsMixin.MavenReferencePropertystatic final classAn implementation forCfnApplicationPropsMixin.MavenReferenceProperty -
Method Summary
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
-