@Stability(value=Stable)
public static interface CfnApplicationV2.CustomArtifactConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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.*;
CustomArtifactConfigurationProperty customArtifactConfigurationProperty = CustomArtifactConfigurationProperty.builder()
.artifactType("artifactType")
// the properties below are optional
.mavenReference(MavenReferenceProperty.builder()
.artifactId("artifactId")
.groupId("groupId")
.version("version")
.build())
.s3ContentLocation(S3ContentLocationProperty.builder()
.bucketArn("bucketArn")
.fileKey("fileKey")
// the properties below are optional
.objectVersion("objectVersion")
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnApplicationV2.CustomArtifactConfigurationProperty.Builder
A builder for
CfnApplicationV2.CustomArtifactConfigurationProperty |
static class |
CfnApplicationV2.CustomArtifactConfigurationProperty.Jsii$Proxy
An implementation for
CfnApplicationV2.CustomArtifactConfigurationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnApplicationV2.CustomArtifactConfigurationProperty.Builder |
builder() |
String |
getArtifactType()
Set this to either `UDF` or `DEPENDENCY_JAR` .
|
default Object |
getMavenReference()
The parameters required to fully specify a Maven reference.
|
default Object |
getS3ContentLocation()
The location of the custom artifacts.
|
@Stability(value=Stable) @NotNull String getArtifactType()
UDF stands for user-defined functions. This type of artifact must be in an S3 bucket. A DEPENDENCY_JAR can be in either Maven or an S3 bucket.
@Stability(value=Stable) @Nullable default Object getMavenReference()
@Stability(value=Stable) @Nullable default Object getS3ContentLocation()
@Stability(value=Stable) static CfnApplicationV2.CustomArtifactConfigurationProperty.Builder builder()
Copyright © 2022. All rights reserved.