@aws-sdk/client-lambda 3.55.0 → 3.65.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/dist-cjs/Lambda.js +75 -0
  3. package/dist-cjs/commands/CreateFunctionUrlConfigCommand.js +36 -0
  4. package/dist-cjs/commands/DeleteFunctionUrlConfigCommand.js +36 -0
  5. package/dist-cjs/commands/GetFunctionUrlConfigCommand.js +36 -0
  6. package/dist-cjs/commands/ListFunctionUrlConfigsCommand.js +36 -0
  7. package/dist-cjs/commands/UpdateFunctionUrlConfigCommand.js +36 -0
  8. package/dist-cjs/commands/index.js +5 -0
  9. package/dist-cjs/models/models_0.js +81 -4
  10. package/dist-cjs/pagination/ListFunctionUrlConfigsPaginator.js +35 -0
  11. package/dist-cjs/pagination/index.js +1 -0
  12. package/dist-cjs/protocols/Aws_restJson1.js +626 -3
  13. package/dist-es/Lambda.js +75 -0
  14. package/dist-es/commands/CreateFunctionUrlConfigCommand.js +39 -0
  15. package/dist-es/commands/DeleteFunctionUrlConfigCommand.js +39 -0
  16. package/dist-es/commands/GetFunctionUrlConfigCommand.js +39 -0
  17. package/dist-es/commands/ListFunctionUrlConfigsCommand.js +39 -0
  18. package/dist-es/commands/UpdateFunctionUrlConfigCommand.js +39 -0
  19. package/dist-es/commands/index.js +5 -0
  20. package/dist-es/models/models_0.js +53 -0
  21. package/dist-es/pagination/ListFunctionUrlConfigsPaginator.js +74 -0
  22. package/dist-es/pagination/index.js +1 -0
  23. package/dist-es/protocols/Aws_restJson1.js +756 -27
  24. package/dist-types/Lambda.d.ts +37 -0
  25. package/dist-types/LambdaClient.d.ts +7 -2
  26. package/dist-types/commands/CreateFunctionUrlConfigCommand.d.ts +36 -0
  27. package/dist-types/commands/DeleteFunctionUrlConfigCommand.d.ts +36 -0
  28. package/dist-types/commands/GetFunctionUrlConfigCommand.d.ts +35 -0
  29. package/dist-types/commands/ListFunctionUrlConfigsCommand.d.ts +35 -0
  30. package/dist-types/commands/UpdateFunctionUrlConfigCommand.d.ts +35 -0
  31. package/dist-types/commands/index.d.ts +5 -0
  32. package/dist-types/models/models_0.d.ts +439 -0
  33. package/dist-types/pagination/ListFunctionUrlConfigsPaginator.d.ts +4 -0
  34. package/dist-types/pagination/index.d.ts +1 -0
  35. package/dist-types/protocols/Aws_restJson1.d.ts +15 -0
  36. package/dist-types/ts3.4/Lambda.d.ts +25 -0
  37. package/dist-types/ts3.4/LambdaClient.d.ts +7 -2
  38. package/dist-types/ts3.4/commands/CreateFunctionUrlConfigCommand.d.ts +17 -0
  39. package/dist-types/ts3.4/commands/DeleteFunctionUrlConfigCommand.d.ts +17 -0
  40. package/dist-types/ts3.4/commands/GetFunctionUrlConfigCommand.d.ts +17 -0
  41. package/dist-types/ts3.4/commands/ListFunctionUrlConfigsCommand.d.ts +17 -0
  42. package/dist-types/ts3.4/commands/UpdateFunctionUrlConfigCommand.d.ts +17 -0
  43. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  44. package/dist-types/ts3.4/models/models_0.d.ts +181 -0
  45. package/dist-types/ts3.4/pagination/ListFunctionUrlConfigsPaginator.d.ts +4 -0
  46. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  47. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +15 -0
  48. package/package.json +18 -18
@@ -221,6 +221,10 @@ export declare class TooManyRequestsException extends __BaseException {
221
221
  */
222
222
  constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
223
223
  }
224
+ export declare enum FunctionUrlAuthType {
225
+ AWS_IAM = "AWS_IAM",
226
+ NONE = "NONE"
227
+ }
224
228
  export interface AddPermissionRequest {
225
229
  /**
226
230
  * <p>The name of the Lambda function, version, or alias.</p>
@@ -289,6 +293,12 @@ export interface AddPermissionRequest {
289
293
  * accounts under this organization.</p>
290
294
  */
291
295
  PrincipalOrgID?: string;
296
+ /**
297
+ * <p>The type of authentication that your function URL uses. Set to <code>AWS_IAM</code> if you want to restrict access to authenticated
298
+ * <code>IAM</code> users only. Set to <code>NONE</code> if you want to bypass IAM authentication to create a public endpoint. For more information,
299
+ * see <a href="https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html"> Security and auth model for Lambda function URLs</a>.</p>
300
+ */
301
+ FunctionUrlAuthType?: FunctionUrlAuthType | string;
292
302
  }
293
303
  export declare namespace AddPermissionRequest {
294
304
  /**
@@ -1092,6 +1102,21 @@ export declare namespace Environment {
1092
1102
  */
1093
1103
  const filterSensitiveLog: (obj: Environment) => any;
1094
1104
  }
