Interface DockerImageFunctionProps

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

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2025-01-09T21:22:24.169Z") @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();