Class: Aws::Lambda::Types::ImageConfig

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#commandArray<String>

Specifies parameters that you want to pass in with ENTRYPOINT.

Returns:

  • (Array<String>)


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_pointArray<String>

Specifies the entry point to their application, which is typically the location of the runtime executable.

Returns:

  • (Array<String>)


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_directoryString

Specifies the working directory.

Returns:

  • (String)


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