interface ImageConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Lambda.Mixins.CfnFunctionPropsMixin.ImageConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslambda/mixins#CfnFunctionPropsMixin_ImageConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.lambda.mixins.CfnFunctionPropsMixin.ImageConfigProperty |
Python | aws_cdk.mixins_preview.aws_lambda.mixins.CfnFunctionPropsMixin.ImageConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_lambda » mixins » CfnFunctionPropsMixin » ImageConfigProperty |
Configuration values that override the container image Dockerfile settings.
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 { mixins as lambda_mixins } from '@aws-cdk/mixins-preview/aws-lambda';
const imageConfigProperty: lambda_mixins.CfnFunctionPropsMixin.ImageConfigProperty = {
command: ['command'],
entryPoint: ['entryPoint'],
workingDirectory: 'workingDirectory',
};
Properties
| Name | Type | Description |
|---|---|---|
| command? | string[] | Specifies parameters that you want to pass in with ENTRYPOINT. |
| entry | string[] | Specifies the entry point to their application, which is typically the location of the runtime executable. |
| working | string | Specifies the working directory. |
command?
Type:
string[]
(optional)
Specifies parameters that you want to pass in with ENTRYPOINT.
You can specify a maximum of 1,500 parameters in the list.
entryPoint?
Type:
string[]
(optional)
Specifies the entry point to their application, which is typically the location of the runtime executable.
You can specify a maximum of 1,500 string entries in the list.
workingDirectory?
Type:
string
(optional)
Specifies the working directory.
The length of the directory string cannot exceed 1,000 characters.

.NET
Go
Java
Python
TypeScript