Skip to content

Commit d1136cf

Browse files
committed
enable rss feeds for document history page, plus some minor doc updates
1 parent 14cdefd commit d1136cf

18 files changed

+42
-33
lines changed

doc_source/API_AliasRoutingConfiguration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# AliasRoutingConfiguration<a name="API_AliasRoutingConfiguration"></a>
22

3-
The parent object that implements what percentage of traffic will invoke each function version\. For more information, see [Traffic Shifting Using Aliases](lambda-traffic-shifting-using-aliases.md)\.
3+
The parent object that implements what percentage of traffic will invoke each function version\. For more information, see [Traffic Shifting Using Aliases](lambda-traffic-shifting-using-aliases.md)\. The maximum number of stream records that can be sent to your Lambda function for a single invocation\. ng\-using\-aliases"/>\.
44

55
## Contents<a name="API_AliasRoutingConfiguration_Contents"></a>
66

doc_source/API_CreateFunction.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ The runtime environment for the Lambda function you are uploading\.
120120
To use the Python runtime v3\.6, set the value to "python3\.6"\. To use the Python runtime v2\.7, set the value to "python2\.7"\. To use the Node\.js runtime v8\.10, set the value to "nodejs8\.10"\. To use Node\.js runtime version v6\.10, set the value to "nodejs6\.10"\. To use the \.NET Core runtime v1\.0, set the value to "dotnetcore1\.0"\. To use the \.NET Core runtime v2\.0, set the value to "dotnetcore2\.0"\.
121121
Node v0\.10\.42 and node v4\.3 are currently marked as deprecated\. You must migrate existing functions to the newer Node\.js runtime versions available on AWS Lambda \(nodejs8\.10, nodejs6\.10\) as soon as possible\. Failure to do so will result in an invalid parameter error being returned\. Note that you will have to follow this procedure for each region that contains functions written in the Node v0\.10\.42 runtime\.
122122
Type: String
123-
Valid Values:` nodejs | nodejs4.3 | nodejs6.10 | java8 | python2.7 | python3.6 | dotnetcore1.0 | dotnetcore2.0 | nodejs4.3-edge | go1.x`
123+
Valid Values:` nodejs | nodejs4.3 | nodejs6.10 | nodejs8.10 | java8 | python2.7 | python3.6 | dotnetcore1.0 | dotnetcore2.0 | nodejs4.3-edge | go1.x`
124124
Required: Yes
125125

