Skip to content

Commit 4c88540

Browse files
committed
Periodic update - 06/10/2022
1 parent 174fd25 commit 4c88540

File tree

348 files changed

+3403
-1118
lines changed

Some content is hidden

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

348 files changed

+3403
-1118
lines changed

doc_source/.DS_Store

-6 KB
Binary file not shown.

doc_source/API_AccountLimit.md

100755100644
File mode changed.

doc_source/API_AccountUsage.md

100755100644
File mode changed.

doc_source/API_AddLayerVersionPermission.md

100755100644
File mode changed.

doc_source/API_AddPermission.md

100755100644
+17-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# AddPermission<a name="API_AddPermission"></a>
22

3-
Grants an AWS service or another account permission to use a function\. You can apply the policy at the function level, or specify a qualifier to restrict access to a single version or alias\. If you use a qualifier, the invoker must use the full Amazon Resource Name \(ARN\) of that version or alias to invoke the function\. Note: Lambda does not support adding policies to version $LATEST\.
3+
Grants an AWS service, account, or organization permission to use a function\. You can apply the policy at the function level, or specify a qualifier to restrict access to a single version or alias\. If you use a qualifier, the invoker must use the full Amazon Resource Name \(ARN\) of that version or alias to invoke the function\. Note: Lambda does not support adding policies to version $LATEST\.
44

5-
To grant permission to another account, specify the account ID as the `Principal`\. For AWS services, the principal is a domain\-style identifier defined by the service, like `s3.amazonaws.com` or `sns.amazonaws.com`\. For AWS services, you can also specify the ARN of the associated resource as the `SourceArn`\. If you grant permission to a service principal without specifying the source, other accounts could potentially configure resources in their account to invoke your Lambda function\.
5+
To grant permission to another account, specify the account ID as the `Principal`\. To grant permission to an organization defined in AWS Organizations, specify the organization ID as the `PrincipalOrgID`\. For AWS services, the principal is a domain\-style identifier defined by the service, like `s3.amazonaws.com` or `sns.amazonaws.com`\. For AWS services, you can also specify the ARN of the associated resource as the `SourceArn`\. If you grant permission to a service principal without specifying the source, other accounts could potentially configure resources in their account to invoke your Lambda function\.
66

