Skip to content

Commit 8f844c8

Browse files
committed
applications mgnt in console, max timeout increase, API descriptions, SQS
1 parent bca25b6 commit 8f844c8

File tree

128 files changed

+990
-784
lines changed

Some content is hidden

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

128 files changed

+990
-784
lines changed

doc_source/API_AccountLimit.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# AccountLimit<a name="API_AccountLimit"></a>
22

3-
Provides limits of code size and concurrency associated with the current account and region\.
3+
Provides limits of code size and concurrency associated with the current account and region\. For more information or to request a limit increase for concurrent executions, see [Lambda Limits](https://docs.aws.amazon.com/lambda/latest/dg/limits.html)\.
44

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

@@ -15,7 +15,7 @@ Type: Long
1515
Required: No
1616

1717
**ConcurrentExecutions** <a name="SSS-Type-AccountLimit-ConcurrentExecutions"></a>
18-
Number of simultaneous executions of your function per region\. For more information or to request a limit increase for concurrent executions, see [Lambda Function Concurrent Executions](https://docs.aws.amazon.com/lambda/latest/dg/concurrent-executions.html)\. The default limit is 1000\.
18+
Number of simultaneous executions of your function per region\. The default limit is 1000\.
1919
Type: Integer
2020
Required: No
2121

@@ -25,7 +25,7 @@ Type: Long
2525
Required: No
2626

2727
**UnreservedConcurrentExecutions** <a name="SSS-Type-AccountLimit-UnreservedConcurrentExecutions"></a>
28-
The number of concurrent executions available to functions that do not have concurrency limits set\. For more information, see [Managing Concurrency](concurrent-executions.md)\.
28+
The number of concurrent executions available to functions that do not have concurrency limits set\. For more information, see [Managing Concurrency](https://docs.aws.amazon.com/lambda/latest/dg/concurrent-executions.html)\.
2929
Type: Integer
3030
Valid Range: Minimum value of 0\.
3131
Required: No

doc_source/API_AddPermission.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,13 @@ Content-type: application/json
2828
The request requires the following URI parameters\.
2929

3030
** [FunctionName](#API_AddPermission_RequestSyntax) ** <a name="SSS-AddPermission-request-FunctionName"></a>
31-
Name of the Lambda function whose resource policy you are updating by adding a new permission\.
32-
You can specify a function name \(for example, `Thumbnail`\) or you can specify Amazon Resource Name \(ARN\) of the function \(for example, `arn:aws:lambda:us-west-2:account-id:function:ThumbNail`\)\. AWS Lambda also allows you to specify partial ARN \(for example, `account-id:Thumbnail`\)\. Note that the length constraint applies only to the ARN\. If you specify only the function name, it is limited to 64 characters in length\.
31+
The name of the lambda function\.
32+
33+
**Name formats**
34+
+ **Function name** \- `MyFunction`\.
35+
+ **Function ARN** \- `arn:aws:lambda:us-west-2:123456789012:function:MyFunction`\.
36+
+ **Partial ARN** \- `123456789012:function:MyFunction`\.
37+
The length constraint applies only to the full ARN\. If you specify only the function name, it is limited to 64 characters in length\.
3338
Length Constraints: Minimum length of 1\. Maximum length of 140\.
3439
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-_]+))?`
3540

@@ -67,7 +72,7 @@ Pattern: `.*`
6772
Required: Yes
6873

6974
** [RevisionId](#API_AddPermission_RequestSyntax) ** <a name="SSS-AddPermission-request-RevisionId"></a>
70-
An optional value you can use to ensure you are updating the latest update of the function version or alias\. If the `RevisionID` you pass doesn't match the latest `RevisionId` of the function or alias, it will fail with an error message, advising you to retrieve the latest function version or alias `RevisionID` using either [GetFunction](https://docs.aws.amazon.com/lambda/latest/dg/API_GetFunction.html) or [GetAlias](https://docs.aws.amazon.com/lambda/latest/dg/API_GetAlias.html) operations\.
75+
An optional value you can use to ensure you are updating the latest update of the function version or alias\. If the `RevisionID` you pass doesn't match the latest `RevisionId` of the function or alias, it will fail with an error message, advising you to retrieve the latest function version or alias `RevisionID` using either [GetFunction](API_GetFunction.md) or [GetAlias](API_GetAlias.md)
7176
Type: String
7277
Required: No
7378

doc_source/API_AliasConfiguration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Type: String
3636
Required: No
3737

3838
**RoutingConfig** <a name="SSS-Type-AliasConfiguration-RoutingConfig"></a>
39-
Specifies an additional function versions the alias points to, allowing you to dictate what percentage of traffic will invoke each version\. For more information, see [Traffic Shifting Using Aliases](lambda-traffic-shifting-using-aliases.md)\.
39+
Specifies an additional function versions the alias points to, allowing you to dictate what percentage of traffic will invoke each version\.
4040
Type: [AliasRoutingConfiguration](API_AliasRoutingConfiguration.md) object
4141
Required: No
4242

doc_source/API_AliasRoutingConfiguration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
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)\. The maximum number of stream records that can be sent to your Lambda function for a single invocation\.
3+
The alias's [traffic shifting](https://docs.aws.amazon.com/lambda/latest/dg/lambda-traffic-shifting-using-aliases.html) configuration\.
44

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

77
**AdditionalVersionWeights** <a name="SSS-Type-AliasRoutingConfiguration-AdditionalVersionWeights"></a>
8-
Set this value to dictate what percentage of traffic will invoke the updated function version\. If set to an empty string, 100 percent of traffic will invoke `function-version`\. For more information, see [Traffic Shifting Using Aliases](lambda-traffic-shifting-using-aliases.md)\.
8+
The name of the second alias, and the percentage of traffic that is routed to it\.
99
Type: String to double map
1010
Key Length Constraints: Minimum length of 1\. Maximum length of 1024\.
1111
Key Pattern: `[0-9]+`

doc_source/API_Concurrency.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Contents<a name="API_Concurrency_Contents"></a>
44

55
**ReservedConcurrentExecutions** <a name="SSS-Type-Concurrency-ReservedConcurrentExecutions"></a>
6-
The number of concurrent executions reserved for this function\. For more information, see [Managing Concurrency](concurrent-executions.md)\.
6+
The number of concurrent executions reserved for this function\. For more information, see [Managing Concurrency](https://docs.aws.amazon.com/lambda/latest/dg/concurrent-executions.html)\.
77
Type: Integer
88
Valid Range: Minimum value of 0\.
99
Required: No

doc_source/API_CreateAlias.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,13 @@ Content-type: application/json
2727
The request requires the following URI parameters\.
2828

2929
** [FunctionName](#API_CreateAlias_RequestSyntax) ** <a name="SSS-CreateAlias-request-FunctionName"></a>
30-
Name of the Lambda function for which you want to create an alias\. Note that the length constraint applies only to the ARN\. If you specify only the function name, it is limited to 64 characters in length\.
30+
The name of the lambda function\.
31+
32+
**Name formats**
33+
+ **Function name** \- `MyFunction`\.
34+
+ **Function ARN** \- `arn:aws:lambda:us-west-2:123456789012:function:MyFunction`\.
35+
+ **Partial ARN** \- `123456789012:function:MyFunction`\.
36+
The length constraint applies only to the full ARN\. If you specify only the function name, it is limited to 64 characters in length\.
3137
Length Constraints: Minimum length of 1\. Maximum length of 140\.
3238
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-_]+))?`
3339

@@ -56,7 +62,7 @@ Pattern: `(?!^[0-9]+$)([a-zA-Z0-9-_]+)`
5662
Required: Yes
5763

5864
** [RoutingConfig](#API_CreateAlias_RequestSyntax) ** <a name="SSS-CreateAlias-request-RoutingConfig"></a>
59-
Specifies an additional version your alias can point to, allowing you to dictate what percentage of traffic will invoke each version\. For more information, see [Traffic Shifting Using Aliases](lambda-traffic-shifting-using-aliases.md)\.
65+
Specifies an additional version your alias can point to, allowing you to dictate what percentage of traffic will invoke each version\. For more information, see [Traffic Shifting Using Aliases](https://docs.aws.amazon.com/lambda/latest/dg/lambda-traffic-shifting-using-aliases.html)\.
6066
Type: [AliasRoutingConfiguration](API_AliasRoutingConfiguration.md) object
6167
Required: No
6268

@@ -113,7 +119,7 @@ Represents the latest updated revision of the function or alias\.
113119
Type: String
114120

115121
** [RoutingConfig](#API_CreateAlias_ResponseSyntax) ** <a name="SSS-CreateAlias-response-RoutingConfig"></a>
116-
Specifies an additional function versions the alias points to, allowing you to dictate what percentage of traffic will invoke each version\. For more information, see [Traffic Shifting Using Aliases](lambda-traffic-shifting-using-aliases.md)\.
122+
Specifies an additional function versions the alias points to, allowing you to dictate what percentage of traffic will invoke each version\.
117123
Type: [AliasRoutingConfiguration](API_AliasRoutingConfiguration.md) object
118124

119125
## Errors<a name="API_CreateAlias_Errors"></a>

doc_source/API_CreateEventSourceMapping.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -45,22 +45,25 @@ Valid Range: Minimum value of 1\. Maximum value of 10000\.
4545
Required: No
4646

4747
** [Enabled](#API_CreateEventSourceMapping_RequestSyntax) ** <a name="SSS-CreateEventSourceMapping-request-Enabled"></a>
48-
Indicates whether AWS Lambda should begin polling the event source\. By default, `Enabled` is true\.
48+
Set to false to disable the event source upon creation\.
4949
Type: Boolean
5050
Required: No
5151

5252
** [EventSourceArn](#API_CreateEventSourceMapping_RequestSyntax) ** <a name="SSS-CreateEventSourceMapping-request-EventSourceArn"></a>
53-
The Amazon Resource Name \(ARN\) of the event source\. Any record added to this source could cause AWS Lambda to invoke your Lambda function, it depends on the `BatchSize`\. AWS Lambda POSTs the event's records to your Lambda function as JSON\.
53+
The Amazon Resource Name \(ARN\) of the event source\.
5454
Type: String
5555
Pattern: `arn:(aws[a-zA-Z0-9-]*):([a-zA-Z0-9\-])+:([a-z]{2}(-gov)?-[a-z]+-\d{1})?:(\d{12})?:(.*)`
5656
Required: Yes
5757

5858
** [FunctionName](#API_CreateEventSourceMapping_RequestSyntax) ** <a name="SSS-CreateEventSourceMapping-request-FunctionName"></a>
59-
The Lambda function to invoke when AWS Lambda detects an event on the stream\.
60-
You can specify the function name \(for example, `Thumbnail`\) or you can specify Amazon Resource Name \(ARN\) of the function \(for example, `arn:aws:lambda:us-west-2:account-id:function:ThumbNail`\)\.
61-
If you are using versioning, you can also provide a qualified function ARN \(ARN that is qualified with function version or alias name as suffix\)\. For more information about versioning, see [AWS Lambda Function Versioning and Aliases](https://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html)
62-
AWS Lambda also allows you to specify only the function name with the account ID qualifier \(for example, `account-id:Thumbnail`\)\.
63-
Note that the length constraint applies only to the ARN\. If you specify only the function name, it is limited to 64 characters in length\.
59+
The name of the lambda function\.
60+
61+
**Name formats**
62+
+ **Function name** \- `MyFunction`\.
63+
+ **Function ARN** \- `arn:aws:lambda:us-west-2:123456789012:function:MyFunction`\.
64+
+ **Version or Alias ARN** \- `arn:aws:lambda:us-west-2:123456789012:function:MyFunction:PROD`\.
65+
+ **Partial ARN** \- `123456789012:function:MyFunction`\.
66+
The length constraint applies only to the full ARN\. If you specify only the function name, it is limited to 64 characters in length\.
6467
Type: String
6568
Length Constraints: Minimum length of 1\. Maximum length of 140\.
6669
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-_]+))?`

0 commit comments

Comments
 (0)