cdk-comprehend-s3olap 2.0.8 → 2.0.11
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.
- package/.jsii +5 -5
- package/lib/cdk-comprehend-s3olap.js +2 -2
- package/lib/comprehend-lambdas.js +2 -2
- package/lib/iam-roles.js +4 -4
- package/node_modules/aws-sdk/CHANGELOG.md +16 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/connectcampaigns-2021-01-30.examples.json +5 -0
- package/node_modules/aws-sdk/apis/connectcampaigns-2021-01-30.min.json +767 -0
- package/node_modules/aws-sdk/apis/connectcampaigns-2021-01-30.paginators.json +10 -0
- package/node_modules/aws-sdk/apis/finspace-data-2020-07-13.min.json +278 -73
- package/node_modules/aws-sdk/apis/guardduty-2017-11-28.min.json +325 -98
- package/node_modules/aws-sdk/apis/metadata.json +6 -0
- package/node_modules/aws-sdk/apis/redshift-data-2019-12-20.min.json +25 -16
- package/node_modules/aws-sdk/apis/redshiftserverless-2021-04-21.examples.json +5 -0
- package/node_modules/aws-sdk/apis/redshiftserverless-2021-04-21.min.json +1206 -0
- package/node_modules/aws-sdk/apis/redshiftserverless-2021-04-21.paginators.json +40 -0
- package/node_modules/aws-sdk/apis/securityhub-2018-10-26.min.json +841 -300
- package/node_modules/aws-sdk/apis/servicecatalog-appregistry-2020-06-24.min.json +45 -0
- package/node_modules/aws-sdk/apis/servicecatalog-appregistry-2020-06-24.paginators.json +6 -0
- package/node_modules/aws-sdk/clients/all.d.ts +2 -0
- package/node_modules/aws-sdk/clients/all.js +3 -1
- package/node_modules/aws-sdk/clients/connect.d.ts +1 -1
- package/node_modules/aws-sdk/clients/connectcampaigns.d.ts +446 -0
- package/node_modules/aws-sdk/clients/connectcampaigns.js +18 -0
- package/node_modules/aws-sdk/clients/dynamodb.d.ts +18 -18
- package/node_modules/aws-sdk/clients/dynamodbstreams.d.ts +1 -1
- package/node_modules/aws-sdk/clients/finspacedata.d.ts +201 -4
- package/node_modules/aws-sdk/clients/guardduty.d.ts +186 -4
- package/node_modules/aws-sdk/clients/redshiftdata.d.ts +51 -14
- package/node_modules/aws-sdk/clients/redshiftserverless.d.ts +1525 -0
- package/node_modules/aws-sdk/clients/redshiftserverless.js +18 -0
- package/node_modules/aws-sdk/clients/secretsmanager.d.ts +6 -6
- package/node_modules/aws-sdk/clients/securityhub.d.ts +1020 -19
- package/node_modules/aws-sdk/clients/servicecatalogappregistry.d.ts +49 -2
- package/node_modules/aws-sdk/clients/workspaces.d.ts +10 -10
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +84 -10
- package/node_modules/aws-sdk/dist/aws-sdk.js +9 -3
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +36 -36
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +4 -0
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/dynamodb/document_client.d.ts +11 -11
- package/node_modules/aws-sdk/package.json +1 -1
- package/node_modules/esbuild/bin/esbuild +1 -0
- package/node_modules/esbuild/install.js +5 -4
- package/node_modules/esbuild/lib/main.d.ts +3 -1
- package/node_modules/esbuild/lib/main.js +15 -10
- package/node_modules/esbuild/package.json +21 -21
- package/node_modules/esbuild-linux-64/bin/esbuild +0 -0
- package/node_modules/esbuild-linux-64/package.json +1 -1
- package/package.json +11 -11
@@ -308,6 +308,8 @@ export abstract class ConfigurationServicePlaceholders {
|
|
308
308
|
chimesdkmediapipelines?: AWS.ChimeSDKMediaPipelines.Types.ClientConfiguration;
|
309
309
|
emrserverless?: AWS.EMRServerless.Types.ClientConfiguration;
|
310
310
|
m2?: AWS.M2.Types.ClientConfiguration;
|
311
|
+
redshiftserverless?: AWS.RedshiftServerless.Types.ClientConfiguration;
|
312
|
+
connectcampaigns?: AWS.ConnectCampaigns.Types.ClientConfiguration;
|
311
313
|
}
|
312
314
|
export interface ConfigurationServiceApiVersions {
|
313
315
|
acm?: AWS.ACM.Types.apiVersion;
|
@@ -618,4 +620,6 @@ export interface ConfigurationServiceApiVersions {
|
|
618
620
|
chimesdkmediapipelines?: AWS.ChimeSDKMediaPipelines.Types.apiVersion;
|
619
621
|
emrserverless?: AWS.EMRServerless.Types.apiVersion;
|
620
622
|
m2?: AWS.M2.Types.apiVersion;
|
623
|
+
redshiftserverless?: AWS.RedshiftServerless.Types.apiVersion;
|
624
|
+
connectcampaigns?: AWS.ConnectCampaigns.Types.apiVersion;
|
621
625
|
}
|
@@ -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
|
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.
|
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
|
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
|
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
|
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
|
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
|
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,3 +1,4 @@
|
|
1
|
+
"use strict";
|
1
2
|
var __create = Object.create;
|
2
3
|
var __defProp = Object.defineProperty;
|
3
4
|
var __defProps = Object.defineProperties;
|
@@ -101,8 +102,8 @@ function validateBinaryVersion(...command) {
|
|
101
102
|
const stdout = child_process.execFileSync(command.shift(), command, {
|
102
103
|
stdio: "pipe"
|
103
104
|
}).toString().trim();
|
104
|
-
if (stdout !== "0.14.
|
105
|
-
throw new Error(`Expected ${JSON.stringify("0.14.
|
105
|
+
if (stdout !== "0.14.45") {
|
106
|
+
throw new Error(`Expected ${JSON.stringify("0.14.45")} but got ${JSON.stringify(stdout)}`);
|
106
107
|
}
|
107
108
|
}
|
108
109
|
function isYarn() {
|
@@ -153,7 +154,7 @@ function installUsingNPM(pkg, subpath, binPath) {
|
|
153
154
|
fs2.mkdirSync(installDir);
|
154
155
|
try {
|
155
156
|
fs2.writeFileSync(path2.join(installDir, "package.json"), "{}");
|
156
|
-
child_process.execSync(`npm install --loglevel=error --prefer-offline --no-audit --progress=false ${pkg}@${"0.14.
|
157
|
+
child_process.execSync(`npm install --loglevel=error --prefer-offline --no-audit --progress=false ${pkg}@${"0.14.45"}`, { cwd: installDir, stdio: "pipe", env });
|
157
158
|
const installedBinPath = path2.join(installDir, "node_modules", pkg, subpath);
|
158
159
|
fs2.renameSync(installedBinPath, binPath);
|
159
160
|
} finally {
|
@@ -202,7 +203,7 @@ function maybeOptimizePackage(binPath) {
|
|
202
203
|
}
|
203
204
|
}
|
204
205
|
async function downloadDirectlyFromNPM(pkg, subpath, binPath) {
|
205
|
-
const url = `https://registry.npmjs.org/${pkg}/-/${pkg}-${"0.14.
|
206
|
+
const url = `https://registry.npmjs.org/${pkg}/-/${pkg}-${"0.14.45"}.tgz`;
|
206
207
|
console.error(`[esbuild] Trying to download ${JSON.stringify(url)}`);
|
207
208
|
try {
|
208
209
|
fs2.writeFileSync(binPath, extractFileFromTarGzip(await fetch(url), subpath));
|
@@ -1,6 +1,6 @@
|
|
1
1
|
export type Platform = 'browser' | 'node' | 'neutral';
|
2
2
|
export type Format = 'iife' | 'cjs' | 'esm';
|
3
|
-
export type Loader = 'js' | 'jsx' | 'ts' | 'tsx' | 'css' | 'json' | 'text' | 'base64' | 'file' | 'dataurl' | 'binary' | 'default';
|
3
|
+
export type Loader = 'js' | 'jsx' | 'ts' | 'tsx' | 'css' | 'json' | 'text' | 'base64' | 'file' | 'dataurl' | 'binary' | 'copy' | 'default';
|
4
4
|
export type LogLevel = 'verbose' | 'debug' | 'info' | 'warning' | 'error' | 'silent';
|
5
5
|
export type Charset = 'ascii' | 'utf8';
|
6
6
|
export type Drop = 'console' | 'debugger';
|
@@ -148,6 +148,7 @@ export interface StdinOptions {
|
|
148
148
|
}
|
149
149
|
|
150
150
|
export interface Message {
|
151
|
+
id: string;
|
151
152
|
pluginName: string;
|
152
153
|
text: string;
|
153
154
|
location: Location | null;
|
@@ -402,6 +403,7 @@ export interface OnLoadResult {
|
|
402
403
|
}
|
403
404
|
|
404
405
|
export interface PartialMessage {
|
406
|
+
id?: string;
|
405
407
|
pluginName?: string;
|
406
408
|
text?: string;
|
407
409
|
location?: Partial<Location> | null;
|
@@ -1,3 +1,4 @@
|
|
1
|
+
"use strict";
|
1
2
|
var __create = Object.create;
|
2
3
|
var __defProp = Object.defineProperty;
|
3
4
|
var __defProps = Object.defineProperties;
|
@@ -754,8 +755,8 @@ function createChannel(streamIn) {
|
|
754
755
|
if (isFirstPacket) {
|
755
756
|
isFirstPacket = false;
|
756
757
|
let binaryVersion = String.fromCharCode(...bytes);
|
757
|
-
if (binaryVersion !== "0.14.
|
758
|
-
throw new Error(`Cannot start service: Host version "${"0.14.
|
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)}`);
|
759
760
|
}
|
760
761
|
return;
|
761
762
|
}
|
@@ -1264,7 +1265,7 @@ function createChannel(streamIn) {
|
|
1264
1265
|
throw new Error("Cannot rebuild");
|
1265
1266
|
sendRequest(refs, { command: "rebuild", key }, (error2, response2) => {
|
1266
1267
|
if (error2) {
|
1267
|
-
const message = { pluginName: "", text: error2, location: null, notes: [], detail: void 0 };
|
1268
|
+
const message = { id: "", pluginName: "", text: error2, location: null, notes: [], detail: void 0 };
|
1268
1269
|
return callback2(failureErrorWithLog("Build failed", [message], []), null);
|
1269
1270
|
}
|
1270
1271
|
buildResponseToResult(response2, (error3, result3) => {
|
@@ -1547,7 +1548,7 @@ function extractErrorMessageV8(e, streamIn, stash, note, pluginName) {
|
|
1547
1548
|
location = parseStackLinesV8(streamIn, (e.stack + "").split("\n"), "");
|
1548
1549
|
} catch {
|
1549
1550
|
}
|
1550
|
-
return { pluginName, text, location, notes: note ? [note] : [], detail: stash ? stash.store(e) : -1 };
|
1551
|
+
return { id: "", pluginName, text, location, notes: note ? [note] : [], detail: stash ? stash.store(e) : -1 };
|
1551
1552
|
}
|
1552
1553
|
function parseStackLinesV8(streamIn, lines, ident) {
|
1553
1554
|
let at = " at ";
|
@@ -1646,6 +1647,7 @@ function sanitizeMessages(messages, property, stash, fallbackPluginName) {
|
|
1646
1647
|
let index = 0;
|
1647
1648
|
for (const message of messages) {
|
1648
1649
|
let keys = {};
|
1650
|
+
let id = getFlag(message, keys, "id", mustBeString);
|
1649
1651
|
let pluginName = getFlag(message, keys, "pluginName", mustBeString);
|
1650
1652
|
let text = getFlag(message, keys, "text", mustBeString);
|
1651
1653
|
let location = getFlag(message, keys, "location", mustBeObjectOrNull);
|
@@ -1667,6 +1669,7 @@ function sanitizeMessages(messages, property, stash, fallbackPluginName) {
|
|
1667
1669
|
}
|
1668
1670
|
}
|
1669
1671
|
messagesClone.push({
|
1672
|
+
id: id || "",
|
1670
1673
|
pluginName: pluginName || fallbackPluginName,
|
1671
1674
|
text: text || "",
|
1672
1675
|
location: sanitizeLocation(location, where),
|
@@ -1867,7 +1870,7 @@ if (process.env.ESBUILD_WORKER_THREADS !== "0") {
|
|
1867
1870
|
}
|
1868
1871
|
}
|
1869
1872
|
var _a;
|
1870
|
-
var isInternalWorkerThread = ((_a = worker_threads == null ? void 0 : worker_threads.workerData) == null ? void 0 : _a.esbuildVersion) === "0.14.
|
1873
|
+
var isInternalWorkerThread = ((_a = worker_threads == null ? void 0 : worker_threads.workerData) == null ? void 0 : _a.esbuildVersion) === "0.14.45";
|
1871
1874
|
var esbuildCommandAndArgs = () => {
|
1872
1875
|
if ((!ESBUILD_BINARY_PATH || false) && (path2.basename(__filename) !== "main.js" || path2.basename(__dirname) !== "lib")) {
|
1873
1876
|
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.
|
@@ -1931,7 +1934,7 @@ var fsAsync = {
|
|
1931
1934
|
}
|
1932
1935
|
}
|
1933
1936
|
};
|
1934
|
-
var version = "0.14.
|
1937
|
+
var version = "0.14.45";
|
1935
1938
|
var build = (options) => ensureServiceIsRunning().build(options);
|
1936
1939
|
var serve = (serveOptions, buildOptions) => ensureServiceIsRunning().serve(serveOptions, buildOptions);
|
1937
1940
|
var transform = (input, options) => ensureServiceIsRunning().transform(input, options);
|
@@ -2026,6 +2029,8 @@ var initialize = (options) => {
|
|
2026
2029
|
options = validateInitializeOptions(options || {});
|
2027
2030
|
if (options.wasmURL)
|
2028
2031
|
throw new Error(`The "wasmURL" option only works in the browser`);
|
2032
|
+
if (options.wasmModule)
|
2033
|
+
throw new Error(`The "wasmModule" option only works in the browser`);
|
2029
2034
|
if (options.worker)
|
2030
2035
|
throw new Error(`The "worker" option only works in the browser`);
|
2031
2036
|
if (initializeWasCalled)
|
@@ -2040,7 +2045,7 @@ var ensureServiceIsRunning = () => {
|
|
2040
2045
|
if (longLivedService)
|
2041
2046
|
return longLivedService;
|
2042
2047
|
let [command, args] = esbuildCommandAndArgs();
|
2043
|
-
let child = child_process.spawn(command, args.concat(`--service=${"0.14.
|
2048
|
+
let child = child_process.spawn(command, args.concat(`--service=${"0.14.45"}`, "--ping"), {
|
2044
2049
|
windowsHide: true,
|
2045
2050
|
stdio: ["pipe", "pipe", "inherit"],
|
2046
2051
|
cwd: defaultWD
|
@@ -2154,7 +2159,7 @@ var runServiceSync = (callback) => {
|
|
2154
2159
|
esbuild: node_exports
|
2155
2160
|
});
|
2156
2161
|
callback(service);
|
2157
|
-
let stdout = child_process.execFileSync(command, args.concat(`--service=${"0.14.
|
2162
|
+
let stdout = child_process.execFileSync(command, args.concat(`--service=${"0.14.45"}`), {
|
2158
2163
|
cwd: defaultWD,
|
2159
2164
|
windowsHide: true,
|
2160
2165
|
input: stdin,
|
@@ -2170,7 +2175,7 @@ var workerThreadService = null;
|
|
2170
2175
|
var startWorkerThreadService = (worker_threads2) => {
|
2171
2176
|
let { port1: mainPort, port2: workerPort } = new worker_threads2.MessageChannel();
|
2172
2177
|
let worker = new worker_threads2.Worker(__filename, {
|
2173
|
-
workerData: { workerPort, defaultWD, esbuildVersion: "0.14.
|
2178
|
+
workerData: { workerPort, defaultWD, esbuildVersion: "0.14.45" },
|
2174
2179
|
transferList: [workerPort],
|
2175
2180
|
execArgv: []
|
2176
2181
|
});
|
@@ -2179,7 +2184,7 @@ var startWorkerThreadService = (worker_threads2) => {
|
|
2179
2184
|
let fakeBuildError = (text) => {
|
2180
2185
|
let error = new Error(`Build failed with 1 error:
|
2181
2186
|
error: ${text}`);
|
2182
|
-
let errors = [{ pluginName: "", text, location: null, notes: [], detail: void 0 }];
|
2187
|
+
let errors = [{ id: "", pluginName: "", text, location: null, notes: [], detail: void 0 }];
|
2183
2188
|
error.errors = errors;
|
2184
2189
|
error.warnings = [];
|
2185
2190
|
return error;
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "esbuild",
|
3
|
-
"version": "0.14.
|
3
|
+
"version": "0.14.45",
|
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.
|
19
|
-
"esbuild-android-arm64": "0.14.
|
20
|
-
"esbuild-darwin-64": "0.14.
|
21
|
-
"esbuild-darwin-arm64": "0.14.
|
22
|
-
"esbuild-freebsd-64": "0.14.
|
23
|
-
"esbuild-freebsd-arm64": "0.14.
|
24
|
-
"esbuild-linux-32": "0.14.
|
25
|
-
"esbuild-linux-64": "0.14.
|
26
|
-
"esbuild-linux-arm": "0.14.
|
27
|
-
"esbuild-linux-arm64": "0.14.
|
28
|
-
"esbuild-linux-mips64le": "0.14.
|
29
|
-
"esbuild-linux-ppc64le": "0.14.
|
30
|
-
"esbuild-linux-riscv64": "0.14.
|
31
|
-
"esbuild-linux-s390x": "0.14.
|
32
|
-
"esbuild-netbsd-64": "0.14.
|
33
|
-
"esbuild-openbsd-64": "0.14.
|
34
|
-
"esbuild-sunos-64": "0.14.
|
35
|
-
"esbuild-windows-32": "0.14.
|
36
|
-
"esbuild-windows-64": "0.14.
|
37
|
-
"esbuild-windows-arm64": "0.14.
|
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"
|
38
38
|
},
|
39
39
|
"license": "MIT"
|
40
40
|
}
|
Binary file
|
package/package.json
CHANGED
@@ -44,35 +44,35 @@
|
|
44
44
|
"@types/node": "^14",
|
45
45
|
"@typescript-eslint/eslint-plugin": "^5",
|
46
46
|
"@typescript-eslint/parser": "^5",
|
47
|
-
"aws-cdk-lib": "^2.28.
|
47
|
+
"aws-cdk-lib": "^2.28.1",
|
48
48
|
"constructs": "^10.0.5",
|
49
|
-
"esbuild": "^0.14.
|
49
|
+
"esbuild": "^0.14.45",
|
50
50
|
"eslint": "^8",
|
51
51
|
"eslint-import-resolver-node": "^0.3.6",
|
52
52
|
"eslint-import-resolver-typescript": "^2.7.1",
|
53
53
|
"eslint-plugin-import": "^2.26.0",
|
54
54
|
"jest": "^27",
|
55
55
|
"jest-junit": "^13",
|
56
|
-
"jsii": "^1.
|
57
|
-
"jsii-diff": "^1.
|
56
|
+
"jsii": "^1.61.0",
|
57
|
+
"jsii-diff": "^1.61.0",
|
58
58
|
"jsii-docgen": "^1.8.110",
|
59
|
-
"jsii-pacmak": "^1.
|
59
|
+
"jsii-pacmak": "^1.61.0",
|
60
60
|
"json-schema": "^0.4.0",
|
61
61
|
"npm-check-updates": "^12",
|
62
|
-
"projen": "^0.58.
|
62
|
+
"projen": "^0.58.15",
|
63
63
|
"standard-version": "^9",
|
64
64
|
"ts-jest": "^27",
|
65
|
-
"typescript": "^4.7.
|
65
|
+
"typescript": "^4.7.4"
|
66
66
|
},
|
67
67
|
"peerDependencies": {
|
68
68
|
"aws-cdk-lib": "^2.27.0",
|
69
69
|
"constructs": "^10.0.5"
|
70
70
|
},
|
71
71
|
"dependencies": {
|
72
|
-
"aws-cdk-lib": "^2.28.
|
73
|
-
"aws-sdk": "^2.
|
72
|
+
"aws-cdk-lib": "^2.28.1",
|
73
|
+
"aws-sdk": "^2.1157.0",
|
74
74
|
"constructs": "^10.0.5",
|
75
|
-
"esbuild": "^0.14.
|
75
|
+
"esbuild": "^0.14.45"
|
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.
|
95
|
+
"version": "2.0.11",
|
96
96
|
"jest": {
|
97
97
|
"testMatch": [
|
98
98
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|