77
This action adds a statement to a resource\-based permissions policy for the function\. For more information about function policies, see [Lambda Function Policies](https://docs.aws.amazon.com/lambda/latest/dg/access-control-resource-based.html)\.
88

@@ -15,7 +15,9 @@ Content-type: application/json
1515
{
1616
"Action": "string",
1717
"EventSourceToken": "string",
18+
"FunctionUrlAuthType": "string",
1819
"Principal": "string",
20+
"PrincipalOrgID": "string",
1921
"RevisionId": "string",
2022
"SourceAccount": "string",
2123
"SourceArn": "string",
@@ -59,6 +61,12 @@ For Alexa Smart Home functions, a token that must be supplied by the invoker\.
5961
Type: String
6062
Length Constraints: Minimum length of 0\. Maximum length of 256\.
6163
Pattern: `[a-zA-Z0-9._\-]+`
64+
Required: No
65+
66+
** [FunctionUrlAuthType](#API_AddPermission_RequestSyntax) ** <a name="SSS-AddPermission-request-FunctionUrlAuthType"></a>
67+
The type of authentication that your function URL uses\. Set to `AWS_IAM` if you want to restrict access to authenticated `IAM` users only\. Set to `NONE` if you want to bypass IAM authentication to create a public endpoint\. For more information, see [ Security and auth model for Lambda function URLs](https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html)\.
68+
Type: String
69+
Valid Values:` NONE | AWS_IAM`
6270
Required: No
6371

6472
** [Principal](#API_AddPermission_RequestSyntax) ** <a name="SSS-AddPermission-request-Principal"></a>
@@ -67,6 +75,13 @@ Type: String
6775
Pattern: `[^\s]+`
6876
Required: Yes
6977

78+
** [PrincipalOrgID](#API_AddPermission_RequestSyntax) ** <a name="SSS-AddPermission-request-PrincipalOrgID"></a>
79+
The identifier for your organization in AWS Organizations\. Use this to grant permissions to all the AWS accounts under this organization\.
80+
Type: String
81+
Length Constraints: Minimum length of 12\. Maximum length of 34\.
82+
Pattern: `^o-[a-z0-9]{10,32}$`
83+
Required: No
84+
7085
** [RevisionId](#API_AddPermission_RequestSyntax) ** <a name="SSS-AddPermission-request-RevisionId"></a>
7186
Only update the policy if the revision ID matches the ID that's specified\. Use this option to avoid modifying a policy that has changed since you last read it\.
7287
Type: String

doc_source/API_AliasConfiguration.md

100755100644
File mode changed.

doc_source/API_AliasRoutingConfiguration.md

100755100644
File mode changed.

doc_source/API_AllowedPublishers.md

100755100644
File mode changed.

doc_source/API_CodeSigningConfig.md

100755100644
File mode changed.

doc_source/API_CodeSigningPolicies.md

100755100644
File mode changed.

doc_source/API_Concurrency.md

100755100644
File mode changed.

doc_source/API_Cors.md

+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
# Cors<a name="API_Cors"></a>
2+
3+
The [cross\-origin resource sharing \(CORS\)](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS) settings for your Lambda function URL\. Use CORS to grant access to your function URL from any origin\. You can also use CORS to control access for specific HTTP headers and methods in requests to your function URL\.
4+
5+
## Contents<a name="API_Cors_Contents"></a>
6+
7+
** AllowCredentials ** <a name="SSS-Type-Cors-AllowCredentials"></a>
8+
Whether to allow cookies or other credentials in requests to your function URL\. The default is `false`\.
9+
Type: Boolean
10+
Required: No
11+
12+
** AllowHeaders ** <a name="SSS-Type-Cors-AllowHeaders"></a>
13+
The HTTP headers that origins can include in requests to your function URL\. For example: `Date`, `Keep-Alive`, `X-Custom-Header`\.
14+
Type: Array of strings
15+
Array Members: Maximum number of 100 items\.
16+
Length Constraints: Maximum length of 1024\.
17+
Pattern: `.*`
18+
Required: No
19+
20+
** AllowMethods ** <a name="SSS-Type-Cors-AllowMethods"></a>
21+
The HTTP methods that are allowed when calling your function URL\. For example: `GET`, `POST`, `DELETE`, or the wildcard character \(`*`\)\.
22+
Type: Array of strings
23+
Array Members: Maximum number of 6 items\.
24+
Length Constraints: Maximum length of 6\.
25+
Pattern: `.*`
26+
Required: No
27+
28+
** AllowOrigins ** <a name="SSS-Type-Cors-AllowOrigins"></a>
29+
The origins that can access your function URL\. You can list any number of specific origins, separated by a comma\. For example: `https://www.example.com`, `http://localhost:60905`\.
30+
Alternatively, you can grant access to all origins using the wildcard character \(`*`\)\.
31+
Type: Array of strings
32+
Array Members: Maximum number of 100 items\.
33+
Length Constraints: Minimum length of 1\. Maximum length of 253\.
34+
Pattern: `.*`
35+
Required: No
36+
37+
** ExposeHeaders ** <a name="SSS-Type-Cors-ExposeHeaders"></a>
38+
The HTTP headers in your function response that you want to expose to origins that call your function URL\. For example: `Date`, `Keep-Alive`, `X-Custom-Header`\.
39+
Type: Array of strings
40+
Array Members: Maximum number of 100 items\.
41+
Length Constraints: Maximum length of 1024\.
42+
Pattern: `.*`
43+
Required: No
44+
45+
** MaxAge ** <a name="SSS-Type-Cors-MaxAge"></a>
46+
The maximum amount of time, in seconds, that web browsers can cache results of a preflight request\. By default, this is set to `0`, which means that the browser doesn't cache results\.
47+
Type: Integer
48+
Valid Range: Minimum value of 0\. Maximum value of 86400\.
49+
Required: No
50+
51+
## See Also<a name="API_Cors_SeeAlso"></a>
52+
53+
For more information about using this API in one of the language\-specific AWS SDKs, see the following:
54+
+ [AWS SDK for C\+\+](https://docs.aws.amazon.com/goto/SdkForCpp/lambda-2015-03-31/Cors)
55+
+ [AWS SDK for Go](https://docs.aws.amazon.com/goto/SdkForGoV1/lambda-2015-03-31/Cors)
56+
+ [AWS SDK for Java V2](https://docs.aws.amazon.com/goto/SdkForJavaV2/lambda-2015-03-31/Cors)
57+
+ [AWS SDK for Ruby V3](https://docs.aws.amazon.com/goto/SdkForRubyV3/lambda-2015-03-31/Cors)

doc_source/API_CreateAlias.md

100755100644
File mode changed.

doc_source/API_CreateCodeSigningConfig.md

100755100644
File mode changed.

doc_source/API_CreateEventSourceMapping.md

100755100644
+2-2
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ The request accepts the following data in JSON format\.
8787
** [BatchSize](#API_CreateEventSourceMapping_RequestSyntax) ** <a name="SSS-CreateEventSourceMapping-request-BatchSize"></a>
8888
The maximum number of records in each batch that Lambda pulls from your stream or queue and sends to your function\. Lambda passes all of the records in the batch to the function in a single call, up to the payload limit for synchronous invocation \(6 MB\)\.
8989
+ **Amazon Kinesis** \- Default 100\. Max 10,000\.
90-
+ **Amazon DynamoDB Streams** \- Default 100\. Max 1,000\.
90+
+ **Amazon DynamoDB Streams** \- Default 100\. Max 10,000\.
9191
+ **Amazon Simple Queue Service** \- Default 10\. For standard queues the max is 10,000\. For FIFO queues the max is 10\.
9292
+ **Amazon Managed Streaming for Apache Kafka** \- Default 100\. Max 10,000\.
9393
+ **Self\-Managed Apache Kafka** \- Default 100\. Max 10,000\.
@@ -309,7 +309,7 @@ Type: String
309309
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-_]+))?`
310310

311311
** [FunctionResponseTypes](#API_CreateEventSourceMapping_ResponseSyntax) ** <a name="SSS-CreateEventSourceMapping-response-FunctionResponseTypes"></a>
312-
\(Streams only\) A list of current response type enums applied to the event source mapping\.
312+
\(Streams and Amazon SQS\) A list of current response type enums applied to the event source mapping\.
313313
Type: Array of strings
314314
Array Members: Minimum number of 0 items\. Maximum number of 1 item\.
315315
Valid Values:` ReportBatchItemFailures`

doc_source/API_CreateFunction.md

100755100644
+17-2
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@ Content-type: application/json
4343
"string" : "string"
4444
}
4545
},
46+
"EphemeralStorage": {
47+
"Size": number
48+
},
4649
"FileSystemConfigs": [
4750
{
4851
"Arn": "string",
@@ -118,6 +121,11 @@ Required: No
118121
** [Environment](#API_CreateFunction_RequestSyntax) ** <a name="SSS-CreateFunction-request-Environment"></a>
119122
Environment variables that are accessible from function code during execution\.
120123
Type: [Environment](API_Environment.md) object
124+
Required: No
125+
126+
** [EphemeralStorage](#API_CreateFunction_RequestSyntax) ** <a name="SSS-CreateFunction-request-EphemeralStorage"></a>
127+
The size of the function’s /tmp directory in MB\. The default value is 512, but can be any whole number between 512 and 10240 MB\.
128+
Type: [EphemeralStorage](API_EphemeralStorage.md) object
121129
Required: No
122130

123131
** [FileSystemConfigs](#API_CreateFunction_RequestSyntax) ** <a name="SSS-CreateFunction-request-FileSystemConfigs"></a>
@@ -190,7 +198,7 @@ Required: Yes
190198
** [Runtime](#API_CreateFunction_RequestSyntax) ** <a name="SSS-CreateFunction-request-Runtime"></a>
191199
The identifier of the function's [runtime](https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html)\. Runtime is required if the deployment package is a \.zip file archive\.
192200
Type: String
193-
Valid Values:` nodejs | nodejs4.3 | nodejs6.10 | nodejs8.10 | nodejs10.x | nodejs12.x | nodejs14.x | java8 | java8.al2 | java11 | python2.7 | python3.6 | python3.7 | python3.8 | python3.9 | dotnetcore1.0 | dotnetcore2.0 | dotnetcore2.1 | dotnetcore3.1 | nodejs4.3-edge | go1.x | ruby2.5 | ruby2.7 | provided | provided.al2`
201+
Valid Values:` nodejs | nodejs4.3 | nodejs6.10 | nodejs8.10 | nodejs10.x | nodejs12.x | nodejs14.x | nodejs16.x | java8 | java8.al2 | java11 | python2.7 | python3.6 | python3.7 | python3.8 | python3.9 | dotnetcore1.0 | dotnetcore2.0 | dotnetcore2.1 | dotnetcore3.1 | dotnet6 | nodejs4.3-edge | go1.x | ruby2.5 | ruby2.7 | provided | provided.al2`
194202
Required: No
195203

196204
** [Tags](#API_CreateFunction_RequestSyntax) ** <a name="SSS-CreateFunction-request-Tags"></a>
@@ -237,6 +245,9 @@ Content-type: application/json
237245
"string" : "string"
238246
}
239247
},
248+
"EphemeralStorage": {
249+
"Size": number
250+
},
240251
"FileSystemConfigs": [
241252
{
242253
"Arn": "string",
@@ -327,6 +338,10 @@ Length Constraints: Minimum length of 0\. Maximum length of 256\.
327338
The function's [environment variables](https://docs.aws.amazon.com/lambda/latest/dg/configuration-envvars.html)\.
328339
Type: [EnvironmentResponse](API_EnvironmentResponse.md) object
329340

341+
** [EphemeralStorage](#API_CreateFunction_ResponseSyntax) ** <a name="SSS-CreateFunction-response-EphemeralStorage"></a>
342+
The size of the function’s /tmp directory in MB\. The default value is 512, but can be any whole number between 512 and 10240 MB\.
343+
Type: [EphemeralStorage](API_EphemeralStorage.md) object
344+
330345
** [FileSystemConfigs](#API_CreateFunction_ResponseSyntax) ** <a name="SSS-CreateFunction-response-FileSystemConfigs"></a>
331346
Connection settings for an [Amazon EFS file system](https://docs.aws.amazon.com/lambda/latest/dg/configuration-filesystem.html)\.
332347
Type: Array of [FileSystemConfig](API_FileSystemConfig.md) objects
@@ -407,7 +422,7 @@ Pattern: `arn:(aws[a-zA-Z-]*)?:iam::\d{12}:role/?[a-zA-Z_0-9+=,.@\-_/]+`
407422
** [Runtime](#API_CreateFunction_ResponseSyntax) ** <a name="SSS-CreateFunction-response-Runtime"></a>
408423
The runtime environment for the Lambda function\.
409424
Type: String
410-
Valid Values:` nodejs | nodejs4.3 | nodejs6.10 | nodejs8.10 | nodejs10.x | nodejs12.x | nodejs14.x | java8 | java8.al2 | java11 | python2.7 | python3.6 | python3.7 | python3.8 | python3.9 | dotnetcore1.0 | dotnetcore2.0 | dotnetcore2.1 | dotnetcore3.1 | nodejs4.3-edge | go1.x | ruby2.5 | ruby2.7 | provided | provided.al2`
425+
Valid Values:` nodejs | nodejs4.3 | nodejs6.10 | nodejs8.10 | nodejs10.x | nodejs12.x | nodejs14.x | nodejs16.x | java8 | java8.al2 | java11 | python2.7 | python3.6 | python3.7 | python3.8 | python3.9 | dotnetcore1.0 | dotnetcore2.0 | dotnetcore2.1 | dotnetcore3.1 | dotnet6 | nodejs4.3-edge | go1.x | ruby2.5 | ruby2.7 | provided | provided.al2`
411426

412427
** [SigningJobArn](#API_CreateFunction_ResponseSyntax) ** <a name="SSS-CreateFunction-response-SigningJobArn"></a>
413428
The ARN of the signing job\.
+144
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,144 @@
1+
# CreateFunctionUrlConfig<a name="API_CreateFunctionUrlConfig"></a>
2+
3+
Creates a Lambda function URL with the specified configuration parameters\. A function URL is a dedicated HTTP\(S\) endpoint that you can use to invoke your function\.
4+
5+
## Request Syntax<a name="API_CreateFunctionUrlConfig_RequestSyntax"></a>
6+
7+
```
8+
POST /2021-10-31/functions/FunctionName/url?Qualifier=Qualifier HTTP/1.1
9+
Content-type: application/json
10+
11+
{
12+
"AuthType": "string",
13+
"Cors": {
14+
"AllowCredentials": boolean,
15+
"AllowHeaders": [ "string" ],
16+
"AllowMethods": [ "string" ],
17+
"AllowOrigins": [ "string" ],
18+
"ExposeHeaders": [ "string" ],
19+
"MaxAge": number
20+
}
21+
}
22+
```
23+
24+
## URI Request Parameters<a name="API_CreateFunctionUrlConfig_RequestParameters"></a>
25+
26+
The request uses the following URI parameters\.
27+
28+
** [FunctionName](#API_CreateFunctionUrlConfig_RequestSyntax) ** <a name="SSS-CreateFunctionUrlConfig-request-FunctionName"></a>
29+
The name of the Lambda function\.
30+
31+
**Name formats**
32+
+ **Function name** \- `my-function`\.
33+
+ **Function ARN** \- `arn:aws:lambda:us-west-2:123456789012:function:my-function`\.
34+
+ **Partial ARN** \- `123456789012:function:my-function`\.
35+
The length constraint applies only to the full ARN\. If you specify only the function name, it is limited to 64 characters in length\.
36+
Length Constraints: Minimum length of 1\. Maximum length of 140\.
37+
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-_]+))?`
38+
Required: Yes
39+
40+
** [Qualifier](#API_CreateFunctionUrlConfig_RequestSyntax) ** <a name="SSS-CreateFunctionUrlConfig-request-Qualifier"></a>
41+
The alias name\.
42+
Length Constraints: Minimum length of 1\. Maximum length of 128\.
43+
Pattern: `(^\$LATEST$)|((?!^[0-9]+$)([a-zA-Z0-9-_]+))`
44+
45+
## Request Body<a name="API_CreateFunctionUrlConfig_RequestBody"></a>
46+
47+
The request accepts the following data in JSON format\.
48+
49+
** [AuthType](#API_CreateFunctionUrlConfig_RequestSyntax) ** <a name="SSS-CreateFunctionUrlConfig-request-AuthType"></a>
50+
The type of authentication that your function URL uses\. Set to `AWS_IAM` if you want to restrict access to authenticated `IAM` users only\. Set to `NONE` if you want to bypass IAM authentication to create a public endpoint\. For more information, see [ Security and auth model for Lambda function URLs](https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html)\.
51+
Type: String
52+
Valid Values:` NONE | AWS_IAM`
53+
Required: Yes
54+
55+
** [Cors](#API_CreateFunctionUrlConfig_RequestSyntax) ** <a name="SSS-CreateFunctionUrlConfig-request-Cors"></a>
56+
The [cross\-origin resource sharing \(CORS\)](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS) settings for your function URL\.
57+
Type: [Cors](API_Cors.md) object
58+
Required: No
59+
60+
## Response Syntax<a name="API_CreateFunctionUrlConfig_ResponseSyntax"></a>
61+
62+
```
63+
HTTP/1.1 201
64+
Content-type: application/json
65+
66+
{
67+
"AuthType": "string",
68+
"Cors": {
69+
"AllowCredentials": boolean,
70+
"AllowHeaders": [ "string" ],
71+
"AllowMethods": [ "string" ],
72+
"AllowOrigins": [ "string" ],
73+
"ExposeHeaders": [ "string" ],
74+
"MaxAge": number
75+
},
76+
"CreationTime": "string",
77+
"FunctionArn": "string",
78+
"FunctionUrl": "string"
79+
}
80+
```
81+
82+
## Response Elements<a name="API_CreateFunctionUrlConfig_ResponseElements"></a>
83+
84+
If the action is successful, the service sends back an HTTP 201 response\.
85+
86+
The following data is returned in JSON format by the service\.
87+
88+
** [AuthType](#API_CreateFunctionUrlConfig_ResponseSyntax) ** <a name="SSS-CreateFunctionUrlConfig-response-AuthType"></a>
89+
The type of authentication that your function URL uses\. Set to `AWS_IAM` if you want to restrict access to authenticated `IAM` users only\. Set to `NONE` if you want to bypass IAM authentication to create a public endpoint\. For more information, see [ Security and auth model for Lambda function URLs](https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html)\.
90+
Type: String
91+
Valid Values:` NONE | AWS_IAM`
92+
93+
** [Cors](#API_CreateFunctionUrlConfig_ResponseSyntax) ** <a name="SSS-CreateFunctionUrlConfig-response-Cors"></a>
94+
The [cross\-origin resource sharing \(CORS\)](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS) settings for your function URL\.
95+
Type: [Cors](API_Cors.md) object
96+
97+
** [CreationTime](#API_CreateFunctionUrlConfig_ResponseSyntax) ** <a name="SSS-CreateFunctionUrlConfig-response-CreationTime"></a>
98+
When the function URL was created, in [ISO\-8601 format](https://www.w3.org/TR/NOTE-datetime) \(YYYY\-MM\-DDThh:mm:ss\.sTZD\)\.
99+
Type: String
100+
101+
** [FunctionArn](#API_CreateFunctionUrlConfig_ResponseSyntax) ** <a name="SSS-CreateFunctionUrlConfig-response-FunctionArn"></a>
102+
The Amazon Resource Name \(ARN\) of your function\.
103+
Type: String
104+
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-_]+))?`
105+
106+
** [FunctionUrl](#API_CreateFunctionUrlConfig_ResponseSyntax) ** <a name="SSS-CreateFunctionUrlConfig-response-FunctionUrl"></a>
107+
The HTTP URL endpoint for your function\.
108+
Type: String
109+
Length Constraints: Minimum length of 40\. Maximum length of 100\.
110+
111+
## Errors<a name="API_CreateFunctionUrlConfig_Errors"></a>
112+
113+
** InvalidParameterValueException **
114+
One of the parameters in the request is invalid\.
115+
HTTP Status Code: 400
116+
117+
** ResourceConflictException **
118+
The resource already exists, or another operation is in progress\.
119+
HTTP Status Code: 409
120+
121+
** ResourceNotFoundException **
122+
The resource specified in the request does not exist\.
123+
HTTP Status Code: 404
124+
125+
** ServiceException **
126+
The AWS Lambda service encountered an internal error\.
127+
HTTP Status Code: 500
128+
129+
** TooManyRequestsException **
130+
The request throughput limit was exceeded\.
131+
HTTP Status Code: 429
132+
133+
## See Also<a name="API_CreateFunctionUrlConfig_SeeAlso"></a>
134+
135+
For more information about using this API in one of the language\-specific AWS SDKs, see the following:
136+
+ [AWS Command Line Interface](https://docs.aws.amazon.com/goto/aws-cli/lambda-2015-03-31/CreateFunctionUrlConfig)
137+
+ [AWS SDK for \.NET](https://docs.aws.amazon.com/goto/DotNetSDKV3/lambda-2015-03-31/CreateFunctionUrlConfig)
138+
+ [AWS SDK for C\+\+](https://docs.aws.amazon.com/goto/SdkForCpp/lambda-2015-03-31/CreateFunctionUrlConfig)
139+
+ [AWS SDK for Go](https://docs.aws.amazon.com/goto/SdkForGoV1/lambda-2015-03-31/CreateFunctionUrlConfig)
140+
+ [AWS SDK for Java V2](https://docs.aws.amazon.com/goto/SdkForJavaV2/lambda-2015-03-31/CreateFunctionUrlConfig)
141+
+ [AWS SDK for JavaScript](https://docs.aws.amazon.com/goto/AWSJavaScriptSDK/lambda-2015-03-31/CreateFunctionUrlConfig)
142+
+ [AWS SDK for PHP V3](https://docs.aws.amazon.com/goto/SdkForPHPV3/lambda-2015-03-31/CreateFunctionUrlConfig)
143+
+ [AWS SDK for Python](https://docs.aws.amazon.com/goto/boto3/lambda-2015-03-31/CreateFunctionUrlConfig)
144+
+ [AWS SDK for Ruby V3](https://docs.aws.amazon.com/goto/SdkForRubyV3/lambda-2015-03-31/CreateFunctionUrlConfig)

doc_source/API_DeadLetterConfig.md

100755100644
File mode changed.

doc_source/API_DeleteAlias.md

100755100644
File mode changed.

doc_source/API_DeleteCodeSigningConfig.md

100755100644
File mode changed.

0 commit comments

Comments
 (0)