Class: Aws::Lambda::Types::ImageConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::ImageConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lambda/types.rb
Overview
Note:
When making an API call, you may pass ImageConfig data as a hash:
{
entry_point: ["String"],
command: ["String"],
working_directory: "WorkingDirectory",
}
Configuration values that override the container image Dockerfile settings. See [Container 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.
2917 2918 2919 2920 2921 2922 2923 |
# File 'lib/aws-sdk-lambda/types.rb', line 2917 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.
2917 2918 2919 2920 2921 2922 2923 |
# File 'lib/aws-sdk-lambda/types.rb', line 2917 class ImageConfig < Struct.new( :entry_point, :command, :working_directory) SENSITIVE = [] include Aws::Structure end |
#working_directory ⇒ String
Specifies the working directory.
2917 2918 2919 2920 2921 2922 2923 |
# File 'lib/aws-sdk-lambda/types.rb', line 2917 class ImageConfig < Struct.new( :entry_point, :command, :working_directory) SENSITIVE = [] include Aws::Structure end |