1105
+ /**
1106
+ * <p>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.</p>
1107
+ */
1108
+ export interface EphemeralStorage {
1109
+ /**
1110
+ * <p>The size of the function’s /tmp directory.</p>
1111
+ */
1112
+ Size: number | undefined;
1113
+ }
1114
+ export declare namespace EphemeralStorage {
1115
+ /**
1116
+ * @internal
1117
+ */
1118
+ const filterSensitiveLog: (obj: EphemeralStorage) => any;
1119
+ }
1095
1120
  /**
1096
1121
  * <p>Details about the connection between a Lambda function and an
1097
1122
  * <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-filesystem.html">Amazon EFS file system</a>.</p>
@@ -1330,6 +1355,10 @@ export interface CreateFunctionRequest {
1330
1355
  * The default value is <code>x86_64</code>.</p>
1331
1356
  */
1332
1357
  Architectures?: (Architecture | string)[];
1358
+ /**
1359
+ * <p>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.</p>
1360
+ */
1361
+ EphemeralStorage?: EphemeralStorage;
1333
1362
  }
1334
1363
  export declare namespace CreateFunctionRequest {
1335
1364
  /**
@@ -1658,6 +1687,10 @@ export interface FunctionConfiguration {
1658
1687
  * valid values. The default architecture value is <code>x86_64</code>.</p>
1659
1688
  */
1660
1689
  Architectures?: (Architecture | string)[];
1690
+ /**
1691
+ * <p>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.</p>
1692
+ */
1693
+ EphemeralStorage?: EphemeralStorage;
1661
1694
  }
1662
1695
  export declare namespace FunctionConfiguration {
1663
1696
  /**
@@ -1679,6 +1712,128 @@ export declare class InvalidCodeSignatureException extends __BaseException {
1679
1712
  */
1680
1713
  constructor(opts: __ExceptionOptionType<InvalidCodeSignatureException, __BaseException>);
1681
1714
  }
1715
+ /**
1716
+ * <p>The <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS">cross-origin resource sharing
1717
+ * (CORS)</a> settings for your Lambda function URL. Use CORS to grant access to your function URL
1718
+ * from any origin. You can also use CORS to control access for specific HTTP headers and methods in requests to your
1719
+ * function URL.</p>
1720
+ */
1721
+ export interface Cors {
1722
+ /**
1723
+ * <p>Whether to allow cookies or other credentials in requests to your function URL. The default is
1724
+ * <code>false</code>.</p>
1725
+ */
1726
+ AllowCredentials?: boolean;
1727
+ /**
1728
+ * <p>The HTTP headers that origins can include in requests to your function URL. For example: <code>Date</code>, <code>Keep-Alive</code>,
1729
+ * <code>X-Custom-Header</code>.</p>
1730
+ */
1731
+ AllowHeaders?: string[];
1732
+ /**
1733
+ * <p>The HTTP methods that are allowed when calling your function URL. For example: <code>GET</code>, <code>POST</code>, <code>DELETE</code>,
1734
+ * or the wildcard character (<code>*</code>).</p>
1735
+ */
1736
+ AllowMethods?: string[];
1737
+ /**
1738
+ * <p>The origins that can access your function URL. You can list any number of specific origins, separated by a comma. For example:
1739
+ * <code>https://www.example.com</code>, <code>http://localhost:60905</code>.</p>
1740
+ * <p>Alternatively, you can grant access to all origins using the wildcard character (<code>*</code>).</p>
1741
+ */
1742
+ AllowOrigins?: string[];
1743
+ /**
1744
+ * <p>The HTTP headers in your function response that you want to expose to origins that call your function URL. For example:
1745
+ * <code>Date</code>, <code>Keep-Alive</code>, <code>X-Custom-Header</code>.</p>
1746
+ */
1747
+ ExposeHeaders?: string[];
1748
+ /**
1749
+ * <p>The maximum amount of time, in seconds, that web browsers can cache results of a preflight request. By
1750
+ * default, this is set to <code>0</code>, which means that the browser doesn't cache results.</p>
1751
+ */
1752
+ MaxAge?: number;
1753
+ }
1754
+ export declare namespace Cors {
1755
+ /**
1756
+ * @internal
1757
+ */
1758
+ const filterSensitiveLog: (obj: Cors) => any;
1759
+ }
1760
+ export interface CreateFunctionUrlConfigRequest {
1761
+ /**
1762
+ * <p>The name of the Lambda function.</p>
1763
+ * <p class="title">
1764
+ * <b>Name formats</b>
1765
+ * </p>
1766
+ * <ul>
1767
+ * <li>
1768
+ * <p>
1769
+ * <b>Function name</b> - <code>my-function</code>.</p>
1770
+ * </li>
1771
+ * <li>
1772
+ * <p>
1773
+ * <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p>
1774
+ * </li>
1775
+ * <li>
1776
+ * <p>
1777
+ * <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p>
1778
+ * </li>
1779
+ * </ul>
1780
+ * <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64
1781
+ * characters in length.</p>
1782
+ */
1783
+ FunctionName: string | undefined;
1784
+ /**
1785
+ * <p>The alias name.</p>
1786
+ */
1787
+ Qualifier?: string;
1788
+ /**
1789
+ * <p>The type of authentication that your function URL uses. Set to <code>AWS_IAM</code> if you want to restrict access to authenticated
1790
+ * <code>IAM</code> users only. Set to <code>NONE</code> if you want to bypass IAM authentication to create a public endpoint. For more information,
1791
+ * see <a href="https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html"> Security and auth model for Lambda function URLs</a>.</p>
1792
+ */
1793
+ AuthType: FunctionUrlAuthType | string | undefined;
1794
+ /**
1795
+ * <p>The <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS">cross-origin resource sharing (CORS)</a> settings
1796
+ * for your function URL.</p>
1797
+ */
1798
+ Cors?: Cors;
1799
+ }
1800
+ export declare namespace CreateFunctionUrlConfigRequest {
1801
+ /**
1802
+ * @internal
1803
+ */
1804
+ const filterSensitiveLog: (obj: CreateFunctionUrlConfigRequest) => any;
1805
+ }
1806
+ export interface CreateFunctionUrlConfigResponse {
1807
+ /**
1808
+ * <p>The HTTP URL endpoint for your function.</p>
1809
+ */
1810
+ FunctionUrl: string | undefined;
1811
+ /**
1812
+ * <p>The Amazon Resource Name (ARN) of your function.</p>
1813
+ */
1814
+ FunctionArn: string | undefined;
1815
+ /**
1816
+ * <p>The type of authentication that your function URL uses. Set to <code>AWS_IAM</code> if you want to restrict access to authenticated
1817
+ * <code>IAM</code> users only. Set to <code>NONE</code> if you want to bypass IAM authentication to create a public endpoint. For more information,
1818
+ * see <a href="https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html"> Security and auth model for Lambda function URLs</a>.</p>
1819
+ */
1820
+ AuthType: FunctionUrlAuthType | string | undefined;
1821
+ /**
1822
+ * <p>The <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS">cross-origin resource sharing (CORS)</a> settings
1823
+ * for your function URL.</p>
1824
+ */
1825
+ Cors?: Cors;
1826
+ /**
1827
+ * <p>When the function URL was created, in <a href="https://www.w3.org/TR/NOTE-datetime">ISO-8601 format</a> (YYYY-MM-DDThh:mm:ss.sTZD).</p>
1828
+ */
1829
+ CreationTime: string | undefined;
1830
+ }
1831
+ export declare namespace CreateFunctionUrlConfigResponse {
1832
+ /**
1833
+ * @internal
1834
+ */
1835
+ const filterSensitiveLog: (obj: CreateFunctionUrlConfigResponse) => any;
1836
+ }
1682
1837
  export interface DeleteAliasRequest {
1683
1838
  /**
1684
1839
  * <p>The name of the Lambda function.</p>
@@ -1892,6 +2047,41 @@ export declare namespace DeleteFunctionEventInvokeConfigRequest {
1892
2047
  */
1893
2048
  const filterSensitiveLog: (obj: DeleteFunctionEventInvokeConfigRequest) => any;
1894
2049
  }
