aws-sdk 2.583.0 → 2.587.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 (59) hide show
  1. package/CHANGELOG.md +26 -1
  2. package/README.md +1 -1
  3. package/apis/apigatewayv2-2018-11-29.min.json +632 -201
  4. package/apis/ebs-2019-11-02.examples.json +5 -0
  5. package/apis/ebs-2019-11-02.min.json +195 -0
  6. package/apis/ebs-2019-11-02.paginators.json +14 -0
  7. package/apis/kafka-2018-11-14.min.json +170 -34
  8. package/apis/kendra-2019-02-03.min.json +2 -1
  9. package/apis/kinesis-video-signaling-2019-12-04.examples.json +5 -0
  10. package/apis/kinesis-video-signaling-2019-12-04.min.json +79 -0
  11. package/apis/kinesis-video-signaling-2019-12-04.paginators.json +4 -0
  12. package/apis/kinesisvideo-2017-09-30.min.json +281 -8
  13. package/apis/kinesisvideo-2017-09-30.paginators.json +6 -0
  14. package/apis/lambda-2015-03-31.min.json +217 -25
  15. package/apis/lambda-2015-03-31.paginators.json +6 -0
  16. package/apis/metadata.json +8 -0
  17. package/apis/rds-2014-10-31.min.json +495 -101
  18. package/apis/rds-2014-10-31.paginators.json +18 -0
  19. package/apis/rekognition-2016-06-27.min.json +409 -85
  20. package/apis/rekognition-2016-06-27.paginators.json +12 -0
  21. package/apis/rekognition-2016-06-27.waiters2.json +45 -0
  22. package/apis/sagemaker-2017-07-24.min.json +3471 -472
  23. package/apis/sagemaker-2017-07-24.paginators.json +128 -16
  24. package/apis/sagemaker-2017-07-24.waiters2.json +30 -0
  25. package/apis/ssm-2014-11-06.min.json +94 -71
  26. package/apis/states-2016-11-23.min.json +92 -55
  27. package/clients/all.d.ts +2 -0
  28. package/clients/all.js +3 -1
  29. package/clients/apigatewayv2.d.ts +856 -1161
  30. package/clients/applicationautoscaling.d.ts +32 -32
  31. package/clients/browser_default.d.ts +1 -0
  32. package/clients/browser_default.js +2 -1
  33. package/clients/ebs.d.ts +211 -0
  34. package/clients/ebs.js +18 -0
  35. package/clients/kafka.d.ts +152 -0
  36. package/clients/kendra.d.ts +7 -3
  37. package/clients/kinesisvideo.d.ts +312 -1
  38. package/clients/kinesisvideosignalingchannels.d.ts +121 -0
  39. package/clients/kinesisvideosignalingchannels.js +18 -0
  40. package/clients/kms.d.ts +6 -6
  41. package/clients/lambda.d.ts +199 -2
  42. package/clients/quicksight.d.ts +223 -223
  43. package/clients/rds.d.ts +549 -0
  44. package/clients/rekognition.d.ts +423 -8
  45. package/clients/rekognition.js +1 -0
  46. package/clients/sagemaker.d.ts +4588 -610
  47. package/clients/ssm.d.ts +42 -6
  48. package/clients/stepfunctions.d.ts +54 -0
  49. package/dist/aws-sdk-core-react-native.js +2 -2
  50. package/dist/aws-sdk-react-native.js +1182 -1102
  51. package/dist/aws-sdk.js +2265 -859
  52. package/dist/aws-sdk.min.js +35 -35
  53. package/lib/config.d.ts +12 -0
  54. package/lib/config_service_placeholders.d.ts +4 -0
  55. package/lib/core.js +1 -1
  56. package/lib/services/s3.js +5 -4
  57. package/lib/services/sts.js +2 -4
  58. package/package.json +1 -1
  59. package/scripts/region-checker/whitelist.js +5 -5
