| Copyright | (c) 2013-2023 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | Safe-Inferred |
| Language | Haskell2010 |
Amazonka.Lambda.Types.ImageConfig
Description
Synopsis
- data ImageConfig = ImageConfig' {
- command :: Maybe [Text]
- entryPoint :: Maybe [Text]
- workingDirectory :: Maybe Text
- newImageConfig :: ImageConfig
- imageConfig_command :: Lens' ImageConfig (Maybe [Text])
- imageConfig_entryPoint :: Lens' ImageConfig (Maybe [Text])
- imageConfig_workingDirectory :: Lens' ImageConfig (Maybe Text)
Documentation
data ImageConfig Source #
Configuration values that override the container image Dockerfile settings. For more information, see Container image settings.
See: newImageConfig smart constructor.
Constructors
| ImageConfig' | |
Fields
| |
Instances
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.