FunctionImageConfig constructor

const FunctionImageConfig({
  1. Input<List<String>?>? commands,
  2. Input<List<String>?>? entryPoints,
  3. Input<String?>? workingDirectory,
})

Creates a new FunctionImageConfig. commands Parameters to pass to the container image. entryPoints Entry point to your application. workingDirectory Working directory for the container image.

Implementation

const FunctionImageConfig({
  this.commands,
  this.entryPoints,
  this.workingDirectory,
});