public static interface CfnFunction.ImageConfigProperty
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 java.util.List<java.lang.String> |
getCommand()
Specifies parameters that you want to pass in with ENTRYPOINT.
|
default java.util.List<java.lang.String> |
getEntryPoint()
Specifies the entry point to their application, which is typically the location of the runtime executable.
|
default java.lang.String |
getWorkingDirectory()
Specifies the working directory.
|
default java.util.List<java.lang.String> getCommand()
default java.util.List<java.lang.String> getEntryPoint()
default java.lang.String getWorkingDirectory()
static CfnFunction.ImageConfigProperty.Builder builder()