Skip to content

Commit 8ebff88

Browse files
committed
layers, custom runtimes, ruby, application load balancers
1 parent 4bc1fe1 commit 8ebff88

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+2556
-402
lines changed
+132
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,132 @@
1+
# AddLayerVersionPermission<a name="API_AddLayerVersionPermission"></a>
2+
3+
Adds permissions to the resource\-based policy of a version of a function layer\. Use this action to grant layer usage permission to other accounts\. You can grant permission to a single account, all AWS accounts, or all accounts in an organization\.
4+
5+
To revoke permission, call [RemoveLayerVersionPermission](API_RemoveLayerVersionPermission.md) with the statement ID that you specified when you added it\.
6+
7+
## Request Syntax<a name="API_AddLayerVersionPermission_RequestSyntax"></a>
8+
9+
```
10+
POST /2018-10-31/layers/LayerName/versions/VersionNumber/policy?RevisionId=RevisionId HTTP/1.1
11+
Content-type: application/json
12+
13+
{
14+
"[Action](#SSS-AddLayerVersionPermission-request-Action)": "string",
15+
"[OrganizationId](#SSS-AddLayerVersionPermission-request-OrganizationId)": "string",
16+
"[Principal](#SSS-AddLayerVersionPermission-request-Principal)": "string",
17+
"[StatementId](#SSS-AddLayerVersionPermission-request-StatementId)": "string"
18+
}
19+
```
20+
21+
## URI Request Parameters<a name="API_AddLayerVersionPermission_RequestParameters"></a>
22+
23+
The request requires the following URI parameters\.
24+
25+
** [LayerName](#API_AddLayerVersionPermission_RequestSyntax) ** <a name="SSS-AddLayerVersionPermission-request-LayerName"></a>
26+
The name of the layer\.
27+
Length Constraints: Minimum length of 1\. Maximum length of 140\.
28+
Pattern: `(arn:[a-zA-Z0-9-]+:lambda:[a-zA-Z0-9-]+:\d{12}:layer:[a-zA-Z0-9-_]+)|[a-zA-Z0-9-_]+`
29+
30+
** [RevisionId](#API_AddLayerVersionPermission_RequestSyntax) ** <a name="SSS-AddLayerVersionPermission-request-RevisionId"></a>
31+
Only update the policy if the revision ID matches the ID specified\. Use this option to avoid modifying a policy that has changed since you last read it\.
32+
33+
** [VersionNumber](#API_AddLayerVersionPermission_RequestSyntax) ** <a name="SSS-AddLayerVersionPermission-request-VersionNumber"></a>
34+
The version number\.
35+
36+
## Request Body<a name="API_AddLayerVersionPermission_RequestBody"></a>
37+
38+
The request accepts the following data in JSON format\.
39+
40+
** [Action](#API_AddLayerVersionPermission_RequestSyntax) ** <a name="SSS-AddLayerVersionPermission-request-Action"></a>
41+
The API action that grants access to the layer\. For example, `lambda:GetLayerVersion`\.
42+
Type: String
43+
Pattern: `lambda:GetLayerVersion`
44+
Required: Yes
45+
46+
** [OrganizationId](#API_AddLayerVersionPermission_RequestSyntax) ** <a name="SSS-AddLayerVersionPermission-request-OrganizationId"></a>
47+
With the principal set to `*`, grant permission to all accounts in the specified organization\.
48+
Type: String
49+
Pattern: `o-[a-z0-9]{10,32}`
50+
Required: No
51+
52+
** [Principal](#API_AddLayerVersionPermission_RequestSyntax) ** <a name="SSS-AddLayerVersionPermission-request-Principal"></a>
53+
An account ID, or `*` to grant permission to all AWS accounts\.
54+
Type: String
55+
Pattern: `\d{12}|\*|arn:(aws[a-zA-Z-]*):iam::\d{12}:root`
56+
Required: Yes
57+
58+
** [StatementId](#API_AddLayerVersionPermission_RequestSyntax) ** <a name="SSS-AddLayerVersionPermission-request-StatementId"></a>
59+
An identifier that distinguishes the policy from others on the same layer version\.
60+
Type: String
61+
Length Constraints: Minimum length of 1\. Maximum length of 100\.
62+
Pattern: `([a-zA-Z0-9-_]+)`
63+
Required: Yes
64+
65+
## Response Syntax<a name="API_AddLayerVersionPermission_ResponseSyntax"></a>
66+
67+
```
68+
HTTP/1.1 201
69+
Content-type: application/json
70+
71+
{
72+
"[RevisionId](#SSS-AddLayerVersionPermission-response-RevisionId)": "string",
73+
"[Statement](#SSS-AddLayerVersionPermission-response-Statement)": "string"
74+
}
75+
```
76+
77+
## Response Elements<a name="API_AddLayerVersionPermission_ResponseElements"></a>
78+
79+
If the action is successful, the service sends back an HTTP 201 response\.
80+
81+
The following data is returned in JSON format by the service\.
82+
83+
** [RevisionId](#API_AddLayerVersionPermission_ResponseSyntax) ** <a name="SSS-AddLayerVersionPermission-response-RevisionId"></a>
84+
A unique identifier for the current revision of the policy\.
85+
Type: String
86+
87+
** [Statement](#API_AddLayerVersionPermission_ResponseSyntax) ** <a name="SSS-AddLayerVersionPermission-response-Statement"></a>
88+
The permission statement\.
89+
Type: String
90+
91+
## Errors<a name="API_AddLayerVersionPermission_Errors"></a>
92+
93+
**InvalidParameterValueException**
94+
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\.
95+
HTTP Status Code: 400
96+
97+
**PolicyLengthExceededException**
98+
Lambda function access policy is limited to 20 KB\.
99+
HTTP Status Code: 400
100+
101+
**PreconditionFailedException**
102+
The RevisionId provided does not match the latest RevisionId for the Lambda function or alias\. Call the `GetFunction` or the `GetAlias` API to retrieve the latest RevisionId for your resource\.
103+
HTTP Status Code: 412
104+
105+
**ResourceConflictException**
106+
The resource already exists\.
107+
HTTP Status Code: 409
108+
109+
**ResourceNotFoundException**
110+
The resource \(for example, a Lambda function or access policy statement\) specified in the request does not exist\.
111+
HTTP Status Code: 404
112+
113+
**ServiceException**
114+
The AWS Lambda service encountered an internal error\.
115+
HTTP Status Code: 500
116+
117+
**TooManyRequestsException**
118+
Request throughput limit exceeded
119+
HTTP Status Code: 429
120+
121+
## See Also<a name="API_AddLayerVersionPermission_SeeAlso"></a>
122+
123+
For more information about using this API in one of the language\-specific AWS SDKs, see the following:
124+
+ [AWS Command Line Interface](https://docs.aws.amazon.com/goto/aws-cli/lambda-2015-03-31/AddLayerVersionPermission)
125+
+ [AWS SDK for \.NET](https://docs.aws.amazon.com/goto/DotNetSDKV3/lambda-2015-03-31/AddLayerVersionPermission)
126+
+ [AWS SDK for C\+\+](https://docs.aws.amazon.com/goto/SdkForCpp/lambda-2015-03-31/AddLayerVersionPermission)
127+
+ [AWS SDK for Go](https://docs.aws.amazon.com/goto/SdkForGoV1/lambda-2015-03-31/AddLayerVersionPermission)
128+
+ [AWS SDK for Java](https://docs.aws.amazon.com/goto/SdkForJava/lambda-2015-03-31/AddLayerVersionPermission)
129+
+ [AWS SDK for JavaScript](https://docs.aws.amazon.com/goto/AWSJavaScriptSDK/lambda-2015-03-31/AddLayerVersionPermission)
130+
+ [AWS SDK for PHP V3](https://docs.aws.amazon.com/goto/SdkForPHPV3/lambda-2015-03-31/AddLayerVersionPermission)
131+
+ [AWS SDK for Python](https://docs.aws.amazon.com/goto/boto3/lambda-2015-03-31/AddLayerVersionPermission)
132+
+ [AWS SDK for Ruby V2](https://docs.aws.amazon.com/goto/SdkForRubyV2/lambda-2015-03-31/AddLayerVersionPermission)

doc_source/API_CreateFunction.md

+21-3
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ Content-type: application/json
2929
"[FunctionName](#SSS-CreateFunction-request-FunctionName)": "string",
3030
"[Handler](#SSS-CreateFunction-request-Handler)": "string",
3131
"[KMSKeyArn](#SSS-CreateFunction-request-KMSKeyArn)": "string",
32+
"[Layers](#SSS-CreateFunction-request-Layers)": [ "string" ],
3233
"[MemorySize](#SSS-CreateFunction-request-MemorySize)": number,
3334
"[Publish](#SSS-CreateFunction-request-Publish)": boolean,
3435
"[Role](#SSS-CreateFunction-request-Role)": "string",
@@ -100,6 +101,13 @@ Required: Yes
100101
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\.
101102
Type: String
102103
Pattern: `(arn:(aws[a-zA-Z-]*)?:[a-z0-9-.]+:.*)|()`
104+
Required: No
105+
106+
** [Layers](#API_CreateFunction_RequestSyntax) ** <a name="SSS-CreateFunction-request-Layers"></a>
107+
A list of [function layers](https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html) to add to the function's execution environment\.
108+
Type: Array of strings
109+
Length Constraints: Minimum length of 1\. Maximum length of 140\.
110+
Pattern: `arn:[a-zA-Z0-9-]+:lambda:[a-zA-Z0-9-]+:\d{12}:layer:[a-zA-Z0-9-_]+:[0-9]+`
103111
Required: No
104112

105113
** [MemorySize](#API_CreateFunction_RequestSyntax) ** <a name="SSS-CreateFunction-request-MemorySize"></a>
@@ -122,7 +130,7 @@ Required: Yes
122130
** [Runtime](#API_CreateFunction_RequestSyntax) ** <a name="SSS-CreateFunction-request-Runtime"></a>
123131
The runtime version for the function\.
124132
Type: String
125-
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`
133+
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`
126134
Required: Yes
127135

128136
** [Tags](#API_CreateFunction_RequestSyntax) ** <a name="SSS-CreateFunction-request-Tags"></a>
@@ -173,6 +181,12 @@ Content-type: application/json
173181
"[Handler](#SSS-CreateFunction-response-Handler)": "string",
174182
"[KMSKeyArn](#SSS-CreateFunction-response-KMSKeyArn)": "string",
175183
"[LastModified](#SSS-CreateFunction-response-LastModified)": "string",
184+
"[Layers](#SSS-CreateFunction-response-Layers)": [
185+
{
186+
"[Arn](API_Layer.md#SSS-Type-Layer-Arn)": "string",
187+
"[CodeSize](API_Layer.md#SSS-Type-Layer-CodeSize)": number
188+
}
189+
],
176190
"[MasterArn](#SSS-CreateFunction-response-MasterArn)": "string",
177191
"[MemorySize](#SSS-CreateFunction-response-MemorySize)": number,
178192
"[RevisionId](#SSS-CreateFunction-response-RevisionId)": "string",
@@ -241,9 +255,13 @@ Type: String
241255
Pattern: `(arn:(aws[a-zA-Z-]*)?:[a-z0-9-.]+:.*)|()`
242256

243257
** [LastModified](#API_CreateFunction_ResponseSyntax) ** <a name="SSS-CreateFunction-response-LastModified"></a>
244-
The date and time that the function was last updated, in [ISO\-8601 format](https://www.w3.org/TR/NOTE-datetime) \(YYYY\-MM\-DDThh:mm:ssTZD\)\.
258+
The date and time that the function was last updated, in [ISO\-8601 format](https://www.w3.org/TR/NOTE-datetime) \(YYYY\-MM\-DDThh:mm:ss\.sTZD\)\.
245259
Type: String
246260

261+
** [Layers](#API_CreateFunction_ResponseSyntax) ** <a name="SSS-CreateFunction-response-Layers"></a>
262+
A list of [function layers](https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html)\.
263+
Type: Array of [Layer](API_Layer.md) objects
264+
247265
** [MasterArn](#API_CreateFunction_ResponseSyntax) ** <a name="SSS-CreateFunction-response-MasterArn"></a>
248266
The ARN of the master function\.
249267
Type: String
@@ -266,7 +284,7 @@ Pattern: `arn:(aws[a-zA-Z-]*)?:iam::\d{12}:role/?[a-zA-Z_0-9+=,.@\-_/]+`
266284
** [Runtime](#API_CreateFunction_ResponseSyntax) ** <a name="SSS-CreateFunction-response-Runtime"></a>
267285
The runtime environment for the Lambda function\.
268286
Type: String
269-
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`
287+
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`
270288

271289
** [Timeout](#API_CreateFunction_ResponseSyntax) ** <a name="SSS-CreateFunction-response-Timeout"></a>
272290
The amount of time that Lambda allows a function to run before terminating it\.

doc_source/API_DeleteLayerVersion.md

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
# DeleteLayerVersion<a name="API_DeleteLayerVersion"></a>
2+
3+
Deletes a version of a function layer\.
4+
5+
## Request Syntax<a name="API_DeleteLayerVersion_RequestSyntax"></a>
6+
7+
```
8+
DELETE /2018-10-31/layers/LayerName/versions/VersionNumber HTTP/1.1
9+
```
10+
11+
## URI Request Parameters<a name="API_DeleteLayerVersion_RequestParameters"></a>
12+
13+
The request requires the following URI parameters\.
14+
15+
** [LayerName](#API_DeleteLayerVersion_RequestSyntax) ** <a name="SSS-DeleteLayerVersion-request-LayerName"></a>
16+
The name of the layer\.
17+
Length Constraints: Minimum length of 1\. Maximum length of 140\.
18+
Pattern: `(arn:[a-zA-Z0-9-]+:lambda:[a-zA-Z0-9-]+:\d{12}:layer:[a-zA-Z0-9-_]+)|[a-zA-Z0-9-_]+`
19+
20+
** [VersionNumber](#API_DeleteLayerVersion_RequestSyntax) ** <a name="SSS-DeleteLayerVersion-request-VersionNumber"></a>
21+
The version number\.
22+
23+
## Request Body<a name="API_DeleteLayerVersion_RequestBody"></a>
24+
25+
The request does not have a request body\.
26+
27+
## Response Syntax<a name="API_DeleteLayerVersion_ResponseSyntax"></a>
28+
29+
```
30+
HTTP/1.1 204
31+
```
32+
33+
## Response Elements<a name="API_DeleteLayerVersion_ResponseElements"></a>
34+
35+
If the action is successful, the service sends back an HTTP 204 response with an empty HTTP body\.
36+
37+
## Errors<a name="API_DeleteLayerVersion_Errors"></a>
38+
39+
**ServiceException**
40+
The AWS Lambda service encountered an internal error\.
41+
HTTP Status Code: 500
42+
43+
**TooManyRequestsException**
44+
Request throughput limit exceeded
45+
HTTP Status Code: 429
46+
47+
## See Also<a name="API_DeleteLayerVersion_SeeAlso"></a>
48+
49+
For more information about using this API in one of the language\-specific AWS SDKs, see the following:
50+
+ [AWS Command Line Interface](https://docs.aws.amazon.com/goto/aws-cli/lambda-2015-03-31/DeleteLayerVersion)
51+
+ [AWS SDK for \.NET](https://docs.aws.amazon.com/goto/DotNetSDKV3/lambda-2015-03-31/DeleteLayerVersion)
52+
+ [AWS SDK for C\+\+](https://docs.aws.amazon.com/goto/SdkForCpp/lambda-2015-03-31/DeleteLayerVersion)
53+
+ [AWS SDK for Go](https://docs.aws.amazon.com/goto/SdkForGoV1/lambda-2015-03-31/DeleteLayerVersion)
54+
+ [AWS SDK for Java](https://docs.aws.amazon.com/goto/SdkForJava/lambda-2015-03-31/DeleteLayerVersion)
55+
+ [AWS SDK for JavaScript](https://docs.aws.amazon.com/goto/AWSJavaScriptSDK/lambda-2015-03-31/DeleteLayerVersion)
56+
+ [AWS SDK for PHP V3](https://docs.aws.amazon.com/goto/SdkForPHPV3/lambda-2015-03-31/DeleteLayerVersion)
57+
+ [AWS SDK for Python](https://docs.aws.amazon.com/goto/boto3/lambda-2015-03-31/DeleteLayerVersion)
58+
+ [AWS SDK for Ruby V2](https://docs.aws.amazon.com/goto/SdkForRubyV2/lambda-2015-03-31/DeleteLayerVersion)

doc_source/API_FunctionConfiguration.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,13 @@ Pattern: `(arn:(aws[a-zA-Z-]*)?:[a-z0-9-.]+:.*)|()`
5757
Required: No
5858

5959
**LastModified** <a name="SSS-Type-FunctionConfiguration-LastModified"></a>
60-
The date and time that the function was last updated, in [ISO\-8601 format](https://www.w3.org/TR/NOTE-datetime) \(YYYY\-MM\-DDThh:mm:ssTZD\)\.
60+
The date and time that the function was last updated, in [ISO\-8601 format](https://www.w3.org/TR/NOTE-datetime) \(YYYY\-MM\-DDThh:mm:ss\.sTZD\)\.
6161
Type: String
62+
Required: No
63+
64+
**Layers** <a name="SSS-Type-FunctionConfiguration-Layers"></a>
65+
A list of [function layers](https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html)\.
66+
Type: Array of [Layer](API_Layer.md) objects
6267
Required: No
6368

6469
**MasterArn** <a name="SSS-Type-FunctionConfiguration-MasterArn"></a>
@@ -87,7 +92,7 @@ Required: No
8792
**Runtime** <a name="SSS-Type-FunctionConfiguration-Runtime"></a>
8893
The runtime environment for the Lambda function\.
8994
Type: String
90-
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`
95+
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`
9196
Required: No
9297

9398
**Timeout** <a name="SSS-Type-FunctionConfiguration-Timeout"></a>

doc_source/API_GetFunction.md

+6
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,12 @@ Content-type: application/json
7171
"[Handler](API_FunctionConfiguration.md#SSS-Type-FunctionConfiguration-Handler)": "string",
7272
"[KMSKeyArn](API_FunctionConfiguration.md#SSS-Type-FunctionConfiguration-KMSKeyArn)": "string",
7373
"[LastModified](API_FunctionConfiguration.md#SSS-Type-FunctionConfiguration-LastModified)": "string",
74+
"[Layers](API_FunctionConfiguration.md#SSS-Type-FunctionConfiguration-Layers)": [
75+
{
76+
"[Arn](API_Layer.md#SSS-Type-Layer-Arn)": "string",
77+
"[CodeSize](API_Layer.md#SSS-Type-Layer-CodeSize)": number
78+
}
79+
],
7480
"[MasterArn](API_FunctionConfiguration.md#SSS-Type-FunctionConfiguration-MasterArn)": "string",
7581
"[MemorySize](API_FunctionConfiguration.md#SSS-Type-FunctionConfiguration-MemorySize)": number,
7682
"[RevisionId](API_FunctionConfiguration.md#SSS-Type-FunctionConfiguration-RevisionId)": "string",

doc_source/API_GetFunctionConfiguration.md

+12-2
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,12 @@ Content-type: application/json
6363
"[Handler](#SSS-GetFunctionConfiguration-response-Handler)": "string",
6464
"[KMSKeyArn](#SSS-GetFunctionConfiguration-response-KMSKeyArn)": "string",
6565
"[LastModified](#SSS-GetFunctionConfiguration-response-LastModified)": "string",
66+
"[Layers](#SSS-GetFunctionConfiguration-response-Layers)": [
67+
{
68+
"[Arn](API_Layer.md#SSS-Type-Layer-Arn)": "string",
69+
"[CodeSize](API_Layer.md#SSS-Type-Layer-CodeSize)": number
70+
}
71+
],
6672
"[MasterArn](#SSS-GetFunctionConfiguration-response-MasterArn)": "string",
6773
"[MemorySize](#SSS-GetFunctionConfiguration-response-MemorySize)": number,
6874
"[RevisionId](#SSS-GetFunctionConfiguration-response-RevisionId)": "string",
@@ -131,9 +137,13 @@ Type: String
131137
Pattern: `(arn:(aws[a-zA-Z-]*)?:[a-z0-9-.]+:.*)|()`
132138

133139
** [LastModified](#API_GetFunctionConfiguration_ResponseSyntax) ** <a name="SSS-GetFunctionConfiguration-response-LastModified"></a>
134-
The date and time that the function was last updated, in [ISO\-8601 format](https://www.w3.org/TR/NOTE-datetime) \(YYYY\-MM\-DDThh:mm:ssTZD\)\.
140+
The date and time that the function was last updated, in [ISO\-8601 format](https://www.w3.org/TR/NOTE-datetime) \(YYYY\-MM\-DDThh:mm:ss\.sTZD\)\.
135141
Type: String
136142

143+
** [Layers](#API_GetFunctionConfiguration_ResponseSyntax) ** <a name="SSS-GetFunctionConfiguration-response-Layers"></a>
144+
A list of [function layers](https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html)\.
145+
Type: Array of [Layer](API_Layer.md) objects
146+
137147
** [MasterArn](#API_GetFunctionConfiguration_ResponseSyntax) ** <a name="SSS-GetFunctionConfiguration-response-MasterArn"></a>
138148
The ARN of the master function\.
139149
Type: String
@@ -156,7 +166,7 @@ Pattern: `arn:(aws[a-zA-Z-]*)?:iam::\d{12}:role/?[a-zA-Z_0-9+=,.@\-_/]+`
156166
** [Runtime](#API_GetFunctionConfiguration_ResponseSyntax) ** <a name="SSS-GetFunctionConfiguration-response-Runtime"></a>
157167
The runtime environment for the Lambda function\.
158168
Type: String
159-
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`
169+
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`
160170

161171
** [Timeout](#API_GetFunctionConfiguration_ResponseSyntax) ** <a name="SSS-GetFunctionConfiguration-response-Timeout"></a>
162172
The amount of time that Lambda allows a function to run before terminating it\.

0 commit comments

Comments
 (0)