AppImageConfigCodeEditorAppImageConfigContainerConfig constructor

const AppImageConfigCodeEditorAppImageConfigContainerConfig({
  1. Input<List<String>?>? containerArguments,
  2. Input<List<String>?>? containerEntrypoints,
  3. Input<Map<String, String>?>? containerEnvironmentVariables,
})

Creates a new AppImageConfigCodeEditorAppImageConfigContainerConfig. containerArguments The arguments for the container when you're running the application. containerEntrypoints The entrypoint used to run the application in the container. containerEnvironmentVariables The environment variables to set in the container.

Implementation

const AppImageConfigCodeEditorAppImageConfigContainerConfig({
  this.containerArguments,
  this.containerEntrypoints,
  this.containerEnvironmentVariables,
});