2050
+ export interface DeleteFunctionUrlConfigRequest {
2051
+ /**
2052
+ * <p>The name of the Lambda function.</p>
2053
+ * <p class="title">
2054
+ * <b>Name formats</b>
2055
+ * </p>
2056
+ * <ul>
2057
+ * <li>
2058
+ * <p>
2059
+ * <b>Function name</b> - <code>my-function</code>.</p>
2060
+ * </li>
2061
+ * <li>
2062
+ * <p>
2063
+ * <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p>
2064
+ * </li>
2065
+ * <li>
2066
+ * <p>
2067
+ * <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p>
2068
+ * </li>
2069
+ * </ul>
2070
+ * <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64
2071
+ * characters in length.</p>
2072
+ */
2073
+ FunctionName: string | undefined;
2074
+ /**
2075
+ * <p>The alias name.</p>
2076
+ */
2077
+ Qualifier?: string;
2078
+ }
2079
+ export declare namespace DeleteFunctionUrlConfigRequest {
2080
+ /**
2081
+ * @internal
2082
+ */
2083
+ const filterSensitiveLog: (obj: DeleteFunctionUrlConfigRequest) => any;
2084
+ }
1895
2085
  export interface DeleteLayerVersionRequest {
1896
2086
  /**
1897
2087
  * <p>The name or Amazon Resource Name (ARN) of the layer.</p>
@@ -2367,6 +2557,76 @@ export declare namespace GetFunctionEventInvokeConfigRequest {
2367
2557
  */
2368
2558
  const filterSensitiveLog: (obj: GetFunctionEventInvokeConfigRequest) => any;
2369
2559
  }
