Interface CfnApplicationPropsMixin.CustomArtifactConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnApplicationPropsMixin.CustomArtifactConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnApplicationPropsMixin

@Stability(Stable) public static interface CfnApplicationPropsMixin.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.cfnpropertymixins.services.kinesisanalyticsv2.*;
 CustomArtifactConfigurationProperty customArtifactConfigurationProperty = CustomArtifactConfigurationProperty.builder()
         .artifactType("artifactType")
         .mavenReference(MavenReferenceProperty.builder()
                 .artifactId("artifactId")
                 .groupId("groupId")
                 .version("version")
                 .build())
         .s3ContentLocation(S3ContentLocationProperty.builder()
                 .bucketArn("bucketArn")
                 .fileKey("fileKey")
                 .objectVersion("objectVersion")
                 .build())
         .build();
 

See Also: