Creates a new Lambda function. The function configuration is created from the request parameters, and the code for the function is provided by a .zip file. The function name is case-sensitive.
This operation requires permission for the lambda:CreateFunction
action.
POST /2015-03-31/functions HTTP/1.1
Content-type: application/json
{
"[Code](#SSS-CreateFunction-request-Code)": {
"[S3Bucket](API_FunctionCode.md#SSS-Type-FunctionCode-S3Bucket)": "string",
"[S3Key](API_FunctionCode.md#SSS-Type-FunctionCode-S3Key)": "string",
"[S3ObjectVersion](API_FunctionCode.md#SSS-Type-FunctionCode-S3ObjectVersion)": "string",
"[ZipFile](API_FunctionCode.md#SSS-Type-FunctionCode-ZipFile)": blob
},
"[DeadLetterConfig](#SSS-CreateFunction-request-DeadLetterConfig)": {
"[TargetArn](API_DeadLetterConfig.md#SSS-Type-DeadLetterConfig-TargetArn)": "string"
},
"[Description](#SSS-CreateFunction-request-Description)": "string",
"[Environment](#SSS-CreateFunction-request-Environment)": {
"[Variables](API_Environment.md#SSS-Type-Environment-Variables)": {
"string" : "string"
}
},
"[FunctionName](#SSS-CreateFunction-request-FunctionName)": "string",
"[Handler](#SSS-CreateFunction-request-Handler)": "string",
"[KMSKeyArn](#SSS-CreateFunction-request-KMSKeyArn)": "string",
"[Layers](#SSS-CreateFunction-request-Layers)": [ "string" ],
"[MemorySize](#SSS-CreateFunction-request-MemorySize)": number,
"[Publish](#SSS-CreateFunction-request-Publish)": boolean,
"[Role](#SSS-CreateFunction-request-Role)": "string",
"[Runtime](#SSS-CreateFunction-request-Runtime)": "string",
"[Tags](#SSS-CreateFunction-request-Tags)": {
"string" : "string"
},
"[Timeout](#SSS-CreateFunction-request-Timeout)": number,
"[TracingConfig](#SSS-CreateFunction-request-TracingConfig)": {
"[Mode](API_TracingConfig.md#SSS-Type-TracingConfig-Mode)": "string"
},
"[VpcConfig](#SSS-CreateFunction-request-VpcConfig)": {
"[SecurityGroupIds](API_VpcConfig.md#SSS-Type-VpcConfig-SecurityGroupIds)": [ "string" ],
"[SubnetIds](API_VpcConfig.md#SSS-Type-VpcConfig-SubnetIds)": [ "string" ]
}
}
The request does not use any URI parameters.
The request accepts the following data in JSON format.
** Code **
The code for the function.
Type: FunctionCode object
Required: Yes
** DeadLetterConfig **
A dead letter queue configuration that specifies the queue or topic where Lambda sends asynchronous events when they fail processing. For more information, see Dead Letter Queues.
Type: DeadLetterConfig object
Required: No
** Description **
A description of the function.
Type: String
Length Constraints: Minimum length of 0. Maximum length of 256.
Required: No
** Environment **
Environment variables that are accessible from function code during execution.
Type: Environment object
Required: No
** FunctionName ** The name of the lambda function.
Name formats
- Function name -
MyFunction
. - Function ARN -
arn:aws:lambda:us-west-2:123456789012:function:MyFunction
. - Partial ARN -
123456789012:function:MyFunction
. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
Type: String
Length Constraints: Minimum length of 1. Maximum length of 140.
Pattern:(arn:(aws[a-zA-Z-]*)?:lambda:)?([a-z]{2}(-gov)?-[a-z]+-\d{1}:)?(\d{12}:)?(function:)?([a-zA-Z0-9-_]+)(:(\$LATEST|[a-zA-Z0-9-_]+))?
Required: Yes
** Handler **
The name of the method within your code that Lambda calls to execute your function. For more information, see Programming Model.
Type: String
Length Constraints: Maximum length of 128.
Pattern: [^\s]+
Required: Yes
** KMSKeyArn **
The ARN of the KMS key used to encrypt your function's environment variables. If not provided, AWS Lambda will use a default service key.
Type: String
Pattern: (arn:(aws[a-zA-Z-]*)?:[a-z0-9-.]+:.*)|()
Required: No
** Layers **
A list of function layers to add to the function's execution environment.
Type: Array of strings
Length Constraints: Minimum length of 1. Maximum length of 140.
Pattern: arn:[a-zA-Z0-9-]+:lambda:[a-zA-Z0-9-]+:\d{12}:layer:[a-zA-Z0-9-_]+:[0-9]+
Required: No
** MemorySize **
The amount of memory that your function has access to. Increasing the function's memory also increases it's CPU allocation. The default value is 128 MB. The value must be a multiple of 64 MB.
Type: Integer
Valid Range: Minimum value of 128. Maximum value of 3008.
Required: No
** Publish **
Set to true to publish the first version of the function during creation.
Type: Boolean
Required: No
** Role **
The Amazon Resource Name (ARN) of the function's execution role.
Type: String
Pattern: arn:(aws[a-zA-Z-]*)?:iam::\d{12}:role/?[a-zA-Z_0-9+=,.@\-_/]+
Required: Yes
** Runtime **
The runtime version for the function.
Type: String
Valid Values: nodejs | nodejs4.3 | nodejs6.10 | nodejs8.10 | java8 | python2.7 | python3.6 | python3.7 | dotnetcore1.0 | dotnetcore2.0 | dotnetcore2.1 | nodejs4.3-edge | go1.x | ruby2.5 | provided
Required: Yes
** Tags **
The list of tags (key-value pairs) assigned to the new function. For more information, see Tagging Lambda Functions in the AWS Lambda Developer Guide.
Type: String to string map
Required: No
** Timeout **
The amount of time that Lambda allows a function to run before terminating it. The default is 3 seconds. The maximum allowed value is 900 seconds.
Type: Integer
Valid Range: Minimum value of 1.
Required: No
** TracingConfig **
Set Mode
to Active
to sample and trace a subset of incoming requests with AWS X-Ray.
Type: TracingConfig object
Required: No
** VpcConfig **
If your Lambda function accesses resources in a VPC, you provide this parameter identifying the list of security group IDs and subnet IDs. These must belong to the same VPC. You must provide at least one security group and one subnet ID.
Type: VpcConfig object
Required: No
HTTP/1.1 201
Content-type: application/json
{
"[CodeSha256](#SSS-CreateFunction-response-CodeSha256)": "string",
"[CodeSize](#SSS-CreateFunction-response-CodeSize)": number,
"[DeadLetterConfig](#SSS-CreateFunction-response-DeadLetterConfig)": {
"[TargetArn](API_DeadLetterConfig.md#SSS-Type-DeadLetterConfig-TargetArn)": "string"
},
"[Description](#SSS-CreateFunction-response-Description)": "string",
"[Environment](#SSS-CreateFunction-response-Environment)": {
"[Error](API_EnvironmentResponse.md#SSS-Type-EnvironmentResponse-Error)": {
"[ErrorCode](API_EnvironmentError.md#SSS-Type-EnvironmentError-ErrorCode)": "string",
"[Message](API_EnvironmentError.md#SSS-Type-EnvironmentError-Message)": "string"
},
"[Variables](API_EnvironmentResponse.md#SSS-Type-EnvironmentResponse-Variables)": {
"string" : "string"
}
},
"[FunctionArn](#SSS-CreateFunction-response-FunctionArn)": "string",
"[FunctionName](#SSS-CreateFunction-response-FunctionName)": "string",
"[Handler](#SSS-CreateFunction-response-Handler)": "string",
"[KMSKeyArn](#SSS-CreateFunction-response-KMSKeyArn)": "string",
"[LastModified](#SSS-CreateFunction-response-LastModified)": "string",
"[Layers](#SSS-CreateFunction-response-Layers)": [
{
"[Arn](API_Layer.md#SSS-Type-Layer-Arn)": "string",
"[CodeSize](API_Layer.md#SSS-Type-Layer-CodeSize)": number
}
],
"[MasterArn](#SSS-CreateFunction-response-MasterArn)": "string",
"[MemorySize](#SSS-CreateFunction-response-MemorySize)": number,
"[RevisionId](#SSS-CreateFunction-response-RevisionId)": "string",
"[Role](#SSS-CreateFunction-response-Role)": "string",
"[Runtime](#SSS-CreateFunction-response-Runtime)": "string",
"[Timeout](#SSS-CreateFunction-response-Timeout)": number,
"[TracingConfig](#SSS-CreateFunction-response-TracingConfig)": {
"[Mode](API_TracingConfigResponse.md#SSS-Type-TracingConfigResponse-Mode)": "string"
},
"[Version](#SSS-CreateFunction-response-Version)": "string",
"[VpcConfig](#SSS-CreateFunction-response-VpcConfig)": {
"[SecurityGroupIds](API_VpcConfigResponse.md#SSS-Type-VpcConfigResponse-SecurityGroupIds)": [ "string" ],
"[SubnetIds](API_VpcConfigResponse.md#SSS-Type-VpcConfigResponse-SubnetIds)": [ "string" ],
"[VpcId](API_VpcConfigResponse.md#SSS-Type-VpcConfigResponse-VpcId)": "string"
}
}
If the action is successful, the service sends back an HTTP 201 response.
The following data is returned in JSON format by the service.
** CodeSha256 **
The SHA256 hash of the function's deployment package.
Type: String
** CodeSize **
The size of the function's deployment package in bytes.
Type: Long
** DeadLetterConfig **
The function's dead letter queue.
Type: DeadLetterConfig object
** Description **
The function's description.
Type: String
Length Constraints: Minimum length of 0. Maximum length of 256.
** Environment **
The function's environment variables.
Type: EnvironmentResponse object
** FunctionArn **
The function's Amazon Resource Name.
Type: String
Pattern: arn:(aws[a-zA-Z-]*)?:lambda:[a-z]{2}(-gov)?-[a-z]+-\d{1}:\d{12}:function:[a-zA-Z0-9-_\.]+(:(\$LATEST|[a-zA-Z0-9-_]+))?
** FunctionName **
The name of the function.
Type: String
Length Constraints: Minimum length of 1. Maximum length of 170.
Pattern: (arn:(aws[a-zA-Z-]*)?:lambda:)?([a-z]{2}(-gov)?-[a-z]+-\d{1}:)?(\d{12}:)?(function:)?([a-zA-Z0-9-_\.]+)(:(\$LATEST|[a-zA-Z0-9-_]+))?
** Handler **
The function Lambda calls to begin executing your function.
Type: String
Length Constraints: Maximum length of 128.
Pattern: [^\s]+
** KMSKeyArn **
The KMS key used to encrypt the function's environment variables. Only returned if you've configured a customer managed CMK.
Type: String
Pattern: (arn:(aws[a-zA-Z-]*)?:[a-z0-9-.]+:.*)|()
** LastModified **
The date and time that the function was last updated, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).
Type: String
** Layers **
A list of function layers.
Type: Array of Layer objects
** MasterArn **
The ARN of the master function.
Type: String
Pattern: arn:(aws[a-zA-Z-]*)?:lambda:[a-z]{2}(-gov)?-[a-z]+-\d{1}:\d{12}:function:[a-zA-Z0-9-_]+(:(\$LATEST|[a-zA-Z0-9-_]+))?
** MemorySize **
The memory allocated to the function
Type: Integer
Valid Range: Minimum value of 128. Maximum value of 3008.
** RevisionId **
Represents the latest updated revision of the function or alias.
Type: String
** Role **
The function's execution role.
Type: String
Pattern: arn:(aws[a-zA-Z-]*)?:iam::\d{12}:role/?[a-zA-Z_0-9+=,.@\-_/]+
** Runtime **
The runtime environment for the Lambda function.
Type: String
Valid Values: nodejs | nodejs4.3 | nodejs6.10 | nodejs8.10 | java8 | python2.7 | python3.6 | python3.7 | dotnetcore1.0 | dotnetcore2.0 | dotnetcore2.1 | nodejs4.3-edge | go1.x | ruby2.5 | provided
** Timeout **
The amount of time that Lambda allows a function to run before terminating it.
Type: Integer
Valid Range: Minimum value of 1.
** TracingConfig **
The function's AWS X-Ray tracing configuration.
Type: TracingConfigResponse object
** Version **
The version of the Lambda function.
Type: String
Length Constraints: Minimum length of 1. Maximum length of 1024.
Pattern: (\$LATEST|[0-9]+)
** VpcConfig **
The function's networking configuration.
Type: VpcConfigResponse object
CodeStorageExceededException
You have exceeded your maximum total code size per account. Limits
HTTP Status Code: 400
InvalidParameterValueException
One of the parameters in the request is invalid. For example, if you provided an IAM role for AWS Lambda to assume in the CreateFunction
or the UpdateFunctionConfiguration
API, that AWS Lambda is unable to assume you will get this exception.
HTTP Status Code: 400
ResourceConflictException
The resource already exists.
HTTP Status Code: 409
ResourceNotFoundException
The resource (for example, a Lambda function or access policy statement) specified in the request does not exist.
HTTP Status Code: 404
ServiceException
The AWS Lambda service encountered an internal error.
HTTP Status Code: 500
TooManyRequestsException
Request throughput limit exceeded
HTTP Status Code: 429
For more information about using this API in one of the language-specific AWS SDKs, see the following: