Interface DockerImageFunctionProps

All Superinterfaces:
EventInvokeConfigOptions, FunctionOptions, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
DockerImageFunctionProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.102.0 (build e354887)", date="2024-08-29T22:54:21.057Z") @Stability(Stable) public interface DockerImageFunctionProps extends software.amazon.jsii.JsiiSerializable, FunctionOptions
Properties to configure a new DockerImageFunction construct.

Example:

 DockerImageFunction.Builder.create(this, "AssetFunction")
         .code(DockerImageCode.fromImageAsset(join(__dirname, "docker-handler")))
         .build();