@Stability(value=Stable)
public static interface CfnFunction.ImageConfigProperty
extends software.amazon.jsii.JsiiSerializable
For more information, see Container image settings .
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.lambda.*;
ImageConfigProperty imageConfigProperty = ImageConfigProperty.builder()
.command(List.of("command"))
.entryPoint(List.of("entryPoint"))
.workingDirectory("workingDirectory")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnFunction.ImageConfigProperty.Builder
A builder for
CfnFunction.ImageConfigProperty |
static class |
CfnFunction.ImageConfigProperty.Jsii$Proxy
An implementation for
CfnFunction.ImageConfigProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnFunction.ImageConfigProperty.Builder |
builder() |
default List<String> |
getCommand()
Specifies parameters that you want to pass in with ENTRYPOINT.
|
default List<String> |
getEntryPoint()
Specifies the entry point to their application, which is typically the location of the runtime executable.
|
default String |
getWorkingDirectory()
Specifies the working directory.
|
@Stability(value=Stable) @Nullable default List<String> getCommand()
You can specify a maximum of 1,500 parameters in the list.
@Stability(value=Stable) @Nullable default List<String> getEntryPoint()
You can specify a maximum of 1,500 string entries in the list.
@Stability(value=Stable) @Nullable default String getWorkingDirectory()
The length of the directory string cannot exceed 1,000 characters.
@Stability(value=Stable) static CfnFunction.ImageConfigProperty.Builder builder()
Copyright © 2023. All rights reserved.