Interface CfnApplicationV2.CustomArtifactConfigurationProperty
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- CfnApplicationV2.CustomArtifactConfigurationProperty.Jsii$Proxy
- Enclosing class:
- CfnApplicationV2
@Stability(Stable)
public static interface CfnApplicationV2.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.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();
 - 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnApplicationV2.CustomArtifactConfigurationPropertystatic final classAn implementation forCfnApplicationV2.CustomArtifactConfigurationProperty
- 
Method SummaryMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getArtifactTypeSet 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.
- 
getMavenReferenceThe parameters required to fully specify a Maven reference.
- 
getS3ContentLocationThe location of the custom artifacts.
- 
builder
 
-