2560
+ export interface GetFunctionUrlConfigRequest {
2561
+ /**
2562
+ * <p>The name of the Lambda function.</p>
2563
+ * <p class="title">
2564
+ * <b>Name formats</b>
2565
+ * </p>
2566
+ * <ul>
2567
+ * <li>
2568
+ * <p>
2569
+ * <b>Function name</b> - <code>my-function</code>.</p>
2570
+ * </li>
2571
+ * <li>
2572
+ * <p>
2573
+ * <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p>
2574
+ * </li>
2575
+ * <li>
2576
+ * <p>
2577
+ * <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p>
2578
+ * </li>
2579
+ * </ul>
2580
+ * <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64
2581
+ * characters in length.</p>
2582
+ */
2583
+ FunctionName: string | undefined;
2584
+ /**
2585
+ * <p>The alias name.</p>
2586
+ */
2587
+ Qualifier?: string;
2588
+ }
2589
+ export declare namespace GetFunctionUrlConfigRequest {
2590
+ /**
2591
+ * @internal
2592
+ */
2593
+ const filterSensitiveLog: (obj: GetFunctionUrlConfigRequest) => any;
2594
+ }
2595
+ export interface GetFunctionUrlConfigResponse {
2596
+ /**
2597
+ * <p>The HTTP URL endpoint for your function.</p>
2598
+ */
2599
+ FunctionUrl: string | undefined;
2600
+ /**
2601
+ * <p>The Amazon Resource Name (ARN) of your function.</p>
2602
+ */
2603
+ FunctionArn: string | undefined;
2604
+ /**
2605
+ * <p>The type of authentication that your function URL uses. Set to <code>AWS_IAM</code> if you want to restrict access to authenticated
2606
+ * <code>IAM</code> users only. Set to <code>NONE</code> if you want to bypass IAM authentication to create a public endpoint. For more information,
2607
+ * see <a href="https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html"> Security and auth model for Lambda function URLs</a>.</p>
2608
+ */
2609
+ AuthType: FunctionUrlAuthType | string | undefined;
2610
+ /**
2611
+ * <p>The <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS">cross-origin resource sharing (CORS)</a> settings
2612
+ * for your function URL.</p>
2613
+ */
2614
+ Cors?: Cors;
2615
+ /**
2616
+ * <p>When the function URL was created, in <a href="https://www.w3.org/TR/NOTE-datetime">ISO-8601 format</a> (YYYY-MM-DDThh:mm:ss.sTZD).</p>
2617
+ */
2618
+ CreationTime: string | undefined;
2619
+ /**
2620
+ * <p>When the function URL configuration was last updated, in <a href="https://www.w3.org/TR/NOTE-datetime">ISO-8601 format</a> (YYYY-MM-DDThh:mm:ss.sTZD).</p>
2621
+ */
2622
+ LastModifiedTime: string | undefined;
2623
+ }
2624
+ export declare namespace GetFunctionUrlConfigResponse {
2625
+ /**
2626
+ * @internal
2627
+ */
2628
+ const filterSensitiveLog: (obj: GetFunctionUrlConfigResponse) => any;
2629
+ }
2370
2630
  export interface GetLayerVersionRequest {
2371
2631
  /**
2372
2632
  * <p>The name or Amazon Resource Name (ARN) of the layer.</p>
@@ -3404,6 +3664,100 @@ export declare namespace ListFunctionsByCodeSigningConfigResponse {
3404
3664
  */
3405
3665
  const filterSensitiveLog: (obj: ListFunctionsByCodeSigningConfigResponse) => any;
3406
3666
  }
3667
+ export interface ListFunctionUrlConfigsRequest {
3668
+ /**
3669
+ * <p>The name of the Lambda function.</p>
3670
+ * <p class="title">
3671
+ * <b>Name formats</b>
3672
+ * </p>
3673
+ * <ul>
3674
+ * <li>
3675
+ * <p>
3676
+ * <b>Function name</b> - <code>my-function</code>.</p>
3677
+ * </li>
3678
+ * <li>
3679
+ * <p>
3680
+ * <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p>
3681
+ * </li>
3682
+ * <li>
3683
+ * <p>
3684
+ * <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p>
3685
+ * </li>
3686
+ * </ul>
3687
+ * <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64
3688
+ * characters in length.</p>
3689
+ */
3690
+ FunctionName: string | undefined;
3691
+ /**
3692
+ * <p>Specify the pagination token that's returned by a previous request to retrieve the next page of results.</p>
3693
+ */
3694
+ Marker?: string;
3695
+ /**
3696
+ * <p>The maximum number of function URLs to return in the response. Note that <code>ListFunctionUrlConfigs</code>
3697
+ * returns a maximum of 50 items in each response, even if you set the number higher.</p>
3698
+ */
3699
+ MaxItems?: number;
3700
+ }
3701
+ export declare namespace ListFunctionUrlConfigsRequest {
3702
+ /**
3703
+ * @internal
3704
+ */
3705
+ const filterSensitiveLog: (obj: ListFunctionUrlConfigsRequest) => any;
3706
+ }
3707
+ /**
3708
+ * <p>Details about a Lambda function URL.</p>
3709
+ */
3710
+ export interface FunctionUrlConfig {
3711
+ /**
3712
+ * <p>The HTTP URL endpoint for your function.</p>
3713
+ */
3714
+ FunctionUrl: string | undefined;
3715
+ /**
3716
+ * <p>The Amazon Resource Name (ARN) of your function.</p>
3717
+ */
3718
+ FunctionArn: string | undefined;
3719
+ /**
3720
+ * <p>When the function URL was created, in <a href="https://www.w3.org/TR/NOTE-datetime">ISO-8601 format</a> (YYYY-MM-DDThh:mm:ss.sTZD).</p>
3721
+ */
3722
+ CreationTime: string | undefined;
3723
+ /**
3724
+ * <p>When the function URL configuration was last updated, in <a href="https://www.w3.org/TR/NOTE-datetime">ISO-8601 format</a> (YYYY-MM-DDThh:mm:ss.sTZD).</p>
3725
+ */
3726
+ LastModifiedTime: string | undefined;
3727
+ /**
3728
+ * <p>The <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS">cross-origin resource sharing (CORS)</a> settings
3729
+ * for your function URL.</p>
3730
+ */
3731
+ Cors?: Cors;
3732
+ /**
3733
+ * <p>The type of authentication that your function URL uses. Set to <code>AWS_IAM</code> if you want to restrict access to authenticated
3734
+ * <code>IAM</code> users only. Set to <code>NONE</code> if you want to bypass IAM authentication to create a public endpoint. For more information,
3735
+ * see <a href="https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html"> Security and auth model for Lambda function URLs</a>.</p>
3736
+ */
3737
+ AuthType: FunctionUrlAuthType | string | undefined;
3738
+ }
3739
+ export declare namespace FunctionUrlConfig {
3740
+ /**
3741
+ * @internal
3742
+ */
3743
+ const filterSensitiveLog: (obj: FunctionUrlConfig) => any;
3744
+ }
3745
+ export interface ListFunctionUrlConfigsResponse {
3746
+ /**
3747
+ * <p>A list of function URL configurations.</p>
3748
+ */
3749
+ FunctionUrlConfigs: FunctionUrlConfig[] | undefined;
3750
+ /**
3751
+ * <p>The pagination token that's included if more results are available.</p>
3752
+ */
3753
+ NextMarker?: string;
3754
+ }
3755
+ export declare namespace ListFunctionUrlConfigsResponse {
3756
+ /**
3757
+ * @internal
3758
+ */
3759
+ const filterSensitiveLog: (obj: ListFunctionUrlConfigsResponse) => any;
3760
+ }
3407
3761
  export interface ListLayersRequest {
3408
3762
  /**
3409
3763
  * <p>A runtime identifier. For example, <code>go1.x</code>.</p>
@@ -4627,6 +4981,10 @@ export interface UpdateFunctionConfigurationRequest {
4627
4981
  * values</a> that override the values in the container image Docker file.</p>
4628
4982
  */
4629
4983
  ImageConfig?: ImageConfig;
4984
+ /**
4985
+ * <p>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.</p>
4986
+ */
4987
+ EphemeralStorage?: EphemeralStorage;
4630
4988
  }