@@ -101,6 +101,14 @@ declare class Lambda extends Service {
101
101
  * Deletes a version of an AWS Lambda layer. Deleted versions can no longer be viewed or added to functions. To avoid breaking functions, a copy of the version remains in Lambda until no functions refer to it.
102
102
  */
103
103
  deleteLayerVersion(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
104
+ /**
105
+ * Deletes the provisioned concurrency configuration for a function.
106
+ */
107
+ deleteProvisionedConcurrencyConfig(params: Lambda.Types.DeleteProvisionedConcurrencyConfigRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
108
+ /**
109
+ * Deletes the provisioned concurrency configuration for a function.
110
+ */
111
+ deleteProvisionedConcurrencyConfig(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
104
112
  /**
105
113
  * Retrieves details about your account's limits and usage in an AWS Region.
106
114
  */
@@ -133,6 +141,14 @@ declare class Lambda extends Service {
133
141
  * Returns information about the function or function version, with a link to download the deployment package that's valid for 10 minutes. If you specify a function version, only details that are specific to that version are returned.
134
142
  */
135
143
  getFunction(callback?: (err: AWSError, data: Lambda.Types.GetFunctionResponse) => void): Request<Lambda.Types.GetFunctionResponse, AWSError>;
144
+ /**
145
+ * Returns details about the concurrency configuration for a function. To set a concurrency limit for a function, use PutFunctionConcurrency.
146
+ */
147
+ getFunctionConcurrency(params: Lambda.Types.GetFunctionConcurrencyRequest, callback?: (err: AWSError, data: Lambda.Types.GetFunctionConcurrencyResponse) => void): Request<Lambda.Types.GetFunctionConcurrencyResponse, AWSError>;
148
+ /**
149
+ * Returns details about the concurrency configuration for a function. To set a concurrency limit for a function, use PutFunctionConcurrency.
150
+ */
151
+ getFunctionConcurrency(callback?: (err: AWSError, data: Lambda.Types.GetFunctionConcurrencyResponse) => void): Request<Lambda.Types.GetFunctionConcurrencyResponse, AWSError>;
136
152
  /**
137
153
  * Returns the version-specific settings of a Lambda function or version. The output includes only options that can vary between versions of a function. To modify these settings, use UpdateFunctionConfiguration. To get all of a function's details, including function-level settings, use GetFunction.
138
154
  */
@@ -181,6 +197,14 @@ declare class Lambda extends Service {
181
197
  * Returns the resource-based IAM policy for a function, version, or alias.
182
198
  */
183
199
  getPolicy(callback?: (err: AWSError, data: Lambda.Types.GetPolicyResponse) => void): Request<Lambda.Types.GetPolicyResponse, AWSError>;
200
+ /**
201
+ * Retrieves the provisioned concurrency configuration for a function's alias or version.
202
+ */
203
+ getProvisionedConcurrencyConfig(params: Lambda.Types.GetProvisionedConcurrencyConfigRequest, callback?: (err: AWSError, data: Lambda.Types.GetProvisionedConcurrencyConfigResponse) => void): Request<Lambda.Types.GetProvisionedConcurrencyConfigResponse, AWSError>;
204
+ /**
205
+ * Retrieves the provisioned concurrency configuration for a function's alias or version.
206
+ */
207
+ getProvisionedConcurrencyConfig(callback?: (err: AWSError, data: Lambda.Types.GetProvisionedConcurrencyConfigResponse) => void): Request<Lambda.Types.GetProvisionedConcurrencyConfigResponse, AWSError>;
184
208
  /**
185
209
  * Invokes a Lambda function. You can invoke a function synchronously (and wait for the response), or asynchronously. To invoke a function asynchronously, set InvocationType to Event. For synchronous invocation, details about the function response, including errors, are included in the response body and headers. For either invocation type, you can find more information in the execution log and trace. When an error occurs, your function may be invoked multiple times. Retry behavior varies by error type, client, event source, and invocation type. For example, if you invoke a function asynchronously and it returns an error, Lambda executes the function up to two more times. For more information, see Retry Behavior. For asynchronous invocation, Lambda adds events to a queue before sending them to your function. If your function does not have enough capacity to keep up with the queue, events may be lost. Occasionally, your function may receive the same event multiple times, even if no error occurs. To retain events that were not processed, configure your function with a dead-letter queue. The status code in the API response doesn't reflect function errors. Error codes are reserved for errors that prevent your function from executing, such as permissions errors, limit errors, or issues with your function's code and configuration. For example, Lambda returns TooManyRequestsException if executing the function would cause you to exceed a concurrency limit at either the account level (ConcurrentInvocationLimitExceeded) or function level (ReservedFunctionConcurrentInvocationLimitExceeded). For functions with a long timeout, your client might be disconnected during synchronous invocation while it waits for a response. Configure your HTTP client, SDK, firewall, proxy, or operating system to allow for long connections with timeout or keep-alive settings. This operation requires permission for the lambda:InvokeFunction action.
186
210
  */
@@ -245,6 +269,14 @@ declare class Lambda extends Service {
245
269
  * Lists AWS Lambda layers and shows information about the latest version of each. Specify a runtime identifier to list only layers that indicate that they're compatible with that runtime.
246
270
  */
247
271
  listLayers(callback?: (err: AWSError, data: Lambda.Types.ListLayersResponse) => void): Request<Lambda.Types.ListLayersResponse, AWSError>;
272
+ /**
273
+ * Retrieves a list of provisioned concurrency configurations for a function.
274
+ */
275
+ listProvisionedConcurrencyConfigs(params: Lambda.Types.ListProvisionedConcurrencyConfigsRequest, callback?: (err: AWSError, data: Lambda.Types.ListProvisionedConcurrencyConfigsResponse) => void): Request<Lambda.Types.ListProvisionedConcurrencyConfigsResponse, AWSError>;
276
+ /**
277
+ * Retrieves a list of provisioned concurrency configurations for a function.
278
+ */
279
+ listProvisionedConcurrencyConfigs(callback?: (err: AWSError, data: Lambda.Types.ListProvisionedConcurrencyConfigsResponse) => void): Request<Lambda.Types.ListProvisionedConcurrencyConfigsResponse, AWSError>;
248
280
  /**
249
281
  * Returns a function's tags. You can also view tags with GetFunction.
250
282
  */
@@ -278,11 +310,11 @@ declare class Lambda extends Service {
278
310
  */
279
311
  publishVersion(callback?: (err: AWSError, data: Lambda.Types.FunctionConfiguration) => void): Request<Lambda.Types.FunctionConfiguration, AWSError>;
280
312
  /**
281
- * Sets the maximum number of simultaneous executions for a function, and reserves capacity for that concurrency level. Concurrency settings apply to the function as a whole, including all published versions and the unpublished version. Reserving concurrency both ensures that your function has capacity to process the specified number of events simultaneously, and prevents it from scaling beyond that level. Use GetFunction to see the current setting for a function. Use GetAccountSettings to see your regional concurrency limit. You can reserve concurrency for as many functions as you like, as long as you leave at least 100 simultaneous executions unreserved for functions that aren't configured with a per-function limit. For more information, see Managing Concurrency.
313
+ * Sets the maximum number of simultaneous executions for a function, and reserves capacity for that concurrency level. Concurrency settings apply to the function as a whole, including all published versions and the unpublished version. Reserving concurrency both ensures that your function has capacity to process the specified number of events simultaneously, and prevents it from scaling beyond that level. Use GetFunction to see the current setting for a function. Use GetAccountSettings to see your Regional concurrency limit. You can reserve concurrency for as many functions as you like, as long as you leave at least 100 simultaneous executions unreserved for functions that aren't configured with a per-function limit. For more information, see Managing Concurrency.
282
314
  */
283
315
  putFunctionConcurrency(params: Lambda.Types.PutFunctionConcurrencyRequest, callback?: (err: AWSError, data: Lambda.Types.Concurrency) => void): Request<Lambda.Types.Concurrency, AWSError>;
284
316
  /**
285
- * Sets the maximum number of simultaneous executions for a function, and reserves capacity for that concurrency level. Concurrency settings apply to the function as a whole, including all published versions and the unpublished version. Reserving concurrency both ensures that your function has capacity to process the specified number of events simultaneously, and prevents it from scaling beyond that level. Use GetFunction to see the current setting for a function. Use GetAccountSettings to see your regional concurrency limit. You can reserve concurrency for as many functions as you like, as long as you leave at least 100 simultaneous executions unreserved for functions that aren't configured with a per-function limit. For more information, see Managing Concurrency.
317
+ * Sets the maximum number of simultaneous executions for a function, and reserves capacity for that concurrency level. Concurrency settings apply to the function as a whole, including all published versions and the unpublished version. Reserving concurrency both ensures that your function has capacity to process the specified number of events simultaneously, and prevents it from scaling beyond that level. Use GetFunction to see the current setting for a function. Use GetAccountSettings to see your Regional concurrency limit. You can reserve concurrency for as many functions as you like, as long as you leave at least 100 simultaneous executions unreserved for functions that aren't configured with a per-function limit. For more information, see Managing Concurrency.
286
318
  */
287
319
  putFunctionConcurrency(callback?: (err: AWSError, data: Lambda.Types.Concurrency) => void): Request<Lambda.Types.Concurrency, AWSError>;
288
320
  /**
@@ -293,6 +325,14 @@ declare class Lambda extends Service {
293
325
  * Configures options for asynchronous invocation on a function, version, or alias. By default, Lambda retries an asynchronous invocation twice if the function returns an error. It retains events in a queue for up to six hours. When an event fails all processing attempts or stays in the asynchronous invocation queue for too long, Lambda discards it. To retain discarded events, configure a dead-letter queue with UpdateFunctionConfiguration.
294
326
  */
295
327
  putFunctionEventInvokeConfig(callback?: (err: AWSError, data: Lambda.Types.FunctionEventInvokeConfig) => void): Request<Lambda.Types.FunctionEventInvokeConfig, AWSError>;
328
+ /**
329
+ * Adds a provisioned concurrency configuration to a function's alias or version.
330
+ */
331
+ putProvisionedConcurrencyConfig(params: Lambda.Types.PutProvisionedConcurrencyConfigRequest, callback?: (err: AWSError, data: Lambda.Types.PutProvisionedConcurrencyConfigResponse) => void): Request<Lambda.Types.PutProvisionedConcurrencyConfigResponse, AWSError>;
332
+ /**
333
+ * Adds a provisioned concurrency configuration to a function's alias or version.
334
+ */
335
+ putProvisionedConcurrencyConfig(callback?: (err: AWSError, data: Lambda.Types.PutProvisionedConcurrencyConfigResponse) => void): Request<Lambda.Types.PutProvisionedConcurrencyConfigResponse, AWSError>;
296
336
  /**
297
337
  * Removes a statement from the permissions policy for a version of an AWS Lambda layer. For more information, see AddLayerVersionPermission.
298
338
  */
@@ -754,6 +794,16 @@ declare namespace Lambda {
754
794
  */
755
795
  VersionNumber: LayerVersionNumber;
756
796
  }
797
+ export interface DeleteProvisionedConcurrencyConfigRequest {
798
+ /**
799
+ * The name of the Lambda function. Name formats Function name - my-function. Function ARN - arn:aws:lambda:us-west-2:123456789012:function:my-function. Partial ARN - 123456789012:function:my-function. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
800
+ */
801
+ FunctionName: FunctionName;
802
+ /**
803
+ * The version number or alias name.
804
+ */
805
+ Qualifier: Qualifier;
806
+ }
757
807
  export type Description = string;
758
808
  export type DestinationArn = string;
759
809
  export interface DestinationConfig {
@@ -1046,6 +1096,18 @@ declare namespace Lambda {
1046
1096
  */
1047
1097
  UUID: String;
1048
1098
  }
1099
+ export interface GetFunctionConcurrencyRequest {
1100
+ /**
1101
+ * The name of the Lambda function. Name formats Function name - my-function. Function ARN - arn:aws:lambda:us-west-2:123456789012:function:my-function. Partial ARN - 123456789012:function:my-function. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
1102
+ */
1103
+ FunctionName: FunctionName;
1104
+ }
1105
+ export interface GetFunctionConcurrencyResponse {
1106
+ /**
1107
+ * The number of simultaneous executions that are reserved for the function.
1108
+ */
1109
+ ReservedConcurrentExecutions?: ReservedConcurrentExecutions;
1110
+ }
1049
1111
  export interface GetFunctionConfigurationRequest {
1050
1112
  /**
1051
1113
  * The name of the Lambda function, version, or alias. Name formats Function name - my-function (name-only), my-function:v1 (with alias). Function ARN - arn:aws:lambda:us-west-2:123456789012:function:my-function. Partial ARN - 123456789012:function:my-function. You can append a version number or alias to any of the formats. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
@@ -1184,6 +1246,42 @@ declare namespace Lambda {
1184
1246
  */
1185
1247
  RevisionId?: String;
1186
1248
  }
1249
+ export interface GetProvisionedConcurrencyConfigRequest {
1250
+ /**
1251
+ * The name of the Lambda function. Name formats Function name - my-function. Function ARN - arn:aws:lambda:us-west-2:123456789012:function:my-function. Partial ARN - 123456789012:function:my-function. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
1252
+ */
1253
+ FunctionName: FunctionName;
1254
+ /**
1255
+ * The version number or alias name.
1256
+ */
1257
+ Qualifier: Qualifier;
1258
+ }
1259
+ export interface GetProvisionedConcurrencyConfigResponse {
1260
+ /**
1261
+ * The amount of provisioned concurrency requested.
1262
+ */
1263
+ RequestedProvisionedConcurrentExecutions?: PositiveInteger;
1264
+ /**
1265
+ * The amount of provisioned concurrency available.
1266
+ */
1267
+ AvailableProvisionedConcurrentExecutions?: NonNegativeInteger;
1268
+ /**
1269
+ * The amount of provisioned concurrency allocated.
1270
+ */
1271
+ AllocatedProvisionedConcurrentExecutions?: NonNegativeInteger;
1272
+ /**
1273
+ * The status of the allocation process.
1274
+ */
1275
+ Status?: ProvisionedConcurrencyStatusEnum;
1276
+ /**
1277
+ * For failed allocations, the reason that provisioned concurrency could not be allocated.
1278
+ */
1279
+ StatusReason?: String;
1280
+ /**
1281
+ * The date and time that a user last updated the configuration, in ISO 8601 format.
1282
+ */
1283
+ LastModified?: Timestamp;
1284
+ }
1187
1285
  export type Handler = string;
1188
1286
  export type HttpStatus = number;
1189
1287
  export type Integer = number;
@@ -1509,6 +1607,30 @@ declare namespace Lambda {
1509
1607
  */
1510
1608
  Layers?: LayersList;
1511
1609
  }
1610
+ export interface ListProvisionedConcurrencyConfigsRequest {
1611
+ /**
1612
+ * The name of the Lambda function. Name formats Function name - my-function. Function ARN - arn:aws:lambda:us-west-2:123456789012:function:my-function. Partial ARN - 123456789012:function:my-function. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
1613
+ */
1614
+ FunctionName: FunctionName;
1615
+ /**
1616
+ * Specify the pagination token that's returned by a previous request to retrieve the next page of results.
1617
+ */
1618
+ Marker?: String;
1619
+ /**
1620
+ * Specify a number to limit the number of configurations returned.
1621
+ */
1622
+ MaxItems?: MaxProvisionedConcurrencyConfigListItems;
1623
+ }
1624
+ export interface ListProvisionedConcurrencyConfigsResponse {
1625
+ /**
1626
+ * A list of provisioned concurrency configurations.
1627
+ */
1628
+ ProvisionedConcurrencyConfigs?: ProvisionedConcurrencyConfigList;
1629
+ /**
1630
+ * The pagination token that's included if more results are available.
1631
+ */
1632
+ NextMarker?: String;
1633
+ }
1512
1634
  export interface ListTagsRequest {
1513
1635
  /**
1514
1636
  * The function's Amazon Resource Name (ARN).
@@ -1551,6 +1673,7 @@ declare namespace Lambda {
1551
1673
  export type MaxFunctionEventInvokeConfigListItems = number;
1552
1674
  export type MaxLayerListItems = number;
1553
1675
  export type MaxListItems = number;
1676
+ export type MaxProvisionedConcurrencyConfigListItems = number;
1554
1677
  export type MaximumBatchingWindowInSeconds = number;
1555
1678
  export type MaximumEventAgeInSeconds = number;
1556
1679
  export type MaximumRecordAgeInSeconds = number;
@@ -1560,6 +1683,7 @@ declare namespace Lambda {
1560
1683
  export type NameSpacedFunctionArn = string;
1561
1684
  export type NamespacedFunctionName = string;
1562
1685
  export type NamespacedStatementId = string;
1686
+ export type NonNegativeInteger = number;
1563
1687
  export interface OnFailure {
1564
1688
  /**
1565
1689
  * The Amazon Resource Name (ARN) of the destination resource.
@@ -1574,7 +1698,40 @@ declare namespace Lambda {
1574
1698
  }
1575
1699
  export type OrganizationId = string;
1576
1700
  export type ParallelizationFactor = number;
1701
+ export type PositiveInteger = number;
1577
1702
  export type Principal = string;
1703
+ export type ProvisionedConcurrencyConfigList = ProvisionedConcurrencyConfigListItem[];
1704
+ export interface ProvisionedConcurrencyConfigListItem {
1705
+ /**
1706
+ * The Amazon Resource Name (ARN) of the alias or version.
1707
+ */
1708
+ FunctionArn?: FunctionArn;
1709
+ /**
1710
+ * The amount of provisioned concurrency requested.
1711
+ */
1712
+ RequestedProvisionedConcurrentExecutions?: PositiveInteger;
1713
+ /**
1714
+ * The amount of provisioned concurrency available.
1715
+ */
1716
+ AvailableProvisionedConcurrentExecutions?: NonNegativeInteger;
1717
+ /**
1718
+ * The amount of provisioned concurrency allocated.
1719
+ */
1720
+ AllocatedProvisionedConcurrentExecutions?: NonNegativeInteger;
1721
+ /**
1722
+ * The status of the allocation process.
1723
+ */
1724
+ Status?: ProvisionedConcurrencyStatusEnum;
1725
+ /**
1726
+ * For failed allocations, the reason that provisioned concurrency could not be allocated.
1727
+ */
1728
+ StatusReason?: String;
1729
+ /**
1730
+ * The date and time that a user last updated the configuration, in ISO 8601 format.
1731
+ */
1732
+ LastModified?: Timestamp;
1733
+ }
1734
+ export type ProvisionedConcurrencyStatusEnum = "IN_PROGRESS"|"READY"|"FAILED"|string;
1578
1735
  export interface PublishLayerVersionRequest {
1579
1736
  /**
1580
1737
  * The name or Amazon Resource Name (ARN) of the layer.
@@ -1681,6 +1838,46 @@ declare namespace Lambda {
1681
1838
  */
1682
1839
  DestinationConfig?: DestinationConfig;
1683
1840
  }
1841
+ export interface PutProvisionedConcurrencyConfigRequest {
1842
+ /**
1843
+ * The name of the Lambda function. Name formats Function name - my-function. Function ARN - arn:aws:lambda:us-west-2:123456789012:function:my-function. Partial ARN - 123456789012:function:my-function. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
1844
+ */
1845
+ FunctionName: FunctionName;
1846
+ /**
1847
+ * The version number or alias name.
1848
+ */
1849
+ Qualifier: Qualifier;
1850
+ /**
1851
+ * The amount of provisioned concurrency to allocate for the version or alias.
1852
+ */
1853
+ ProvisionedConcurrentExecutions: PositiveInteger;
1854
+ }
1855
+ export interface PutProvisionedConcurrencyConfigResponse {
1856
+ /**
1857
+ * The amount of provisioned concurrency requested.
1858
+ */
1859
+ RequestedProvisionedConcurrentExecutions?: PositiveInteger;
1860
+ /**
1861
+ * The amount of provisioned concurrency available.
1862
+ */
1863
+ AvailableProvisionedConcurrentExecutions?: NonNegativeInteger;
1864
+ /**
1865
+ * The amount of provisioned concurrency allocated.
1866
+ */
1867
+ AllocatedProvisionedConcurrentExecutions?: NonNegativeInteger;
1868
+ /**
1869
+ * The status of the allocation process.
1870
+ */
1871
+ Status?: ProvisionedConcurrencyStatusEnum;
1872
+ /**
1873
+ * For failed allocations, the reason that provisioned concurrency could not be allocated.
1874
+ */
1875
+ StatusReason?: String;
1876
+ /**
1877
+ * The date and time that a user last updated the configuration, in ISO 8601 format.
1878
+ */
1879
+ LastModified?: Timestamp;
1880
+ }
1684
1881
  export type Qualifier = string;
1685
1882
  export interface RemoveLayerVersionPermissionRequest {
1686
1883
  /**