Interface DockerImageFunctionProps

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

@Generated(value="jsii-pacmak/1.93.0 (build 1706ca5)", date="2023-12-21T23:07:54.411Z") @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();