Interface CfnApplication.CustomArtifactConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplication.CustomArtifactConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnApplication
@Stability(Stable)
public static interface CfnApplication.CustomArtifactConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The configuration of connectors and user-defined functions.
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.*;
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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnApplication.CustomArtifactConfigurationPropertystatic final classAn implementation forCfnApplication.CustomArtifactConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getArtifactType
Set this to eitherUDForDEPENDENCY_JAR.UDFstands for user-defined functions. This type of artifact must be in an S3 bucket. ADEPENDENCY_JARcan be in either Maven or an S3 bucket.- See Also:
-
getMavenReference
The parameters required to fully specify a Maven reference.Returns union: either
IResolvableorCfnApplication.MavenReferenceProperty- See Also:
-
getS3ContentLocation
The location of the custom artifacts.Returns union: either
IResolvableorCfnApplication.S3ContentLocationProperty- See Also:
-
builder
-