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();
 

See Also: