CodeImageConfig¶
-
class
aws_cdk.aws_lambda.
CodeImageConfig
(*, image_uri, cmd=None, entrypoint=None)¶ Bases:
object
Result of the bind when an ECR image is used.
- Parameters
image_uri (
str
) – URI to the Docker image.cmd (
Optional
[List
[str
]]) – Specify or override the CMD on the specified Docker image or Dockerfile. This needs to be in the ‘exec form’, viz.,[ 'executable', 'param1', 'param2' ]
. Default: - use the CMD specified in the docker image or Dockerfile.entrypoint (
Optional
[List
[str
]]) – Specify or override the ENTRYPOINT on the specified Docker image or Dockerfile. An ENTRYPOINT allows you to configure a container that will run as an executable. This needs to be in the ‘exec form’, viz.,[ 'executable', 'param1', 'param2' ]
. Default: - use the ENTRYPOINT in the docker image or Dockerfile.
Attributes
-
cmd
¶ Specify or override the CMD on the specified Docker image or Dockerfile.
This needs to be in the ‘exec form’, viz.,
[ 'executable', 'param1', 'param2' ]
.- Default
use the CMD specified in the docker image or Dockerfile.
- See
- Return type
Optional
[List
[str
]]
-
entrypoint
¶ Specify or override the ENTRYPOINT on the specified Docker image or Dockerfile.
An ENTRYPOINT allows you to configure a container that will run as an executable. This needs to be in the ‘exec form’, viz.,
[ 'executable', 'param1', 'param2' ]
.- Default
use the ENTRYPOINT in the docker image or Dockerfile.
- See
https://docs.docker.com/engine/reference/builder/#entrypoint
- Return type
Optional
[List
[str
]]
-
image_uri
¶ URI to the Docker image.
- Return type
str