cdk-comprehend-s3olap 2.0.10 → 2.0.13

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 (37) hide show
  1. package/.jsii +4 -4
  2. package/lib/cdk-comprehend-s3olap.js +2 -2
  3. package/lib/comprehend-lambdas.js +2 -2
  4. package/lib/iam-roles.js +4 -4
  5. package/node_modules/aws-sdk/CHANGELOG.md +9 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/connectcampaigns-2021-01-30.examples.json +5 -0
  8. package/node_modules/aws-sdk/apis/connectcampaigns-2021-01-30.min.json +767 -0
  9. package/node_modules/aws-sdk/apis/connectcampaigns-2021-01-30.paginators.json +10 -0
  10. package/node_modules/aws-sdk/apis/ds-2015-04-16.min.json +78 -0
  11. package/node_modules/aws-sdk/apis/metadata.json +3 -0
  12. package/node_modules/aws-sdk/apis/outposts-2019-12-03.min.json +8 -0
  13. package/node_modules/aws-sdk/clients/all.d.ts +1 -0
  14. package/node_modules/aws-sdk/clients/all.js +2 -1
  15. package/node_modules/aws-sdk/clients/connect.d.ts +1 -1
  16. package/node_modules/aws-sdk/clients/connectcampaigns.d.ts +446 -0
  17. package/node_modules/aws-sdk/clients/connectcampaigns.js +18 -0
  18. package/node_modules/aws-sdk/clients/directoryservice.d.ts +124 -1
  19. package/node_modules/aws-sdk/clients/dynamodb.d.ts +18 -18
  20. package/node_modules/aws-sdk/clients/dynamodbstreams.d.ts +1 -1
  21. package/node_modules/aws-sdk/clients/kafka.d.ts +1 -1
  22. package/node_modules/aws-sdk/clients/outposts.d.ts +11 -0
  23. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
  24. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +43 -6
  25. package/node_modules/aws-sdk/dist/aws-sdk.js +6 -3
  26. package/node_modules/aws-sdk/dist/aws-sdk.min.js +21 -21
  27. package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
  28. package/node_modules/aws-sdk/lib/core.js +1 -1
  29. package/node_modules/aws-sdk/lib/dynamodb/document_client.d.ts +11 -11
  30. package/node_modules/aws-sdk/package.json +1 -1
  31. package/node_modules/esbuild/install.js +5 -22
  32. package/node_modules/esbuild/lib/main.d.ts +2 -0
  33. package/node_modules/esbuild/lib/main.js +21 -28
  34. package/node_modules/esbuild/package.json +21 -21
  35. package/node_modules/esbuild-linux-64/bin/esbuild +0 -0
  36. package/node_modules/esbuild-linux-64/package.json +1 -1
  37. package/package.json +5 -5
@@ -309,6 +309,7 @@ export abstract class ConfigurationServicePlaceholders {
309
309
  emrserverless?: AWS.EMRServerless.Types.ClientConfiguration;
310
310
  m2?: AWS.M2.Types.ClientConfiguration;
311
311
  redshiftserverless?: AWS.RedshiftServerless.Types.ClientConfiguration;
312
+ connectcampaigns?: AWS.ConnectCampaigns.Types.ClientConfiguration;
312
313
  }
