ImageConfig — AWS SDK for Ruby V3 (original) (raw)

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

Inherits:

Struct

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 Summarycollapse

SENSITIVE =

[]

Instance Attribute Summary collapse

Instance Attribute Details

#command ⇒ Array

Specifies parameters that you want to pass in with ENTRYPOINT.

3537 3538 3539 3540 3541 3542 3543 # File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 3537 class ImageConfig < Struct.new( :entry_point, :command, :working_directory) SENSITIVE = [] include Aws::Structure end

#entry_point ⇒ Array

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

3537 3538 3539 3540 3541 3542 3543 # File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 3537 class ImageConfig < Struct.new( :entry_point, :command, :working_directory) SENSITIVE = [] include Aws::Structure end

#working_directory ⇒ String

Specifies the working directory.

3537 3538 3539 3540 3541 3542 3543 # File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 3537 class ImageConfig < Struct.new( :entry_point, :command, :working_directory) SENSITIVE = [] include Aws::Structure end