Class: Aws::Lambda::Types::ImageConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::ImageConfig
- Defined in:
- gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb
Overview
Configuration values that override the container image Dockerfile settings. For more information, see Container image settings.
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.
3515 3516 3517 3518 3519 3520 3521 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 3515 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.
3515 3516 3517 3518 3519 3520 3521 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 3515 class ImageConfig < Struct.new( :entry_point, :command, :working_directory) SENSITIVE = [] include Aws::Structure end |
#working_directory ⇒ String
Specifies the working directory.
3515 3516 3517 3518 3519 3520 3521 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 3515 class ImageConfig < Struct.new( :entry_point, :command, :working_directory) SENSITIVE = [] include Aws::Structure end |