313
314
  export interface ConfigurationServiceApiVersions {
314
315
  acm?: AWS.ACM.Types.apiVersion;
@@ -620,4 +621,5 @@ export interface ConfigurationServiceApiVersions {
620
621
  emrserverless?: AWS.EMRServerless.Types.apiVersion;
621
622
  m2?: AWS.M2.Types.apiVersion;
622
623
  redshiftserverless?: AWS.RedshiftServerless.Types.apiVersion;
624
+ connectcampaigns?: AWS.ConnectCampaigns.Types.apiVersion;
623
625
  }
@@ -20,7 +20,7 @@ AWS.util.update(AWS, {
20
20
  /**
21
21
  * @constant
22
22
  */
23
- VERSION: '2.1156.0',
23
+ VERSION: '2.1158.0',
24
24
 
25
25
  /**
26
26
  * @api private
@@ -165,7 +165,7 @@ export namespace DocumentClient {
165
165
  */
166
166
  Value?: AttributeValue;
167
167
  /**
168
- * Specifies how to perform the update. Valid values are PUT (default), DELETE, and ADD. The behavior depends on whether the specified primary key already exists in the table. If an item with the specified Key is found in the table: PUT - Adds the specified attribute to the item. If the attribute already exists, it is replaced by the new value. DELETE - If no value is specified, the attribute and its value are removed from the item. The data type of the specified value must match the existing value's data type. If a set of values is specified, then those values are subtracted from the old set. For example, if the attribute value was the set [a,b,c] and the DELETE action specified [a,c], then the final attribute value would be [b]. Specifying an empty set is an error. ADD - If the attribute does not already exist, then the attribute and its values are added to the item. If the attribute does exist, then the behavior of ADD depends on the data type of the attribute: If the existing attribute is a number, and if Value is also a number, then the Value is mathematically added to the existing attribute. If Value is a negative number, then it is subtracted from the existing attribute. If you use ADD to increment or decrement a number value for an item that doesn't exist before the update, DynamoDB uses 0 as the initial value. In addition, if you use ADD to update an existing item, and intend to increment or decrement an attribute value which does not yet exist, DynamoDB uses 0 as the initial value. For example, suppose that the item you want to update does not yet have an attribute named itemcount, but you decide to ADD the number 3 to this attribute anyway, even though it currently does not exist. DynamoDB will create the itemcount attribute, set its initial value to 0, and finally add 3 to it. The result will be a new itemcount attribute in the item, with a value of 3. If the existing data type is a set, and if the Value is also a set, then the Value is added to the existing set. (This is a set operation, not mathematical addition.) For example, if the attribute value was the set [1,2], and the ADD action specified [3], then the final attribute value would be [1,2,3]. An error occurs if an Add action is specified for a set attribute and the attribute type specified does not match the existing set type. Both sets must have the same primitive data type. For example, if the existing data type is a set of strings, the Value must also be a set of strings. The same holds true for number sets and binary sets. This action is only valid for an existing attribute whose data type is number or is a set. Do not use ADD for any other data types. If no item with the specified Key is found: PUT - DynamoDB creates a new item with the specified primary key, and then adds the attribute. DELETE - Nothing happens; there is no attribute to delete. ADD - DynamoDB creates an item with the supplied primary key and number (or set of numbers) for the attribute value. The only data types allowed are number and number set; no other data types can be specified.
168
+ * Specifies how to perform the update. Valid values are PUT (default), DELETE, and ADD. The behavior depends on whether the specified primary key already exists in the table. If an item with the specified Key is found in the table: PUT - Adds the specified attribute to the item. If the attribute already exists, it is replaced by the new value. DELETE - If no value is specified, the attribute and its value are removed from the item. The data type of the specified value must match the existing value's data type. If a set of values is specified, then those values are subtracted from the old set. For example, if the attribute value was the set [a,b,c] and the DELETE action specified [a,c], then the final attribute value would be [b]. Specifying an empty set is an error. ADD - If the attribute does not already exist, then the attribute and its values are added to the item. If the attribute does exist, then the behavior of ADD depends on the data type of the attribute: If the existing attribute is a number, and if Value is also a number, then the Value is mathematically added to the existing attribute. If Value is a negative number, then it is subtracted from the existing attribute. If you use ADD to increment or decrement a number value for an item that doesn't exist before the update, DynamoDB uses 0 as the initial value. In addition, if you use ADD to update an existing item, and intend to increment or decrement an attribute value which does not yet exist, DynamoDB uses 0 as the initial value. For example, suppose that the item you want to update does not yet have an attribute named itemcount, but you decide to ADD the number 3 to this attribute anyway, even though it currently does not exist. DynamoDB will create the itemcount attribute, set its initial value to 0, and finally add 3 to it. The result will be a new itemcount attribute in the item, with a value of 3. If the existing data type is a set, and if the Value is also a set, then the Value is added to the existing set. (This is a set operation, not mathematical addition.) For example, if the attribute value was the set [1,2], and the ADD action specified [3], then the final attribute value would be [1,2,3]. An error occurs if an Add action is specified for a set attribute and the attribute type specified does not match the existing set type. Both sets must have the same primitive data type. For example, if the existing data type is a set of strings, the Value must also be a set of strings. The same holds true for number sets and binary sets. This action is only valid for an existing attribute whose data type is number or is a set. Do not use ADD for any other data types. If no item with the specified Key is found: PUT - DynamoDB creates a new item with the specified primary key, and then adds the attribute. DELETE - Nothing happens; there is no attribute to delete. ADD - DynamoDB creates a new item with the supplied primary key and number (or set) for the attribute value. The only data types allowed are number, number set, string set or binary set.
169
169
  */
170
170
  Action?: AttributeAction;
171
171
  }
@@ -299,7 +299,7 @@ export namespace DocumentClient {
299
299
  */
300
300
  BackupName: BackupName;
301
301
  /**
302
- * Size of the backup in bytes.
302
+ * Size of the backup in bytes. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value.
303
303
  */
304
304
  BackupSizeBytes?: BackupSizeBytes;
305
305
  /**
@@ -800,7 +800,7 @@ export namespace DocumentClient {
800
800
  */
801
801
  ConditionalOperator?: ConditionalOperator;
802
802
  /**
803
- * Use ReturnValues if you want to get the item attributes as they appeared before they were deleted. For DeleteItem, the valid values are: NONE - If ReturnValues is not specified, or if its value is NONE, then nothing is returned. (This setting is the default for ReturnValues.) ALL_OLD - The content of the old item is returned. The ReturnValues parameter is used by several DynamoDB operations; however, DeleteItem does not recognize any values other than NONE or ALL_OLD.
803
+ * Use ReturnValues if you want to get the item attributes as they appeared before they were deleted. For DeleteItem, the valid values are: NONE - If ReturnValues is not specified, or if its value is NONE, then nothing is returned. (This setting is the default for ReturnValues.) ALL_OLD - The content of the old item is returned. There is no additional cost associated with requesting a return value aside from the small network and processing overhead of receiving a larger response. No read capacity units are consumed. The ReturnValues parameter is used by several DynamoDB operations; however, DeleteItem does not recognize any values other than NONE or ALL_OLD.
804
804
  */
805
805
  ReturnValues?: ReturnValue;
806
806
  ReturnConsumedCapacity?: ReturnConsumedCapacity;
@@ -1243,7 +1243,7 @@ export namespace DocumentClient {
1243
1243
  */
1244
1244
  TableArn: TableArn;
1245
1245
  /**
1246
- * Time in the past from which to export table data. The table export will be a snapshot of the table's state at this point in time.
1246
+ * Time in the past from which to export table data, counted in seconds from the start of the Unix epoch. The table export will be a snapshot of the table's state at this point in time.
1247
1247
  */
1248
1248
  ExportTime?: ExportTime;
1249
1249
  /**
@@ -1636,7 +1636,7 @@ export namespace DocumentClient {
1636
1636
  */
1637
1637
  ExclusiveStartBackupArn?: BackupArn;
1638
1638
  /**
1639
- * The backups from the table specified by BackupType are listed. Where BackupType can be: USER - On-demand backup created by you. SYSTEM - On-demand backup automatically created by DynamoDB. ALL - All types of on-demand backups (USER and SYSTEM).
1639
+ * The backups from the table specified by BackupType are listed. Where BackupType can be: USER - On-demand backup created by you. (The default setting if no other backup types are specified.) SYSTEM - On-demand backup automatically created by DynamoDB. ALL - All types of on-demand backups (USER and SYSTEM).
1640
1640
  */
1641
1641
  BackupType?: BackupTypeFilter;
1642
1642
  }
@@ -1876,7 +1876,7 @@ export namespace DocumentClient {
1876
1876
  */
1877
1877
  ProjectionType?: ProjectionType;
1878
1878
  /**
1879
- * Represents the non-key attribute names which will be projected into the index. For local secondary indexes, the total count of NonKeyAttributes summed across all of the local secondary indexes, must not exceed 20. If you project the same attribute into two different indexes, this counts as two distinct attributes when determining the total.
1879
+ * Represents the non-key attribute names which will be projected into the index. For local secondary indexes, the total count of NonKeyAttributes summed across all of the local secondary indexes, must not exceed 100. If you project the same attribute into two different indexes, this counts as two distinct attributes when determining the total.
1880
1880
  */
1881
1881
  NonKeyAttributes?: NonKeyAttributeNameList;
1882
1882
  }
@@ -1960,7 +1960,7 @@ export namespace DocumentClient {
1960
1960
  */
1961
1961
  Expected?: ExpectedAttributeMap;
1962
1962
  /**
1963
- * Use ReturnValues if you want to get the item attributes as they appeared before they were updated with the PutItem request. For PutItem, the valid values are: NONE - If ReturnValues is not specified, or if its value is NONE, then nothing is returned. (This setting is the default for ReturnValues.) ALL_OLD - If PutItem overwrote an attribute name-value pair, then the content of the old item is returned. The values returned are strongly consistent. The ReturnValues parameter is used by several DynamoDB operations; however, PutItem does not recognize any values other than NONE or ALL_OLD.
1963
+ * Use ReturnValues if you want to get the item attributes as they appeared before they were updated with the PutItem request. For PutItem, the valid values are: NONE - If ReturnValues is not specified, or if its value is NONE, then nothing is returned. (This setting is the default for ReturnValues.) ALL_OLD - If PutItem overwrote an attribute name-value pair, then the content of the old item is returned. The values returned are strongly consistent. There is no additional cost associated with requesting a return value aside from the small network and processing overhead of receiving a larger response. No read capacity units are consumed. The ReturnValues parameter is used by several DynamoDB operations; however, PutItem does not recognize any values other than NONE or ALL_OLD.
1964
1964
  */
1965
1965
  ReturnValues?: ReturnValue;
1966
1966
  ReturnConsumedCapacity?: ReturnConsumedCapacity;
@@ -2016,7 +2016,7 @@ export namespace DocumentClient {
2016
2016
  */
2017
2017
  IndexName?: IndexName;
2018
2018
  /**
2019
- * The attributes to be returned in the result. You can retrieve all item attributes, specific item attributes, the count of matching items, or in the case of an index, some or all of the attributes projected into the index. ALL_ATTRIBUTES - Returns all of the item attributes from the specified table or index. If you query a local secondary index, then for each matching item in the index, DynamoDB fetches the entire item from the parent table. If the index is configured to project all item attributes, then all of the data can be obtained from the local secondary index, and no fetching is required. ALL_PROJECTED_ATTRIBUTES - Allowed only when querying an index. Retrieves all attributes that have been projected into the index. If the index is configured to project all attributes, this return value is equivalent to specifying ALL_ATTRIBUTES. COUNT - Returns the number of matching items, rather than the matching items themselves. SPECIFIC_ATTRIBUTES - Returns only the attributes listed in AttributesToGet. This return value is equivalent to specifying AttributesToGet without specifying any value for Select. If you query or scan a local secondary index and request only attributes that are projected into that index, the operation will read only the index and not the table. If any of the requested attributes are not projected into the local secondary index, DynamoDB fetches each of these attributes from the parent table. This extra fetching incurs additional throughput cost and latency. If you query or scan a global secondary index, you can only request attributes that are projected into the index. Global secondary index queries cannot fetch attributes from the parent table. If neither Select nor AttributesToGet are specified, DynamoDB defaults to ALL_ATTRIBUTES when accessing a table, and ALL_PROJECTED_ATTRIBUTES when accessing an index. You cannot use both Select and AttributesToGet together in a single request, unless the value for Select is SPECIFIC_ATTRIBUTES. (This usage is equivalent to specifying AttributesToGet without any value for Select.) If you use the ProjectionExpression parameter, then the value for Select can only be SPECIFIC_ATTRIBUTES. Any other value for Select will return an error.
2019
+ * The attributes to be returned in the result. You can retrieve all item attributes, specific item attributes, the count of matching items, or in the case of an index, some or all of the attributes projected into the index. ALL_ATTRIBUTES - Returns all of the item attributes from the specified table or index. If you query a local secondary index, then for each matching item in the index, DynamoDB fetches the entire item from the parent table. If the index is configured to project all item attributes, then all of the data can be obtained from the local secondary index, and no fetching is required. ALL_PROJECTED_ATTRIBUTES - Allowed only when querying an index. Retrieves all attributes that have been projected into the index. If the index is configured to project all attributes, this return value is equivalent to specifying ALL_ATTRIBUTES. COUNT - Returns the number of matching items, rather than the matching items themselves. SPECIFIC_ATTRIBUTES - Returns only the attributes listed in ProjectionExpression. This return value is equivalent to specifying ProjectionExpression without specifying any value for Select. If you query or scan a local secondary index and request only attributes that are projected into that index, the operation will read only the index and not the table. If any of the requested attributes are not projected into the local secondary index, DynamoDB fetches each of these attributes from the parent table. This extra fetching incurs additional throughput cost and latency. If you query or scan a global secondary index, you can only request attributes that are projected into the index. Global secondary index queries cannot fetch attributes from the parent table. If neither Select nor ProjectionExpression are specified, DynamoDB defaults to ALL_ATTRIBUTES when accessing a table, and ALL_PROJECTED_ATTRIBUTES when accessing an index. You cannot use both Select and ProjectionExpression together in a single request, unless the value for Select is SPECIFIC_ATTRIBUTES. (This usage is equivalent to specifying ProjectionExpression without any value for Select.) If you use the ProjectionExpression parameter, then the value for Select can only be SPECIFIC_ATTRIBUTES. Any other value for Select will return an error.
2020
2020
  */
2021
2021
  Select?: Select;
2022
2022
  /**
@@ -2508,7 +2508,7 @@ export namespace DocumentClient {
2508
2508
  */
2509
2509
  Limit?: PositiveIntegerObject;
2510
2510
  /**
2511
- * The attributes to be returned in the result. You can retrieve all item attributes, specific item attributes, the count of matching items, or in the case of an index, some or all of the attributes projected into the index. ALL_ATTRIBUTES - Returns all of the item attributes from the specified table or index. If you query a local secondary index, then for each matching item in the index, DynamoDB fetches the entire item from the parent table. If the index is configured to project all item attributes, then all of the data can be obtained from the local secondary index, and no fetching is required. ALL_PROJECTED_ATTRIBUTES - Allowed only when querying an index. Retrieves all attributes that have been projected into the index. If the index is configured to project all attributes, this return value is equivalent to specifying ALL_ATTRIBUTES. COUNT - Returns the number of matching items, rather than the matching items themselves. SPECIFIC_ATTRIBUTES - Returns only the attributes listed in AttributesToGet. This return value is equivalent to specifying AttributesToGet without specifying any value for Select. If you query or scan a local secondary index and request only attributes that are projected into that index, the operation reads only the index and not the table. If any of the requested attributes are not projected into the local secondary index, DynamoDB fetches each of these attributes from the parent table. This extra fetching incurs additional throughput cost and latency. If you query or scan a global secondary index, you can only request attributes that are projected into the index. Global secondary index queries cannot fetch attributes from the parent table. If neither Select nor AttributesToGet are specified, DynamoDB defaults to ALL_ATTRIBUTES when accessing a table, and ALL_PROJECTED_ATTRIBUTES when accessing an index. You cannot use both Select and AttributesToGet together in a single request, unless the value for Select is SPECIFIC_ATTRIBUTES. (This usage is equivalent to specifying AttributesToGet without any value for Select.) If you use the ProjectionExpression parameter, then the value for Select can only be SPECIFIC_ATTRIBUTES. Any other value for Select will return an error.
2511
+ * The attributes to be returned in the result. You can retrieve all item attributes, specific item attributes, the count of matching items, or in the case of an index, some or all of the attributes projected into the index. ALL_ATTRIBUTES - Returns all of the item attributes from the specified table or index. If you query a local secondary index, then for each matching item in the index, DynamoDB fetches the entire item from the parent table. If the index is configured to project all item attributes, then all of the data can be obtained from the local secondary index, and no fetching is required. ALL_PROJECTED_ATTRIBUTES - Allowed only when querying an index. Retrieves all attributes that have been projected into the index. If the index is configured to project all attributes, this return value is equivalent to specifying ALL_ATTRIBUTES. COUNT - Returns the number of matching items, rather than the matching items themselves. SPECIFIC_ATTRIBUTES - Returns only the attributes listed in ProjectionExpression. This return value is equivalent to specifying ProjectionExpression without specifying any value for Select. If you query or scan a local secondary index and request only attributes that are projected into that index, the operation reads only the index and not the table. If any of the requested attributes are not projected into the local secondary index, DynamoDB fetches each of these attributes from the parent table. This extra fetching incurs additional throughput cost and latency. If you query or scan a global secondary index, you can only request attributes that are projected into the index. Global secondary index queries cannot fetch attributes from the parent table. If neither Select nor ProjectionExpression are specified, DynamoDB defaults to ALL_ATTRIBUTES when accessing a table, and ALL_PROJECTED_ATTRIBUTES when accessing an index. You cannot use both Select and ProjectionExpression together in a single request, unless the value for Select is SPECIFIC_ATTRIBUTES. (This usage is equivalent to specifying ProjectionExpression without any value for Select.) If you use the ProjectionExpression parameter, then the value for Select can only be SPECIFIC_ATTRIBUTES. Any other value for Select will return an error.
2512
2512
  */
2513
2513
  Select?: Select;
2514
2514
  /**
@@ -2728,11 +2728,11 @@ export namespace DocumentClient {
2728
2728
  */
2729
2729
  BillingModeSummary?: BillingModeSummary;
2730
2730
  /**
2731
- * Represents one or more local secondary indexes on the table. Each index is scoped to a given partition key value. Tables with one or more local secondary indexes are subject to an item collection size limit, where the amount of data within a given item collection cannot exceed 10 GB. Each element is composed of: IndexName - The name of the local secondary index. KeySchema - Specifies the complete index key schema. The attribute names in the key schema must be between 1 and 255 characters (inclusive). The key schema must begin with the same partition key as the table. Projection - Specifies attributes that are copied (projected) from the table into the index. These are in addition to the primary key attributes and index key attributes, which are automatically projected. Each attribute specification is composed of: ProjectionType - One of the following: KEYS_ONLY - Only the index and primary keys are projected into the index. INCLUDE - Only the specified table attributes are projected into the index. The list of projected attributes is in NonKeyAttributes. ALL - All of the table attributes are projected into the index. NonKeyAttributes - A list of one or more non-key attribute names that are projected into the secondary index. The total count of attributes provided in NonKeyAttributes, summed across all of the secondary indexes, must not exceed 20. If you project the same attribute into two different indexes, this counts as two distinct attributes when determining the total. IndexSizeBytes - Represents the total size of the index, in bytes. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value. ItemCount - Represents the number of items in the index. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value. If the table is in the DELETING state, no information about indexes will be returned.
2731
+ * Represents one or more local secondary indexes on the table. Each index is scoped to a given partition key value. Tables with one or more local secondary indexes are subject to an item collection size limit, where the amount of data within a given item collection cannot exceed 10 GB. Each element is composed of: IndexName - The name of the local secondary index. KeySchema - Specifies the complete index key schema. The attribute names in the key schema must be between 1 and 255 characters (inclusive). The key schema must begin with the same partition key as the table. Projection - Specifies attributes that are copied (projected) from the table into the index. These are in addition to the primary key attributes and index key attributes, which are automatically projected. Each attribute specification is composed of: ProjectionType - One of the following: KEYS_ONLY - Only the index and primary keys are projected into the index. INCLUDE - Only the specified table attributes are projected into the index. The list of projected attributes is in NonKeyAttributes. ALL - All of the table attributes are projected into the index. NonKeyAttributes - A list of one or more non-key attribute names that are projected into the secondary index. The total count of attributes provided in NonKeyAttributes, summed across all of the secondary indexes, must not exceed 100. If you project the same attribute into two different indexes, this counts as two distinct attributes when determining the total. IndexSizeBytes - Represents the total size of the index, in bytes. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value. ItemCount - Represents the number of items in the index. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value. If the table is in the DELETING state, no information about indexes will be returned.
2732
2732
  */
2733
2733
  LocalSecondaryIndexes?: LocalSecondaryIndexDescriptionList;
2734
2734
  /**
2735
- * The global secondary indexes, if any, on the table. Each index is scoped to a given partition key value. Each element is composed of: Backfilling - If true, then the index is currently in the backfilling phase. Backfilling occurs only when a new global secondary index is added to the table. It is the process by which DynamoDB populates the new index with data from the table. (This attribute does not appear for indexes that were created during a CreateTable operation.) You can delete an index that is being created during the Backfilling phase when IndexStatus is set to CREATING and Backfilling is true. You can't delete the index that is being created when IndexStatus is set to CREATING and Backfilling is false. (This attribute does not appear for indexes that were created during a CreateTable operation.) IndexName - The name of the global secondary index. IndexSizeBytes - The total size of the global secondary index, in bytes. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value. IndexStatus - The current status of the global secondary index: CREATING - The index is being created. UPDATING - The index is being updated. DELETING - The index is being deleted. ACTIVE - The index is ready for use. ItemCount - The number of items in the global secondary index. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value. KeySchema - Specifies the complete index key schema. The attribute names in the key schema must be between 1 and 255 characters (inclusive). The key schema must begin with the same partition key as the table. Projection - Specifies attributes that are copied (projected) from the table into the index. These are in addition to the primary key attributes and index key attributes, which are automatically projected. Each attribute specification is composed of: ProjectionType - One of the following: KEYS_ONLY - Only the index and primary keys are projected into the index. INCLUDE - In addition to the attributes described in KEYS_ONLY, the secondary index will include other non-key attributes that you specify. ALL - All of the table attributes are projected into the index. NonKeyAttributes - A list of one or more non-key attribute names that are projected into the secondary index. The total count of attributes provided in NonKeyAttributes, summed across all of the secondary indexes, must not exceed 20. If you project the same attribute into two different indexes, this counts as two distinct attributes when determining the total. ProvisionedThroughput - The provisioned throughput settings for the global secondary index, consisting of read and write capacity units, along with data about increases and decreases. If the table is in the DELETING state, no information about indexes will be returned.
2735
+ * The global secondary indexes, if any, on the table. Each index is scoped to a given partition key value. Each element is composed of: Backfilling - If true, then the index is currently in the backfilling phase. Backfilling occurs only when a new global secondary index is added to the table. It is the process by which DynamoDB populates the new index with data from the table. (This attribute does not appear for indexes that were created during a CreateTable operation.) You can delete an index that is being created during the Backfilling phase when IndexStatus is set to CREATING and Backfilling is true. You can't delete the index that is being created when IndexStatus is set to CREATING and Backfilling is false. (This attribute does not appear for indexes that were created during a CreateTable operation.) IndexName - The name of the global secondary index. IndexSizeBytes - The total size of the global secondary index, in bytes. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value. IndexStatus - The current status of the global secondary index: CREATING - The index is being created. UPDATING - The index is being updated. DELETING - The index is being deleted. ACTIVE - The index is ready for use. ItemCount - The number of items in the global secondary index. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value. KeySchema - Specifies the complete index key schema. The attribute names in the key schema must be between 1 and 255 characters (inclusive). The key schema must begin with the same partition key as the table. Projection - Specifies attributes that are copied (projected) from the table into the index. These are in addition to the primary key attributes and index key attributes, which are automatically projected. Each attribute specification is composed of: ProjectionType - One of the following: KEYS_ONLY - Only the index and primary keys are projected into the index. INCLUDE - In addition to the attributes described in KEYS_ONLY, the secondary index will include other non-key attributes that you specify. ALL - All of the table attributes are projected into the index. NonKeyAttributes - A list of one or more non-key attribute names that are projected into the secondary index. The total count of attributes provided in NonKeyAttributes, summed across all of the secondary indexes, must not exceed 100. If you project the same attribute into two different indexes, this counts as two distinct attributes when determining the total. ProvisionedThroughput - The provisioned throughput settings for the global secondary index, consisting of read and write capacity units, along with data about increases and decreases. If the table is in the DELETING state, no information about indexes will be returned.
2736
2736
  */
2737
2737
  GlobalSecondaryIndexes?: GlobalSecondaryIndexDescriptionList;
2738
2738
  /**
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "aws-sdk",
3
3
  "description": "AWS SDK for JavaScript",
4
- "version": "2.1156.0",
4
+ "version": "2.1158.0",
5
5
  "author": {
6
6
  "name": "Amazon Web Services",
7
7
  "email": "",
@@ -1,27 +1,10 @@
1
1
  "use strict";
2
2
  var __create = Object.create;
3
3
  var __defProp = Object.defineProperty;
4
- var __defProps = Object.defineProperties;
5
4
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
6
- var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
7
5
  var __getOwnPropNames = Object.getOwnPropertyNames;
8
- var __getOwnPropSymbols = Object.getOwnPropertySymbols;
9
6
  var __getProtoOf = Object.getPrototypeOf;
10
7
  var __hasOwnProp = Object.prototype.hasOwnProperty;
11
- var __propIsEnum = Object.prototype.propertyIsEnumerable;
12
- var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
13
- var __spreadValues = (a, b) => {
14
- for (var prop in b || (b = {}))
15
- if (__hasOwnProp.call(b, prop))
16
- __defNormalProp(a, prop, b[prop]);
17
- if (__getOwnPropSymbols)
18
- for (var prop of __getOwnPropSymbols(b)) {
19
- if (__propIsEnum.call(b, prop))
20
- __defNormalProp(a, prop, b[prop]);
21
- }
22
- return a;
23
- };
24
- var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
25
8
  var __copyProps = (to, from, except, desc) => {
26
9
  if (from && typeof from === "object" || typeof from === "function") {
27
10
  for (let key of __getOwnPropNames(from))
@@ -102,8 +85,8 @@ function validateBinaryVersion(...command) {
102
85
  const stdout = child_process.execFileSync(command.shift(), command, {
103
86
  stdio: "pipe"
104
87
  }).toString().trim();
105
- if (stdout !== "0.14.45") {
106
- throw new Error(`Expected ${JSON.stringify("0.14.45")} but got ${JSON.stringify(stdout)}`);
88
+ if (stdout !== "0.14.47") {
89
+ throw new Error(`Expected ${JSON.stringify("0.14.47")} but got ${JSON.stringify(stdout)}`);
107
90
  }
108
91
  }
109
92
  function isYarn() {
@@ -148,13 +131,13 @@ function extractFileFromTarGzip(buffer, subpath) {
148
131
  throw new Error(`Could not find ${JSON.stringify(subpath)} in archive`);
149
132
  }
150
133
  function installUsingNPM(pkg, subpath, binPath) {
151
- const env = __spreadProps(__spreadValues({}, process.env), { npm_config_global: void 0 });
134
+ const env = { ...process.env, npm_config_global: void 0 };
152
135
  const esbuildLibDir = path2.dirname(require.resolve("esbuild"));
153
136
  const installDir = path2.join(esbuildLibDir, "npm-install");
154
137
  fs2.mkdirSync(installDir);
155
138
  try {
156
139
  fs2.writeFileSync(path2.join(installDir, "package.json"), "{}");
157
- child_process.execSync(`npm install --loglevel=error --prefer-offline --no-audit --progress=false ${pkg}@${"0.14.45"}`, { cwd: installDir, stdio: "pipe", env });
140
+ child_process.execSync(`npm install --loglevel=error --prefer-offline --no-audit --progress=false ${pkg}@${"0.14.47"}`, { cwd: installDir, stdio: "pipe", env });
158
141
  const installedBinPath = path2.join(installDir, "node_modules", pkg, subpath);
159
142
  fs2.renameSync(installedBinPath, binPath);
160
143
  } finally {
@@ -203,7 +186,7 @@ function maybeOptimizePackage(binPath) {
203
186
  }
204
187
  }
205
188
  async function downloadDirectlyFromNPM(pkg, subpath, binPath) {
206
- const url = `https://registry.npmjs.org/${pkg}/-/${pkg}-${"0.14.45"}.tgz`;
189
+ const url = `https://registry.npmjs.org/${pkg}/-/${pkg}-${"0.14.47"}.tgz`;
207
190
  console.error(`[esbuild] Trying to download ${JSON.stringify(url)}`);
208
191
  try {
209
192
  fs2.writeFileSync(binPath, extractFileFromTarGzip(await fetch(url), subpath));
@@ -21,6 +21,8 @@ interface CommonOptions {
21
21
  globalName?: string;
22
22
  /** Documentation: https://esbuild.github.io/api/#target */
23
23
  target?: string | string[];
24
+ /** Documentation: https://esbuild.github.io/api/#supported */
25
+ supported?: Record<string, boolean>;
24
26
 
25
27
  /** Documentation: https://esbuild.github.io/api/#mangle-props */
26
28
  mangleProps?: RegExp;
@@ -1,27 +1,10 @@
1
1
  "use strict";
2
2
  var __create = Object.create;
3
3
  var __defProp = Object.defineProperty;
4
- var __defProps = Object.defineProperties;
5
4
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
6
- var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
7
5
  var __getOwnPropNames = Object.getOwnPropertyNames;
8
- var __getOwnPropSymbols = Object.getOwnPropertySymbols;
9
6
  var __getProtoOf = Object.getPrototypeOf;
10
7
  var __hasOwnProp = Object.prototype.hasOwnProperty;
11
- var __propIsEnum = Object.prototype.propertyIsEnumerable;
12
- var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
13
- var __spreadValues = (a, b) => {
14
- for (var prop in b || (b = {}))
15
- if (__hasOwnProp.call(b, prop))
16
- __defNormalProp(a, prop, b[prop]);
17
- if (__getOwnPropSymbols)
18
- for (var prop of __getOwnPropSymbols(b)) {
19
- if (__propIsEnum.call(b, prop))
20
- __defNormalProp(a, prop, b[prop]);
21
- }
22
- return a;
23
- };
24
- var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
25
8
  var __export = (target, all) => {
26
9
  for (var name in all)
27
10
  __defProp(target, name, { get: all[name], enumerable: true });
@@ -320,6 +303,7 @@ function pushCommonFlags(flags, options, keys) {
320
303
  let jsxFragment = getFlag(options, keys, "jsxFragment", mustBeString);
321
304
  let define = getFlag(options, keys, "define", mustBeObject);
322
305
  let logOverride = getFlag(options, keys, "logOverride", mustBeObject);
306
+ let supported = getFlag(options, keys, "supported", mustBeObject);
323
307
  let pure = getFlag(options, keys, "pure", mustBeArray);
324
308
  let keepNames = getFlag(options, keys, "keepNames", mustBeBoolean);
325
309
  if (legalComments)
@@ -381,6 +365,13 @@ function pushCommonFlags(flags, options, keys) {
381
365
  flags.push(`--log-override:${key}=${logOverride[key]}`);
382
366
  }
383
367
  }
368
+ if (supported) {
369
+ for (let key in supported) {
370
+ if (key.indexOf("=") >= 0)
371
+ throw new Error(`Invalid supported: ${key}`);
372
+ flags.push(`--supported:${key}=${supported[key]}`);
373
+ }
374
+ }
384
375
  if (pure)
385
376
  for (let fn of pure)
386
377
  flags.push(`--pure:${fn}`);
@@ -755,8 +746,8 @@ function createChannel(streamIn) {
755
746
  if (isFirstPacket) {
756
747
  isFirstPacket = false;
757
748
  let binaryVersion = String.fromCharCode(...bytes);
758
- if (binaryVersion !== "0.14.45") {
759
- throw new Error(`Cannot start service: Host version "${"0.14.45"}" does not match binary version ${JSON.stringify(binaryVersion)}`);
749
+ if (binaryVersion !== "0.14.47") {
750
+ throw new Error(`Cannot start service: Host version "${"0.14.47"}" does not match binary version ${JSON.stringify(binaryVersion)}`);
760
751
  }
761
752
  return;
762
753
  }
@@ -1148,14 +1139,15 @@ function createChannel(streamIn) {
1148
1139
  handleError(result.error, result.pluginName);
1149
1140
  } else {
1150
1141
  try {
1151
- buildOrServeContinue(__spreadProps(__spreadValues({}, args), {
1142
+ buildOrServeContinue({
1143
+ ...args,
1152
1144
  key,
1153
1145
  details,
1154
1146
  logPluginError,
1155
1147
  requestPlugins: result.requestPlugins,
1156
1148
  runOnEndCallbacks: result.runOnEndCallbacks,
1157
1149
  pluginRefs: result.pluginRefs
1158
- }));
1150
+ });
1159
1151
  } catch (e) {
1160
1152
  handleError(e, "");
1161
1153
  }
@@ -1163,14 +1155,15 @@ function createChannel(streamIn) {
1163
1155
  }, (e) => handleError(e, ""));
1164
1156
  } else {
1165
1157
  try {
1166
- buildOrServeContinue(__spreadProps(__spreadValues({}, args), {
1158
+ buildOrServeContinue({
1159
+ ...args,
1167
1160
  key,
1168
1161
  details,
1169
1162
  logPluginError,
1170
1163
  requestPlugins: null,
1171
1164
  runOnEndCallbacks: (result, logPluginError2, done) => done(),
1172
1165
  pluginRefs: null
1173
- }));
1166
+ });
1174
1167
  } catch (e) {
1175
1168
  handleError(e, "");
1176
1169
  }
@@ -1870,7 +1863,7 @@ if (process.env.ESBUILD_WORKER_THREADS !== "0") {
1870
1863
  }
1871
1864
  }
1872
1865
  var _a;
1873
- var isInternalWorkerThread = ((_a = worker_threads == null ? void 0 : worker_threads.workerData) == null ? void 0 : _a.esbuildVersion) === "0.14.45";
1866
+ var isInternalWorkerThread = ((_a = worker_threads == null ? void 0 : worker_threads.workerData) == null ? void 0 : _a.esbuildVersion) === "0.14.47";
1874
1867
  var esbuildCommandAndArgs = () => {
1875
1868
  if ((!ESBUILD_BINARY_PATH || false) && (path2.basename(__filename) !== "main.js" || path2.basename(__dirname) !== "lib")) {
1876
1869
  throw new Error(`The esbuild JavaScript API cannot be bundled. Please mark the "esbuild" package as external so it's not included in the bundle.
@@ -1934,7 +1927,7 @@ var fsAsync = {
1934
1927
  }
1935
1928
  }
1936
1929
  };
1937
- var version = "0.14.45";
1930
+ var version = "0.14.47";
1938
1931
  var build = (options) => ensureServiceIsRunning().build(options);
1939
1932
  var serve = (serveOptions, buildOptions) => ensureServiceIsRunning().serve(serveOptions, buildOptions);
1940
1933
  var transform = (input, options) => ensureServiceIsRunning().transform(input, options);
@@ -2045,7 +2038,7 @@ var ensureServiceIsRunning = () => {
2045
2038
  if (longLivedService)
2046
2039
  return longLivedService;
2047
2040
  let [command, args] = esbuildCommandAndArgs();
2048
- let child = child_process.spawn(command, args.concat(`--service=${"0.14.45"}`, "--ping"), {
2041
+ let child = child_process.spawn(command, args.concat(`--service=${"0.14.47"}`, "--ping"), {
2049
2042
  windowsHide: true,
2050
2043
  stdio: ["pipe", "pipe", "inherit"],
2051
2044
  cwd: defaultWD
@@ -2159,7 +2152,7 @@ var runServiceSync = (callback) => {
2159
2152
  esbuild: node_exports
2160
2153
  });
2161
2154
  callback(service);
2162
- let stdout = child_process.execFileSync(command, args.concat(`--service=${"0.14.45"}`), {
2155
+ let stdout = child_process.execFileSync(command, args.concat(`--service=${"0.14.47"}`), {
2163
2156
  cwd: defaultWD,
2164
2157
  windowsHide: true,
2165
2158
  input: stdin,
@@ -2175,7 +2168,7 @@ var workerThreadService = null;
2175
2168
  var startWorkerThreadService = (worker_threads2) => {
2176
2169
  let { port1: mainPort, port2: workerPort } = new worker_threads2.MessageChannel();
2177
2170
  let worker = new worker_threads2.Worker(__filename, {
2178
- workerData: { workerPort, defaultWD, esbuildVersion: "0.14.45" },
2171
+ workerData: { workerPort, defaultWD, esbuildVersion: "0.14.47" },
2179
2172
  transferList: [workerPort],
2180
2173
  execArgv: []
2181
2174
  });
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "esbuild",
3
- "version": "0.14.45",
3
+ "version": "0.14.47",
4
4
  "description": "An extremely fast JavaScript and CSS bundler and minifier.",
5
5
  "repository": "https://github.com/evanw/esbuild",
6
6
  "scripts": {
@@ -15,26 +15,26 @@
15
15
  "esbuild": "bin/esbuild"
16
16
  },
17
17
  "optionalDependencies": {
18
- "esbuild-android-64": "0.14.45",
19
- "esbuild-android-arm64": "0.14.45",
20
- "esbuild-darwin-64": "0.14.45",
21
- "esbuild-darwin-arm64": "0.14.45",
22
- "esbuild-freebsd-64": "0.14.45",
23
- "esbuild-freebsd-arm64": "0.14.45",
24
- "esbuild-linux-32": "0.14.45",
25
- "esbuild-linux-64": "0.14.45",
26
- "esbuild-linux-arm": "0.14.45",
27
- "esbuild-linux-arm64": "0.14.45",
28
- "esbuild-linux-mips64le": "0.14.45",
29
- "esbuild-linux-ppc64le": "0.14.45",
30
- "esbuild-linux-riscv64": "0.14.45",
31
- "esbuild-linux-s390x": "0.14.45",
32
- "esbuild-netbsd-64": "0.14.45",
33
- "esbuild-openbsd-64": "0.14.45",
34
- "esbuild-sunos-64": "0.14.45",
35
- "esbuild-windows-32": "0.14.45",
36
- "esbuild-windows-64": "0.14.45",
37
- "esbuild-windows-arm64": "0.14.45"
18
+ "esbuild-android-64": "0.14.47",
19
+ "esbuild-android-arm64": "0.14.47",
20
+ "esbuild-darwin-64": "0.14.47",
21
+ "esbuild-darwin-arm64": "0.14.47",
22
+ "esbuild-freebsd-64": "0.14.47",
23
+ "esbuild-freebsd-arm64": "0.14.47",
24
+ "esbuild-linux-32": "0.14.47",
25
+ "esbuild-linux-64": "0.14.47",
26
+ "esbuild-linux-arm": "0.14.47",
27
+ "esbuild-linux-arm64": "0.14.47",
28
+ "esbuild-linux-mips64le": "0.14.47",
29
+ "esbuild-linux-ppc64le": "0.14.47",
30
+ "esbuild-linux-riscv64": "0.14.47",
31
+ "esbuild-linux-s390x": "0.14.47",
32
+ "esbuild-netbsd-64": "0.14.47",
33
+ "esbuild-openbsd-64": "0.14.47",
34
+ "esbuild-sunos-64": "0.14.47",
35
+ "esbuild-windows-32": "0.14.47",
36
+ "esbuild-windows-64": "0.14.47",
37
+ "esbuild-windows-arm64": "0.14.47"
38
38
  },
39
39
  "license": "MIT"
40
40
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "esbuild-linux-64",
3
- "version": "0.14.45",
3
+ "version": "0.14.47",
4
4
  "description": "The Linux 64-bit binary for esbuild, a JavaScript bundler.",
5
5
  "repository": "https://github.com/evanw/esbuild",
6
6
  "license": "MIT",
package/package.json CHANGED
@@ -46,7 +46,7 @@
46
46
  "@typescript-eslint/parser": "^5",
47
47
  "aws-cdk-lib": "^2.28.1",
48
48
  "constructs": "^10.0.5",
49
- "esbuild": "^0.14.45",
49
+ "esbuild": "^0.14.47",
50
50
  "eslint": "^8",
51
51
  "eslint-import-resolver-node": "^0.3.6",
52
52
  "eslint-import-resolver-typescript": "^2.7.1",
@@ -62,7 +62,7 @@
62
62
  "projen": "^0.58.15",
63
63
  "standard-version": "^9",
64
64
  "ts-jest": "^27",
65
- "typescript": "^4.7.3"
65
+ "typescript": "^4.7.4"
66
66
  },
67
67
  "peerDependencies": {
68
68
  "aws-cdk-lib": "^2.27.0",
@@ -70,9 +70,9 @@
70
70
  },
71
71
  "dependencies": {
72
72
  "aws-cdk-lib": "^2.28.1",
73
- "aws-sdk": "^2.1156.0",
73
+ "aws-sdk": "^2.1158.0",
74
74
  "constructs": "^10.0.5",
75
- "esbuild": "^0.14.45"
75
+ "esbuild": "^0.14.47"
76
76
  },
77
77
  "bundledDependencies": [
78
78
  "aws-sdk",
@@ -92,7 +92,7 @@
92
92
  ],
93
93
  "main": "lib/index.js",
94
94
  "license": "Apache-2.0",
95
- "version": "2.0.10",
95
+ "version": "2.0.13",
96
96
  "jest": {
97
97
  "testMatch": [
98
98
  "<rootDir>/src/**/__tests__/**/*.ts?(x)",