libZSservicesZSamazonka-lambdaZSamazonka-lambda
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.Lambda.Types.ImageConfig

Description

 
Synopsis

Documentation

data ImageConfig Source #

Configuration values that override the container image Dockerfile settings. See Container settings.

See: newImageConfig smart constructor.

Constructors

ImageConfig' 

Fields

Instances

Instances details
Eq ImageConfig Source # 
Instance details

Defined in Amazonka.Lambda.Types.ImageConfig

Read ImageConfig Source # 
Instance details

Defined in Amazonka.Lambda.Types.ImageConfig

Show ImageConfig Source # 
Instance details

Defined in Amazonka.Lambda.Types.ImageConfig

Generic ImageConfig Source # 
Instance details

Defined in Amazonka.Lambda.Types.ImageConfig

Associated Types

type Rep ImageConfig :: Type -> Type #

NFData ImageConfig Source # 
Instance details

Defined in Amazonka.Lambda.Types.ImageConfig

Methods

rnf :: ImageConfig -> () #

Hashable ImageConfig Source # 
Instance details

Defined in Amazonka.Lambda.Types.ImageConfig

ToJSON ImageConfig Source # 
Instance details

Defined in Amazonka.Lambda.Types.ImageConfig

FromJSON ImageConfig Source # 
Instance details

Defined in Amazonka.Lambda.Types.ImageConfig

type Rep ImageConfig Source # 
Instance details

Defined in Amazonka.Lambda.Types.ImageConfig

type Rep ImageConfig = D1 ('MetaData "ImageConfig" "Amazonka.Lambda.Types.ImageConfig" "libZSservicesZSamazonka-lambdaZSamazonka-lambda" 'False) (C1 ('MetaCons "ImageConfig'" 'PrefixI 'True) (S1 ('MetaSel ('Just "command") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text])) :*: (S1 ('MetaSel ('Just "entryPoint") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text])) :*: S1 ('MetaSel ('Just "workingDirectory") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))

newImageConfig :: ImageConfig Source #

Create a value of ImageConfig with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:command:ImageConfig', imageConfig_command - Specifies parameters that you want to pass in with ENTRYPOINT.

$sel:entryPoint:ImageConfig', imageConfig_entryPoint - Specifies the entry point to their application, which is typically the location of the runtime executable.

$sel:workingDirectory:ImageConfig', imageConfig_workingDirectory - Specifies the working directory.

imageConfig_command :: Lens' ImageConfig (Maybe [Text]) Source #

Specifies parameters that you want to pass in with ENTRYPOINT.

imageConfig_entryPoint :: Lens' ImageConfig (Maybe [Text]) Source #

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

imageConfig_workingDirectory :: Lens' ImageConfig (Maybe Text) Source #

Specifies the working directory.