4631
4989
  export declare namespace UpdateFunctionConfigurationRequest {
4632
4990
  /**
@@ -4702,3 +5060,84 @@ export declare namespace UpdateFunctionEventInvokeConfigRequest {
4702
5060
  */
4703
5061
  const filterSensitiveLog: (obj: UpdateFunctionEventInvokeConfigRequest) => any;
4704
5062
  }
5063
+ export interface UpdateFunctionUrlConfigRequest {
5064
+ /**
5065
+ * <p>The name of the Lambda function.</p>
5066
+ * <p class="title">
5067
+ * <b>Name formats</b>
5068
+ * </p>
5069
+ * <ul>
5070
+ * <li>
5071
+ * <p>
5072
+ * <b>Function name</b> - <code>my-function</code>.</p>
5073
+ * </li>
5074
+ * <li>
5075
+ * <p>
5076
+ * <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p>
5077
+ * </li>
5078
+ * <li>
5079
+ * <p>
5080
+ * <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p>
5081
+ * </li>
5082
+ * </ul>
5083
+ * <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64
5084
+ * characters in length.</p>
5085
+ */
5086
+ FunctionName: string | undefined;
5087
+ /**
5088
+ * <p>The alias name.</p>
5089
+ */
5090
+ Qualifier?: string;
5091
+ /**
5092
+ * <p>The type of authentication that your function URL uses. Set to <code>AWS_IAM</code> if you want to restrict access to authenticated
5093
+ * <code>IAM</code> users only. Set to <code>NONE</code> if you want to bypass IAM authentication to create a public endpoint. For more information,
5094
+ * see <a href="https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html"> Security and auth model for Lambda function URLs</a>.</p>
5095
+ */
5096
+ AuthType?: FunctionUrlAuthType | string;
5097
+ /**
5098
+ * <p>The <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS">cross-origin resource sharing (CORS)</a> settings
5099
+ * for your function URL.</p>
5100
+ */
5101
+ Cors?: Cors;
5102
+ }
5103
+ export declare namespace UpdateFunctionUrlConfigRequest {
5104
+ /**
5105
+ * @internal
5106
+ */
5107
+ const filterSensitiveLog: (obj: UpdateFunctionUrlConfigRequest) => any;
5108
+ }
5109
+ export interface UpdateFunctionUrlConfigResponse {
5110
+ /**
5111
+ * <p>The HTTP URL endpoint for your function.</p>
5112
+ */
5113
+ FunctionUrl: string | undefined;
5114
+ /**
5115
+ * <p>The Amazon Resource Name (ARN) of your function.</p>
5116
+ */
5117
+ FunctionArn: string | undefined;
5118
+ /**
5119
+ * <p>The type of authentication that your function URL uses. Set to <code>AWS_IAM</code> if you want to restrict access to authenticated
5120
+ * <code>IAM</code> users only. Set to <code>NONE</code> if you want to bypass IAM authentication to create a public endpoint. For more information,
5121
+ * see <a href="https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html"> Security and auth model for Lambda function URLs</a>.</p>
5122
+ */
5123
+ AuthType: FunctionUrlAuthType | string | undefined;
5124
+ /**
5125
+ * <p>The <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS">cross-origin resource sharing (CORS)</a> settings
5126
+ * for your function URL.</p>
5127
+ */
5128
+ Cors?: Cors;
5129
+ /**
5130
+ * <p>When the function URL was created, in <a href="https://www.w3.org/TR/NOTE-datetime">ISO-8601 format</a> (YYYY-MM-DDThh:mm:ss.sTZD).</p>
5131
+ */
5132
+ CreationTime: string | undefined;
5133
+ /**
5134
+ * <p>When the function URL configuration was last updated, in <a href="https://www.w3.org/TR/NOTE-datetime">ISO-8601 format</a> (YYYY-MM-DDThh:mm:ss.sTZD).</p>
5135
+ */
5136
+ LastModifiedTime: string | undefined;
5137
+ }
5138
+ export declare namespace UpdateFunctionUrlConfigResponse {
5139
+ /**
5140
+ * @internal
5141
+ */
5142
+ const filterSensitiveLog: (obj: UpdateFunctionUrlConfigResponse) => any;
5143
+ }
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListFunctionUrlConfigsCommandInput, ListFunctionUrlConfigsCommandOutput } from "../commands/ListFunctionUrlConfigsCommand";
3
+ import { LambdaPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListFunctionUrlConfigs(config: LambdaPaginationConfiguration, input: ListFunctionUrlConfigsCommandInput, ...additionalArguments: any): Paginator<ListFunctionUrlConfigsCommandOutput>;
@@ -3,6 +3,7 @@ export * from "./ListAliasesPaginator";
3
3
  export * from "./ListCodeSigningConfigsPaginator";
4
4
  export * from "./ListEventSourceMappingsPaginator";
5
5
  export * from "./ListFunctionEventInvokeConfigsPaginator";
6
+ export * from "./ListFunctionUrlConfigsPaginator";
6
7
  export * from "./ListFunctionsByCodeSigningConfigPaginator";
7
8
  export * from "./ListFunctionsPaginator";
8
9
  export * from "./ListLayerVersionsPaginator";
@@ -6,6 +6,7 @@ import { CreateAliasCommandInput, CreateAliasCommandOutput } from "../commands/C
6
6
  import { CreateCodeSigningConfigCommandInput, CreateCodeSigningConfigCommandOutput } from "../commands/CreateCodeSigningConfigCommand";
7
7
  import { CreateEventSourceMappingCommandInput, CreateEventSourceMappingCommandOutput } from "../commands/CreateEventSourceMappingCommand";
8
8
  import { CreateFunctionCommandInput, CreateFunctionCommandOutput } from "../commands/CreateFunctionCommand";
9
+ import { CreateFunctionUrlConfigCommandInput, CreateFunctionUrlConfigCommandOutput } from "../commands/CreateFunctionUrlConfigCommand";
9
10
  import { DeleteAliasCommandInput, DeleteAliasCommandOutput } from "../commands/DeleteAliasCommand";
10
11
  import { DeleteCodeSigningConfigCommandInput, DeleteCodeSigningConfigCommandOutput } from "../commands/DeleteCodeSigningConfigCommand";
11
12
  import { DeleteEventSourceMappingCommandInput, DeleteEventSourceMappingCommandOutput } from "../commands/DeleteEventSourceMappingCommand";
@@ -13,6 +14,7 @@ import { DeleteFunctionCodeSigningConfigCommandInput, DeleteFunctionCodeSigningC
13
14
  import { DeleteFunctionCommandInput, DeleteFunctionCommandOutput } from "../commands/DeleteFunctionCommand";
14
15
  import { DeleteFunctionConcurrencyCommandInput, DeleteFunctionConcurrencyCommandOutput } from "../commands/DeleteFunctionConcurrencyCommand";
15
16
  import { DeleteFunctionEventInvokeConfigCommandInput, DeleteFunctionEventInvokeConfigCommandOutput } from "../commands/DeleteFunctionEventInvokeConfigCommand";
17
+ import { DeleteFunctionUrlConfigCommandInput, DeleteFunctionUrlConfigCommandOutput } from "../commands/DeleteFunctionUrlConfigCommand";
16
18
  import { DeleteLayerVersionCommandInput, DeleteLayerVersionCommandOutput } from "../commands/DeleteLayerVersionCommand";
17
19
  import { DeleteProvisionedConcurrencyConfigCommandInput, DeleteProvisionedConcurrencyConfigCommandOutput } from "../commands/DeleteProvisionedConcurrencyConfigCommand";
18
20
  import { GetAccountSettingsCommandInput, GetAccountSettingsCommandOutput } from "../commands/GetAccountSettingsCommand";
@@ -24,6 +26,7 @@ import { GetFunctionCommandInput, GetFunctionCommandOutput } from "../commands/G
24
26
  import { GetFunctionConcurrencyCommandInput, GetFunctionConcurrencyCommandOutput } from "../commands/GetFunctionConcurrencyCommand";
25
27
  import { GetFunctionConfigurationCommandInput, GetFunctionConfigurationCommandOutput } from "../commands/GetFunctionConfigurationCommand";
26
28
  import { GetFunctionEventInvokeConfigCommandInput, GetFunctionEventInvokeConfigCommandOutput } from "../commands/GetFunctionEventInvokeConfigCommand";
29
+ import { GetFunctionUrlConfigCommandInput, GetFunctionUrlConfigCommandOutput } from "../commands/GetFunctionUrlConfigCommand";
27
30
  import { GetLayerVersionByArnCommandInput, GetLayerVersionByArnCommandOutput } from "../commands/GetLayerVersionByArnCommand";
28
31
  import { GetLayerVersionCommandInput, GetLayerVersionCommandOutput } from "../commands/GetLayerVersionCommand";
29
32
  import { GetLayerVersionPolicyCommandInput, GetLayerVersionPolicyCommandOutput } from "../commands/GetLayerVersionPolicyCommand";
@@ -37,6 +40,7 @@ import { ListEventSourceMappingsCommandInput, ListEventSourceMappingsCommandOutp
37
40
  import { ListFunctionEventInvokeConfigsCommandInput, ListFunctionEventInvokeConfigsCommandOutput } from "../commands/ListFunctionEventInvokeConfigsCommand";
38
41
  import { ListFunctionsByCodeSigningConfigCommandInput, ListFunctionsByCodeSigningConfigCommandOutput } from "../commands/ListFunctionsByCodeSigningConfigCommand";
39
42
  import { ListFunctionsCommandInput, ListFunctionsCommandOutput } from "../commands/ListFunctionsCommand";
43
+ import { ListFunctionUrlConfigsCommandInput, ListFunctionUrlConfigsCommandOutput } from "../commands/ListFunctionUrlConfigsCommand";
40
44
  import { ListLayersCommandInput, ListLayersCommandOutput } from "../commands/ListLayersCommand";
41
45
  import { ListLayerVersionsCommandInput, ListLayerVersionsCommandOutput } from "../commands/ListLayerVersionsCommand";
42
46
  import { ListProvisionedConcurrencyConfigsCommandInput, ListProvisionedConcurrencyConfigsCommandOutput } from "../commands/ListProvisionedConcurrencyConfigsCommand";
@@ -58,12 +62,14 @@ import { UpdateEventSourceMappingCommandInput, UpdateEventSourceMappingCommandOu
58
62
  import { UpdateFunctionCodeCommandInput, UpdateFunctionCodeCommandOutput } from "../commands/UpdateFunctionCodeCommand";
59
63
  import { UpdateFunctionConfigurationCommandInput, UpdateFunctionConfigurationCommandOutput } from "../commands/UpdateFunctionConfigurationCommand";
60
64
  import { UpdateFunctionEventInvokeConfigCommandInput, UpdateFunctionEventInvokeConfigCommandOutput } from "../commands/UpdateFunctionEventInvokeConfigCommand";
65
+ import { UpdateFunctionUrlConfigCommandInput, UpdateFunctionUrlConfigCommandOutput } from "../commands/UpdateFunctionUrlConfigCommand";
61
66
  export declare const serializeAws_restJson1AddLayerVersionPermissionCommand: (input: AddLayerVersionPermissionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
62
67
  export declare const serializeAws_restJson1AddPermissionCommand: (input: AddPermissionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
63
68
  export declare const serializeAws_restJson1CreateAliasCommand: (input: CreateAliasCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
64
69
  export declare const serializeAws_restJson1CreateCodeSigningConfigCommand: (input: CreateCodeSigningConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
65
70
  export declare const serializeAws_restJson1CreateEventSourceMappingCommand: (input: CreateEventSourceMappingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
66
71
  export declare const serializeAws_restJson1CreateFunctionCommand: (input: CreateFunctionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
72
+ export declare const serializeAws_restJson1CreateFunctionUrlConfigCommand: (input: CreateFunctionUrlConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
67
73
  export declare const serializeAws_restJson1DeleteAliasCommand: (input: DeleteAliasCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
68
74
  export declare const serializeAws_restJson1DeleteCodeSigningConfigCommand: (input: DeleteCodeSigningConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
69
75
  export declare const serializeAws_restJson1DeleteEventSourceMappingCommand: (input: DeleteEventSourceMappingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -71,6 +77,7 @@ export declare const serializeAws_restJson1DeleteFunctionCommand: (input: Delete
71
77
  export declare const serializeAws_restJson1DeleteFunctionCodeSigningConfigCommand: (input: DeleteFunctionCodeSigningConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
72
78
  export declare const serializeAws_restJson1DeleteFunctionConcurrencyCommand: (input: DeleteFunctionConcurrencyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
73
79
  export declare const serializeAws_restJson1DeleteFunctionEventInvokeConfigCommand: (input: DeleteFunctionEventInvokeConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
80
+ export declare const serializeAws_restJson1DeleteFunctionUrlConfigCommand: (input: DeleteFunctionUrlConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
74
81
  export declare const serializeAws_restJson1DeleteLayerVersionCommand: (input: DeleteLayerVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
75
82
  export declare const serializeAws_restJson1DeleteProvisionedConcurrencyConfigCommand: (input: DeleteProvisionedConcurrencyConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
76
83
  export declare const serializeAws_restJson1GetAccountSettingsCommand: (input: GetAccountSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -82,6 +89,7 @@ export declare const serializeAws_restJson1GetFunctionCodeSigningConfigCommand:
82
89
  export declare const serializeAws_restJson1GetFunctionConcurrencyCommand: (input: GetFunctionConcurrencyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
83
90
  export declare const serializeAws_restJson1GetFunctionConfigurationCommand: (input: GetFunctionConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
84
91
  export declare const serializeAws_restJson1GetFunctionEventInvokeConfigCommand: (input: GetFunctionEventInvokeConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
92
+ export declare const serializeAws_restJson1GetFunctionUrlConfigCommand: (input: GetFunctionUrlConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
85
93
  export declare const serializeAws_restJson1GetLayerVersionCommand: (input: GetLayerVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
86
94
  export declare const serializeAws_restJson1GetLayerVersionByArnCommand: (input: GetLayerVersionByArnCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
87
95
  export declare const serializeAws_restJson1GetLayerVersionPolicyCommand: (input: GetLayerVersionPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -95,6 +103,7 @@ export declare const serializeAws_restJson1ListEventSourceMappingsCommand: (inpu
95
103
  export declare const serializeAws_restJson1ListFunctionEventInvokeConfigsCommand: (input: ListFunctionEventInvokeConfigsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
96
104
  export declare const serializeAws_restJson1ListFunctionsCommand: (input: ListFunctionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
97
105
  export declare const serializeAws_restJson1ListFunctionsByCodeSigningConfigCommand: (input: ListFunctionsByCodeSigningConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
106
+ export declare const serializeAws_restJson1ListFunctionUrlConfigsCommand: (input: ListFunctionUrlConfigsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
98
107
  export declare const serializeAws_restJson1ListLayersCommand: (input: ListLayersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
99
108
  export declare const serializeAws_restJson1ListLayerVersionsCommand: (input: ListLayerVersionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
100
109
  export declare const serializeAws_restJson1ListProvisionedConcurrencyConfigsCommand: (input: ListProvisionedConcurrencyConfigsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -116,12 +125,14 @@ export declare const serializeAws_restJson1UpdateEventSourceMappingCommand: (inp
116
125
  export declare const serializeAws_restJson1UpdateFunctionCodeCommand: (input: UpdateFunctionCodeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
117
126
  export declare const serializeAws_restJson1UpdateFunctionConfigurationCommand: (input: UpdateFunctionConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
118
127
  export declare const serializeAws_restJson1UpdateFunctionEventInvokeConfigCommand: (input: UpdateFunctionEventInvokeConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
128
+ export declare const serializeAws_restJson1UpdateFunctionUrlConfigCommand: (input: UpdateFunctionUrlConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
119
129
  export declare const deserializeAws_restJson1AddLayerVersionPermissionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AddLayerVersionPermissionCommandOutput>;
120
130
  export declare const deserializeAws_restJson1AddPermissionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AddPermissionCommandOutput>;
121
131
  export declare const deserializeAws_restJson1CreateAliasCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAliasCommandOutput>;
122
132
  export declare const deserializeAws_restJson1CreateCodeSigningConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateCodeSigningConfigCommandOutput>;
123
133
  export declare const deserializeAws_restJson1CreateEventSourceMappingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateEventSourceMappingCommandOutput>;
124
134
  export declare const deserializeAws_restJson1CreateFunctionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateFunctionCommandOutput>;
135
+ export declare const deserializeAws_restJson1CreateFunctionUrlConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateFunctionUrlConfigCommandOutput>;
125
136
  export declare const deserializeAws_restJson1DeleteAliasCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAliasCommandOutput>;
126
137
  export declare const deserializeAws_restJson1DeleteCodeSigningConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteCodeSigningConfigCommandOutput>;
127
138
  export declare const deserializeAws_restJson1DeleteEventSourceMappingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteEventSourceMappingCommandOutput>;
@@ -129,6 +140,7 @@ export declare const deserializeAws_restJson1DeleteFunctionCommand: (output: __H
129
140
  export declare const deserializeAws_restJson1DeleteFunctionCodeSigningConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteFunctionCodeSigningConfigCommandOutput>;
130
141
  export declare const deserializeAws_restJson1DeleteFunctionConcurrencyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteFunctionConcurrencyCommandOutput>;
131
142
  export declare const deserializeAws_restJson1DeleteFunctionEventInvokeConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteFunctionEventInvokeConfigCommandOutput>;
143
+ export declare const deserializeAws_restJson1DeleteFunctionUrlConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteFunctionUrlConfigCommandOutput>;
132
144
  export declare const deserializeAws_restJson1DeleteLayerVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteLayerVersionCommandOutput>;
133
145
  export declare const deserializeAws_restJson1DeleteProvisionedConcurrencyConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteProvisionedConcurrencyConfigCommandOutput>;
134
146
  export declare const deserializeAws_restJson1GetAccountSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAccountSettingsCommandOutput>;
@@ -140,6 +152,7 @@ export declare const deserializeAws_restJson1GetFunctionCodeSigningConfigCommand
140
152
  export declare const deserializeAws_restJson1GetFunctionConcurrencyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetFunctionConcurrencyCommandOutput>;
141
153
  export declare const deserializeAws_restJson1GetFunctionConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetFunctionConfigurationCommandOutput>;
142
154
  export declare const deserializeAws_restJson1GetFunctionEventInvokeConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetFunctionEventInvokeConfigCommandOutput>;
155
+ export declare const deserializeAws_restJson1GetFunctionUrlConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetFunctionUrlConfigCommandOutput>;
143
156
  export declare const deserializeAws_restJson1GetLayerVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetLayerVersionCommandOutput>;
144
157
  export declare const deserializeAws_restJson1GetLayerVersionByArnCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetLayerVersionByArnCommandOutput>;
145
158
  export declare const deserializeAws_restJson1GetLayerVersionPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetLayerVersionPolicyCommandOutput>;
@@ -153,6 +166,7 @@ export declare const deserializeAws_restJson1ListEventSourceMappingsCommand: (ou
153
166
  export declare const deserializeAws_restJson1ListFunctionEventInvokeConfigsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListFunctionEventInvokeConfigsCommandOutput>;
154
167
  export declare const deserializeAws_restJson1ListFunctionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListFunctionsCommandOutput>;
155
168
  export declare const deserializeAws_restJson1ListFunctionsByCodeSigningConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListFunctionsByCodeSigningConfigCommandOutput>;
169
+ export declare const deserializeAws_restJson1ListFunctionUrlConfigsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListFunctionUrlConfigsCommandOutput>;
156
170
  export declare const deserializeAws_restJson1ListLayersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListLayersCommandOutput>;
157
171
  export declare const deserializeAws_restJson1ListLayerVersionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListLayerVersionsCommandOutput>;
158
172
  export declare const deserializeAws_restJson1ListProvisionedConcurrencyConfigsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListProvisionedConcurrencyConfigsCommandOutput>;
@@ -174,3 +188,4 @@ export declare const deserializeAws_restJson1UpdateEventSourceMappingCommand: (o
174
188
  export declare const deserializeAws_restJson1UpdateFunctionCodeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateFunctionCodeCommandOutput>;
175
189
  export declare const deserializeAws_restJson1UpdateFunctionConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateFunctionConfigurationCommandOutput>;
176
190
  export declare const deserializeAws_restJson1UpdateFunctionEventInvokeConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateFunctionEventInvokeConfigCommandOutput>;
191
+ export declare const deserializeAws_restJson1UpdateFunctionUrlConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateFunctionUrlConfigCommandOutput>;