class Amazonite::Lambda::ImageConfig

Overview

Configuration values that override the container image Dockerfile settings. For more information, see Container image settings.

Included Modules

Defined in:

lambda/image_config.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(pull : JSON::PullParser) #

[View source]
def self.new(entry_point : Array(String) | Nil = nil, command : Array(String) | Nil = nil, working_directory : String | Nil = nil) #

[View source]

Instance Method Detail

def ==(other : self) #
Description copied from class Reference

Returns true if this reference is the same as other. Invokes same?.


def command : Array(String) | Nil #

Specifies parameters that you want to pass in with ENTRYPOINT.


[View source]
def command=(command : Array(String) | Nil) #

Specifies parameters that you want to pass in with ENTRYPOINT.


[View source]
def entry_point : Array(String) | Nil #

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


[View source]
def entry_point=(entry_point : Array(String) | Nil) #

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


[View source]
def hash(hasher) #
Description copied from class Reference

See Object#hash(hasher)


def validate! : Nil #

[View source]
def working_directory : String | Nil #

Specifies the working directory.


[View source]
def working_directory=(working_directory : String | Nil) #

Specifies the working directory.


[View source]