Class: Aws::Lambda::Types::ImageConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::ImageConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lambda/types.rb
Overview
Configuration values that override the container image Dockerfile settings. For more information, see [Container image settings].
[1]: docs.aws.amazon.com/lambda/latest/dg/images-create.html#images-parms
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#command ⇒ Array<String>
Specifies parameters that you want to pass in with ENTRYPOINT.
-
#entry_point ⇒ Array<String>
Specifies the entry point to their application, which is typically the location of the runtime executable.
-
#working_directory ⇒ String
Specifies the working directory.
Instance Attribute Details
#command ⇒ Array<String>
Specifies parameters that you want to pass in with ENTRYPOINT.
3464 3465 3466 3467 3468 3469 3470 |
# File 'lib/aws-sdk-lambda/types.rb', line 3464 class ImageConfig < Struct.new( :entry_point, :command, :working_directory) SENSITIVE = [] include Aws::Structure end |
#entry_point ⇒ Array<String>
Specifies the entry point to their application, which is typically the location of the runtime executable.
3464 3465 3466 3467 3468 3469 3470 |
# File 'lib/aws-sdk-lambda/types.rb', line 3464 class ImageConfig < Struct.new( :entry_point, :command, :working_directory) SENSITIVE = [] include Aws::Structure end |
#working_directory ⇒ String
Specifies the working directory.
3464 3465 3466 3467 3468 3469 3470 |
# File 'lib/aws-sdk-lambda/types.rb', line 3464 class ImageConfig < Struct.new( :entry_point, :command, :working_directory) SENSITIVE = [] include Aws::Structure end |