Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit d83190b

Browse filesBrowse files
committed
updating lambda markdown files
1 parent f29214f commit d83190b
Copy full SHA for d83190b

File tree

Expand file treeCollapse file tree

67 files changed

+784
-212
lines changed
Filter options

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Dismiss banner
Expand file treeCollapse file tree

67 files changed

+784
-212
lines changed

‎doc_source/API_AddPermission.md

Copy file name to clipboardExpand all lines: doc_source/API_AddPermission.md
+2-4Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
# AddPermission<a name="API_AddPermission"></a>
22

3-
Adds a permission to the resource policy associated with the specified AWS Lambda function\. You use resource policies to grant permissions to event sources that use *push* model\. In a *push* model, event sources \(such as Amazon S3 and custom applications\) invoke your Lambda function\. Each permission you add to the resource policy allows an event source, permission to invoke the Lambda function\.
4-
5-
For information about the push model, see [Lambda Functions](https://docs.aws.amazon.com/lambda/latest/dg/lambda-introduction.html)\.
3+
Adds a permission to the resource policy associated with the specified AWS Lambda function\. You use resource policies to grant permissions to event sources that use the *push* model\. In a *push* model, event sources \(such as Amazon S3 and custom applications\) invoke your Lambda function\. Each permission you add to the resource policy allows an event source permission to invoke the Lambda function\.
64

75
If you are using versioning, the permissions you add are specific to the Lambda function version or alias you specify in the `AddPermission` request via the `Qualifier` parameter\. For more information about versioning, see [AWS Lambda Function Versioning and Aliases](https://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html)\.
86

@@ -69,7 +67,7 @@ Pattern: `.*`
6967
Required: Yes
7068

7169
** [RevisionId](#API_AddPermission_RequestSyntax) ** <a name="SSS-AddPermission-request-RevisionId"></a>
72-
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)\.
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\.
7371
Type: String
7472
Required: No
7573

‎doc_source/API_CreateEventSourceMapping.md

Copy file name to clipboardExpand all lines: doc_source/API_CreateEventSourceMapping.md
+12-10Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
# CreateEventSourceMapping<a name="API_CreateEventSourceMapping"></a>
22

3-
Identifies a stream as an event source for a Lambda function\. It can be either an Amazon Kinesis stream or an Amazon DynamoDB stream\. AWS Lambda invokes the specified function when records are posted to the stream\.
3+
Identifies a poll\-based event source for a Lambda function\. It can be either an Amazon Kinesis or DynamoDB stream\. AWS Lambda invokes the specified function when records are posted to the event source\.
44

5-
This association between a stream source and a Lambda function is called the event source mapping\.
5+
This association between a poll\-based source and a Lambda function is called the event source mapping\.
66

7-
You provide mapping information \(for example, which stream to read from and which Lambda function to invoke\) in the request body\.
7+
You provide mapping information \(for example, which stream or SQS queue to read from and which Lambda function to invoke\) in the request body\.
88

9-
Each event source, such as an Amazon Kinesis or a DynamoDB stream, can be associated with multiple AWS Lambda functions\. A given Lambda function can be associated with multiple AWS event sources\.
9+
Amazon Kinesis or DynamoDB stream event sources can be associated with multiple AWS Lambda functions and a given Lambda function can be associated with multiple AWS event sources\. For Amazon SQS, you can configure multiple queues as event sources for a single Lambda function, but an SQS queue can be mapped only to a single Lambda function\.
10+
11+
You can configure an SQS queue in an account separate from your Lambda function's account\. Also the queue needs to reside in the same AWS region as your function\.
1012

1113
If you are using versioning, you can specify a specific function version or an alias via the function name parameter\. For more information about versioning, see [AWS Lambda Function Versioning and Aliases](https://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html)\.
1214

@@ -37,7 +39,7 @@ The request does not use any URI parameters\.
3739
The request accepts the following data in JSON format\.
3840

3941
** [BatchSize](#API_CreateEventSourceMapping_RequestSyntax) ** <a name="SSS-CreateEventSourceMapping-request-BatchSize"></a>
40-
The largest number of records that AWS Lambda will retrieve from your event source at the time of invoking your function\. Your function receives an event with all the retrieved records\. The default is 100 records\.
42+
The largest number of records that AWS Lambda will retrieve from your event source at the time of invoking your function\. Your function receives an event with all the retrieved records\. The default for Amazon Kinesis and Amazon DynamoDB is 100 records\.
4143
Type: Integer
4244
Valid Range: Minimum value of 1\. Maximum value of 10000\.
4345
Required: No
@@ -48,7 +50,7 @@ Type: Boolean
4850
Required: No
4951

5052
** [EventSourceArn](#API_CreateEventSourceMapping_RequestSyntax) ** <a name="SSS-CreateEventSourceMapping-request-EventSourceArn"></a>
51-
The Amazon Resource Name \(ARN\) of the Amazon Kinesis or the Amazon DynamoDB stream that is the event source\. Any record added to this stream could cause AWS Lambda to invoke your Lambda function, it depends on the `BatchSize`\. AWS Lambda POSTs the Amazon Kinesis event, containing records, to your Lambda function as JSON\.
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\.
5254
Type: String
5355
Pattern: `arn:aws:([a-zA-Z0-9\-])+:([a-z]{2}-[a-z]+-\d{1})?:(\d{12})?:(.*)`
5456
Required: Yes
@@ -68,7 +70,7 @@ Required: Yes
6870
The position in the DynamoDB or Kinesis stream where AWS Lambda should start reading\. For more information, see [GetShardIterator](https://docs.aws.amazon.com/kinesis/latest/APIReference/API_GetShardIterator.html#Kinesis-GetShardIterator-request-ShardIteratorType) in the *Amazon Kinesis API Reference Guide* or [GetShardIterator](https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_streams_GetShardIterator.html) in the *Amazon DynamoDB API Reference Guide*\. The `AT_TIMESTAMP` value is supported only for [Kinesis streams](https://docs.aws.amazon.com/streams/latest/dev/amazon-kinesis-streams.html)\.
6971
Type: String
7072
Valid Values:` TRIM_HORIZON | LATEST | AT_TIMESTAMP`
71-
Required: Yes
73+
Required: No
7274

7375
** [StartingPositionTimestamp](#API_CreateEventSourceMapping_RequestSyntax) ** <a name="SSS-CreateEventSourceMapping-request-StartingPositionTimestamp"></a>
7476
The timestamp of the data record from which to start reading\. Used with [shard iterator type](https://docs.aws.amazon.com/kinesis/latest/APIReference/API_GetShardIterator.html#Kinesis-GetShardIterator-request-ShardIteratorType) AT\_TIMESTAMP\. If a record with this exact timestamp does not exist, the iterator returned is for the next \(later\) record\. If the timestamp is older than the current trim horizon, the iterator returned is for the oldest untrimmed data record \(TRIM\_HORIZON\)\. Valid only for [Kinesis streams](https://docs.aws.amazon.com/streams/latest/dev/amazon-kinesis-streams.html)\.
@@ -105,12 +107,12 @@ Type: Integer
105107
Valid Range: Minimum value of 1\. Maximum value of 10000\.
106108

107109
** [EventSourceArn](#API_CreateEventSourceMapping_ResponseSyntax) ** <a name="SSS-CreateEventSourceMapping-response-EventSourceArn"></a>
108-
The Amazon Resource Name \(ARN\) of the Amazon Kinesis stream that is the source of events\.
110+
The Amazon Resource Name \(ARN\) of the Amazon Kinesis or DynamoDB stream that is the source of events\.
109111
Type: String
110112
Pattern: `arn:aws:([a-zA-Z0-9\-])+:([a-z]{2}-[a-z]+-\d{1})?:(\d{12})?:(.*)`
111113

112114
** [FunctionArn](#API_CreateEventSourceMapping_ResponseSyntax) ** <a name="SSS-CreateEventSourceMapping-response-FunctionArn"></a>
113-
The Lambda function to invoke when AWS Lambda detects an event on the stream\.
115+
The Lambda function to invoke when AWS Lambda detects an event on the poll\-based source\.
114116
Type: String
115117
Pattern: `arn:aws:lambda:[a-z]{2}-[a-z]+-\d{1}:\d{12}:function:[a-zA-Z0-9-_]+(:(\$LATEST|[a-zA-Z0-9-_]+))?`
116118

@@ -119,7 +121,7 @@ The UTC time string indicating the last time the event mapping was updated\.
119121
Type: Timestamp
120122

121123
** [LastProcessingResult](#API_CreateEventSourceMapping_ResponseSyntax) ** <a name="SSS-CreateEventSourceMapping-response-LastProcessingResult"></a>
122-
The result of the last AWS Lambda invocation of your Lambda function\.
124+
The result of the last AWS Lambda invocation of your Lambda function\. This value will be null if an SQS queue is the event source\.
123125
Type: String
124126

125127
** [State](#API_CreateEventSourceMapping_ResponseSyntax) ** <a name="SSS-CreateEventSourceMapping-response-State"></a>

‎doc_source/API_CreateFunction.md

Copy file name to clipboardExpand all lines: doc_source/API_CreateFunction.md
+3-3Lines changed: 3 additions & 3 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 | nodejs8.10 | java8 | python2.7 | python3.6 | dotnetcore1.0 | dotnetcore2.0 | go1.x`
123+
Valid Values:` nodejs | nodejs4.3 | nodejs6.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>
@@ -129,7 +129,7 @@ Type: String to string map
129129
Required: No
130130

131131
** [Timeout](#API_CreateFunction_RequestSyntax) ** <a name="SSS-CreateFunction-request-Timeout"></a>
132-
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\.
132+
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\. If you are using AWS SQS as an event source, make sure the execution time value you set does not exceed the [Visibility Timeout](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-visibility-timeout.html) value on the queue\.
133133
Type: Integer
134134
Valid Range: Minimum value of 1\.
135135
Required: No
@@ -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 | nodejs8.10 | java8 | python2.7 | python3.6 | dotnetcore1.0 | dotnetcore2.0 | go1.x`
267+
Valid Values:` nodejs | nodejs4.3 | nodejs6.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_DeleteEventSourceMapping.md

Copy file name to clipboardExpand all lines: doc_source/API_DeleteEventSourceMapping.md
+7-3Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,12 @@ Type: Integer
5151
Valid Range: Minimum value of 1\. Maximum value of 10000\.
5252

5353
** [EventSourceArn](#API_DeleteEventSourceMapping_ResponseSyntax) ** <a name="SSS-DeleteEventSourceMapping-response-EventSourceArn"></a>
54-
The Amazon Resource Name \(ARN\) of the Amazon Kinesis stream that is the source of events\.
54+
The Amazon Resource Name \(ARN\) of the Amazon Kinesis or DynamoDB stream that is the source of events\.
5555
Type: String
5656
Pattern: `arn:aws:([a-zA-Z0-9\-])+:([a-z]{2}-[a-z]+-\d{1})?:(\d{12})?:(.*)`
5757

5858
** [FunctionArn](#API_DeleteEventSourceMapping_ResponseSyntax) ** <a name="SSS-DeleteEventSourceMapping-response-FunctionArn"></a>
59-
The Lambda function to invoke when AWS Lambda detects an event on the stream\.
59+
The Lambda function to invoke when AWS Lambda detects an event on the poll\-based source\.
6060
Type: String
6161
Pattern: `arn:aws:lambda:[a-z]{2}-[a-z]+-\d{1}:\d{12}:function:[a-zA-Z0-9-_]+(:(\$LATEST|[a-zA-Z0-9-_]+))?`
6262

@@ -65,7 +65,7 @@ The UTC time string indicating the last time the event mapping was updated\.
6565
Type: Timestamp
6666

6767
** [LastProcessingResult](#API_DeleteEventSourceMapping_ResponseSyntax) ** <a name="SSS-DeleteEventSourceMapping-response-LastProcessingResult"></a>
68-
The result of the last AWS Lambda invocation of your Lambda function\.
68+
The result of the last AWS Lambda invocation of your Lambda function\. This value will be null if an SQS queue is the event source\.
6969
Type: String
7070

7171
** [State](#API_DeleteEventSourceMapping_ResponseSyntax) ** <a name="SSS-DeleteEventSourceMapping-response-State"></a>
@@ -84,6 +84,10 @@ Type: String
8484

8585
**InvalidParameterValueException**
8686
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\.
87+
HTTP Status Code: 400
88+
89+
**ResourceInUseException**
90+
The operation conflicts with the resource's availability\. For example, you attempted to update an EventSoure Mapping in CREATING, or tried to delete a EventSoure mapping currently in the UPDATING state\.
8791
HTTP Status Code: 400
8892

8993
**ResourceNotFoundException**

‎doc_source/API_EventSourceMappingConfiguration.md

Copy file name to clipboardExpand all lines: doc_source/API_EventSourceMappingConfiguration.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# EventSourceMappingConfiguration<a name="API_EventSourceMappingConfiguration"></a>
22

3-
Describes mapping between an Amazon Kinesis stream and a Lambda function\.
3+
Describes mapping between an Amazon Kinesis or DynamoDB stream and a Lambda function\.
44

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

@@ -11,13 +11,13 @@ Valid Range: Minimum value of 1\. Maximum value of 10000\.
1111
Required: No
1212

1313
**EventSourceArn** <a name="SSS-Type-EventSourceMappingConfiguration-EventSourceArn"></a>
14-
The Amazon Resource Name \(ARN\) of the Amazon Kinesis stream that is the source of events\.
14+
The Amazon Resource Name \(ARN\) of the Amazon Kinesis or DynamoDB stream that is the source of events\.
1515
Type: String
1616
Pattern: `arn:aws:([a-zA-Z0-9\-])+:([a-z]{2}-[a-z]+-\d{1})?:(\d{12})?:(.*)`
1717
Required: No
1818

1919
**FunctionArn** <a name="SSS-Type-EventSourceMappingConfiguration-FunctionArn"></a>
20-
The Lambda function to invoke when AWS Lambda detects an event on the stream\.
20+
The Lambda function to invoke when AWS Lambda detects an event on the poll\-based source\.
2121
Type: String
2222
Pattern: `arn:aws:lambda:[a-z]{2}-[a-z]+-\d{1}:\d{12}:function:[a-zA-Z0-9-_]+(:(\$LATEST|[a-zA-Z0-9-_]+))?`
2323
Required: No
@@ -28,7 +28,7 @@ Type: Timestamp
2828
Required: No
2929

3030
**LastProcessingResult** <a name="SSS-Type-EventSourceMappingConfiguration-LastProcessingResult"></a>
31-
The result of the last AWS Lambda invocation of your Lambda function\.
31+
The result of the last AWS Lambda invocation of your Lambda function\. This value will be null if an SQS queue is the event source\.
3232
Type: String
3333
Required: No
3434

‎doc_source/API_FunctionConfiguration.md

Copy file name to clipboardExpand all lines: doc_source/API_FunctionConfiguration.md
+1-1Lines 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 | nodejs8.10 | java8 | python2.7 | python3.6 | dotnetcore1.0 | dotnetcore2.0 | go1.x`
90+
Valid Values:` nodejs | nodejs4.3 | nodejs6.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_GetEventSourceMapping.md

Copy file name to clipboardExpand all lines: doc_source/API_GetEventSourceMapping.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,12 @@ Type: Integer
5151
Valid Range: Minimum value of 1\. Maximum value of 10000\.
5252

5353
** [EventSourceArn](#API_GetEventSourceMapping_ResponseSyntax) ** <a name="SSS-GetEventSourceMapping-response-EventSourceArn"></a>
54-
The Amazon Resource Name \(ARN\) of the Amazon Kinesis stream that is the source of events\.
54+
The Amazon Resource Name \(ARN\) of the Amazon Kinesis or DynamoDB stream that is the source of events\.
5555
Type: String
5656
Pattern: `arn:aws:([a-zA-Z0-9\-])+:([a-z]{2}-[a-z]+-\d{1})?:(\d{12})?:(.*)`
5757

5858
** [FunctionArn](#API_GetEventSourceMapping_ResponseSyntax) ** <a name="SSS-GetEventSourceMapping-response-FunctionArn"></a>
59-
The Lambda function to invoke when AWS Lambda detects an event on the stream\.
59+
The Lambda function to invoke when AWS Lambda detects an event on the poll\-based source\.
6060
Type: String
6161
Pattern: `arn:aws:lambda:[a-z]{2}-[a-z]+-\d{1}:\d{12}:function:[a-zA-Z0-9-_]+(:(\$LATEST|[a-zA-Z0-9-_]+))?`
6262

@@ -65,7 +65,7 @@ The UTC time string indicating the last time the event mapping was updated\.
6565
Type: Timestamp
6666

6767
** [LastProcessingResult](#API_GetEventSourceMapping_ResponseSyntax) ** <a name="SSS-GetEventSourceMapping-response-LastProcessingResult"></a>
68-
The result of the last AWS Lambda invocation of your Lambda function\.
68+
The result of the last AWS Lambda invocation of your Lambda function\. This value will be null if an SQS queue is the event source\.
6969
Type: String
7070

7171
** [State](#API_GetEventSourceMapping_ResponseSyntax) ** <a name="SSS-GetEventSourceMapping-response-State"></a>

‎doc_source/API_GetFunctionConfiguration.md

Copy file name to clipboardExpand all lines: doc_source/API_GetFunctionConfiguration.md
+1-1Lines 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 | nodejs8.10 | java8 | python2.7 | python3.6 | dotnetcore1.0 | dotnetcore2.0 | go1.x`
155+
Valid Values:` nodejs | nodejs4.3 | nodejs6.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_ListEventSourceMappings.md

Copy file name to clipboardExpand all lines: doc_source/API_ListEventSourceMappings.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ GET /2015-03-31/event-source-mappings/?EventSourceArn=EventSourceArn&FunctionNam
1919
The request requires the following URI parameters\.
2020

2121
** [EventSourceArn](#API_ListEventSourceMappings_RequestSyntax) ** <a name="SSS-ListEventSourceMappings-request-EventSourceArn"></a>
22-
The Amazon Resource Name \(ARN\) of the Amazon Kinesis stream\. \(This parameter is optional\.\)
22+
The Amazon Resource Name \(ARN\) of the Amazon Kinesis or DynamoDB stream\. \(This parameter is optional\.\)
2323
Pattern: `arn:aws:([a-zA-Z0-9\-])+:([a-z]{2}-[a-z]+-\d{1})?:(\d{12})?:(.*)`
2424

2525
** [FunctionName](#API_ListEventSourceMappings_RequestSyntax) ** <a name="SSS-ListEventSourceMappings-request-FunctionName"></a>

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.