AWS::Lambda::Function ImageConfig
Configuration values that override the container image Dockerfile settings. For more information, see Container image settings.
Syntax
To declare this entity in your AWS CloudFormation template, use the following syntax:
JSON
{ "Command" :
[ String, ... ]
, "EntryPoint" :[ String, ... ]
, "WorkingDirectory" :String
}
YAML
Command:
- String
EntryPoint:- String
WorkingDirectory:String
Properties
Command
-
Specifies parameters that you want to pass in with ENTRYPOINT. You can specify a maximum of 1,500 parameters in the list.
Required: No
Type: Array of String
Maximum:
1500
Update requires: No interruption
EntryPoint
-
Specifies the entry point to their application, which is typically the location of the runtime executable. You can specify a maximum of 1,500 string entries in the list.
Required: No
Type: Array of String
Maximum:
1500
Update requires: No interruption
WorkingDirectory
-
Specifies the working directory. The length of the directory string cannot exceed 1,000 characters.
Required: No
Type: String
Maximum:
1000
Update requires: No interruption