126126
** [Tags](#API_CreateFunction_RequestSyntax) ** <a name="SSS-CreateFunction-request-Tags"></a>
@@ -264,7 +264,7 @@ Pattern: `arn:aws:iam::\d{12}:role/?[a-zA-Z_0-9+=,.@\-_/]+`
264264
** [Runtime](#API_CreateFunction_ResponseSyntax) ** <a name="SSS-CreateFunction-response-Runtime"></a>
265265
The runtime environment for the Lambda function\.
266266
Type: String
267-
Valid Values:` nodejs | nodejs4.3 | nodejs6.10 | java8 | python2.7 | python3.6 | dotnetcore1.0 | dotnetcore2.0 | nodejs4.3-edge | go1.x`
267+
Valid Values:` nodejs | nodejs4.3 | nodejs6.10 | nodejs8.10 | java8 | python2.7 | python3.6 | dotnetcore1.0 | dotnetcore2.0 | nodejs4.3-edge | go1.x`
268268

269269
** [Timeout](#API_CreateFunction_ResponseSyntax) ** <a name="SSS-CreateFunction-response-Timeout"></a>
270270
The function execution time at which Lambda should terminate the function\. Because the execution time has cost implications, we recommend you set this value based on your expected execution time\. The default is 3 seconds\.

doc_source/API_FunctionConfiguration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ Required: No
8787
**Runtime** <a name="SSS-Type-FunctionConfiguration-Runtime"></a>
8888
The runtime environment for the Lambda function\.
8989
Type: String
90-
Valid Values:` nodejs | nodejs4.3 | nodejs6.10 | java8 | python2.7 | python3.6 | dotnetcore1.0 | dotnetcore2.0 | nodejs4.3-edge | go1.x`
90+
Valid Values:` nodejs | nodejs4.3 | nodejs6.10 | nodejs8.10 | java8 | python2.7 | python3.6 | dotnetcore1.0 | dotnetcore2.0 | nodejs4.3-edge | go1.x`
9191
Required: No
9292

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

doc_source/API_GetFunctionConfiguration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ Pattern: `arn:aws:iam::\d{12}:role/?[a-zA-Z_0-9+=,.@\-_/]+`
152152
** [Runtime](#API_GetFunctionConfiguration_ResponseSyntax) ** <a name="SSS-GetFunctionConfiguration-response-Runtime"></a>
153153
The runtime environment for the Lambda function\.
154154
Type: String
155-
Valid Values:` nodejs | nodejs4.3 | nodejs6.10 | java8 | python2.7 | python3.6 | dotnetcore1.0 | dotnetcore2.0 | nodejs4.3-edge | go1.x`
155+
Valid Values:` nodejs | nodejs4.3 | nodejs6.10 | nodejs8.10 | java8 | python2.7 | python3.6 | dotnetcore1.0 | dotnetcore2.0 | nodejs4.3-edge | go1.x`
156156

157157
** [Timeout](#API_GetFunctionConfiguration_ResponseSyntax) ** <a name="SSS-GetFunctionConfiguration-response-Timeout"></a>
158158
The function execution time at which Lambda should terminate the function\. Because the execution time has cost implications, we recommend you set this value based on your expected execution time\. The default is 3 seconds\.

doc_source/API_Invoke.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22

33
Invokes a specific Lambda function\. For an example, see [Create the Lambda Function and Test It Manually](https://docs.aws.amazon.com/lambda/latest/dg/with-dynamodb-create-function.html#with-dbb-invoke-manually)\.
44

5-
If you are using the versioning feature, you can invoke the specific function version by providing function version or alias name that is pointing to the function version using the `Qualifier` parameter in the request\. If you don't provide the `Qualifier` parameter, the `$LATEST` version of the Lambda function is invoked\. Invocations occur at least once in response to an event and functions must be idempotent to handle this\. For information about the versioning feature, see [AWS Lambda Function Versioning and Aliases](https://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html)\.
5+
If you are using the versioning feature, you can invoke the specific function version by providing function version or alias name that is pointing to the function version using the `Qualifier` parameter in the request\. If you don't provide the `Qualifier` parameter, the `$LATEST` version of the Lambda function is invoked\.
6+
7+
If you use the `RequestResponse` \(synchronous\) invocation option, the function will be invoked only once\. If you use the `Event` \(asynchronous\) invocation option, the function will be invoked at least once in response to an event and the function must be idempotent to handle this\.
8+
9+
For information about the versioning feature, see [AWS Lambda Function Versioning and Aliases](https://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html)\.
610

711
This operation requires permission for the `lambda:InvokeFunction` action\.
812

doc_source/API_PublishVersion.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ Pattern: `arn:aws:iam::\d{12}:role/?[a-zA-Z_0-9+=,.@\-_/]+`
164164
** [Runtime](#API_PublishVersion_ResponseSyntax) ** <a name="SSS-PublishVersion-response-Runtime"></a>
165165
The runtime environment for the Lambda function\.
166166
Type: String
167-
Valid Values:` nodejs | nodejs4.3 | nodejs6.10 | java8 | python2.7 | python3.6 | dotnetcore1.0 | dotnetcore2.0 | nodejs4.3-edge | go1.x`
167+
Valid Values:` nodejs | nodejs4.3 | nodejs6.10 | nodejs8.10 | java8 | python2.7 | python3.6 | dotnetcore1.0 | dotnetcore2.0 | nodejs4.3-edge | go1.x`
168168

169169
** [Timeout](#API_PublishVersion_ResponseSyntax) ** <a name="SSS-PublishVersion-response-Timeout"></a>
170170
The function execution time at which Lambda should terminate the function\. Because the execution time has cost implications, we recommend you set this value based on your expected execution time\. The default is 3 seconds\.

doc_source/API_UpdateEventSourceMapping.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ The event source mapping identifier\.
3333
The request accepts the following data in JSON format\.
3434

3535
** [BatchSize](#API_UpdateEventSourceMapping_RequestSyntax) ** <a name="SSS-UpdateEventSourceMapping-request-BatchSize"></a>
36-
The maximum number of stream records that can be sent to your Lambda function for a single invocation\.
36+
The maximum number of stream records that can be sent to your Lambda function for a single invocation\. If you are using an SQS queue as an event source, the maximum value is 10\.
3737
Type: Integer
3838
Valid Range: Minimum value of 1\. Maximum value of 10000\.
3939
Required: No

doc_source/API_UpdateFunctionCode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ Pattern: `arn:aws:iam::\d{12}:role/?[a-zA-Z_0-9+=,.@\-_/]+`
196196
** [Runtime](#API_UpdateFunctionCode_ResponseSyntax) ** <a name="SSS-UpdateFunctionCode-response-Runtime"></a>
197197
The runtime environment for the Lambda function\.
198198
Type: String
199-
Valid Values:` nodejs | nodejs4.3 | nodejs6.10 | java8 | python2.7 | python3.6 | dotnetcore1.0 | dotnetcore2.0 | nodejs4.3-edge | go1.x`
199+
Valid Values:` nodejs | nodejs4.3 | nodejs6.10 | nodejs8.10 | java8 | python2.7 | python3.6 | dotnetcore1.0 | dotnetcore2.0 | nodejs4.3-edge | go1.x`
200200

201201
** [Timeout](#API_UpdateFunctionCode_ResponseSyntax) ** <a name="SSS-UpdateFunctionCode-response-Timeout"></a>
202202
The function execution time at which Lambda should terminate the function\. Because the execution time has cost implications, we recommend you set this value based on your expected execution time\. The default is 3 seconds\.

doc_source/API_UpdateFunctionConfiguration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ The runtime environment for the Lambda function\.
104104
To use the Python runtime v3\.6, set the value to "python3\.6"\. To use the Python runtime v2\.7, set the value to "python2\.7"\. To use the Node\.js runtime v8\.10, set the value to "nodejs8 \.10"\. To use the Node\.js runtime v6\.10, set the value to "nodejs6\.10"\. To use the \.NET Core runtime v1\.0, set the value to "dotnetcore1\.0"\. To use the \.NET Core runtime v2\.0, set the value to "dotnetcore2\.0"\.
105105
Node v0\.10\.42 and node v4\.3 are currently marked as deprecated\. You must migrate existing functions to the newer Node\.js runtime versions available on AWS Lambda \(nodejs6\.10 or nodejs8\.10\) as soon as possible\. Failure to do so will result in an invalid parameter error being returned\. Note that you will have to follow this procedure for each region that contains functions written in the Node v0\.10\.42 runtime\.
106106
Type: String
107-
Valid Values:` nodejs | nodejs4.3 | nodejs6.10 | java8 | python2.7 | python3.6 | dotnetcore1.0 | dotnetcore2.0 | nodejs4.3-edge | go1.x`
107+
Valid Values:` nodejs | nodejs4.3 | nodejs6.10 | nodejs8.10 | java8 | python2.7 | python3.6 | dotnetcore1.0 | dotnetcore2.0 | nodejs4.3-edge | go1.x`
108108
Required: No
109109

110110
** [Timeout](#API_UpdateFunctionConfiguration_RequestSyntax) ** <a name="SSS-UpdateFunctionConfiguration-request-Timeout"></a>
@@ -243,7 +243,7 @@ Pattern: `arn:aws:iam::\d{12}:role/?[a-zA-Z_0-9+=,.@\-_/]+`
243243
** [Runtime](#API_UpdateFunctionConfiguration_ResponseSyntax) ** <a name="SSS-UpdateFunctionConfiguration-response-Runtime"></a>
244244
The runtime environment for the Lambda function\.
245245
Type: String
246-
Valid Values:` nodejs | nodejs4.3 | nodejs6.10 | java8 | python2.7 | python3.6 | dotnetcore1.0 | dotnetcore2.0 | nodejs4.3-edge | go1.x`
246+
Valid Values:` nodejs | nodejs4.3 | nodejs6.10 | nodejs8.10 | java8 | python2.7 | python3.6 | dotnetcore1.0 | dotnetcore2.0 | nodejs4.3-edge | go1.x`
247247

248248
** [Timeout](#API_UpdateFunctionConfiguration_ResponseSyntax) ** <a name="SSS-UpdateFunctionConfiguration-response-Timeout"></a>
249249
The function execution time at which Lambda should terminate the function\. Because the execution time has cost implications, we recommend you set this value based on your expected execution time\. The default is 3 seconds\.

doc_source/create-deployment-pkg-zip-java.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ task buildZip(type: Zip) {
118118
from compileJava
119119
from processResources
120120
into('lib') {
121-
from configurations.runtime
121+
from configurations.compile.Classpath
122122
}
123123
}
124124

0 commit comments

Comments
 (0)