ImageConfig

Configuration values that override the container image Dockerfile settings. For more information, see Container image settings.

APIs.ioEngineeringPlatform

Properties

Name Type Description
EntryPoint object
Command object
WorkingDirectory object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-imageconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ImageConfig",
  "title": "ImageConfig",
  "type": "object",
  "properties": {
    "EntryPoint": {
      "allOf": [
        {
          "$ref": "#/components/schemas/StringList"
        },
        {
          "description": "Specifies the entry point to their application, which is typically the location of the runtime executable."
        }
      ]
    },
    "Command": {
      "allOf": [
        {
          "$ref": "#/components/schemas/StringList"
        },
        {
          "description": "Specifies parameters that you want to pass in with ENTRYPOINT."
        }
      ]
    },
    "WorkingDirectory": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WorkingDirectory"
        },
        {
          "description": "Specifies the working directory."
        }
      ]
    }
  },
  "description": "Configuration values that override the container image Dockerfile settings. For more information, see <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/images-create.html#images-parms\">Container image settings</a>."
}