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

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

Instance Attribute Details

#commandArray<String>

Specifies parameters that you want to pass in with ENTRYPOINT.

Returns:

  • (Array<String>)


3270
3271
3272
3273
3274
3275
3276
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 3270

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>)


3270
3271
3272
3273
3274
3275
3276
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 3270

class ImageConfig < Struct.new(
  :entry_point,
  :command,
  :working_directory)
  SENSITIVE = []
  include Aws::Structure
end

#working_directoryString

Specifies the working directory.

Returns:

  • (String)


3270
3271
3272
3273
3274
3275
3276
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 3270

class ImageConfig < Struct.new(
  :entry_point,
  :command,
  :working_directory)
  SENSITIVE = []
  include Aws::Structure
end