cdk-comprehend-s3olap 2.0.70 → 2.0.73
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 +4 -4
- 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 +22 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/appmesh-2019-01-25.min.json +220 -167
- package/node_modules/aws-sdk/apis/chime-sdk-media-pipelines-2021-07-15.min.json +464 -31
- package/node_modules/aws-sdk/apis/chime-sdk-media-pipelines-2021-07-15.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +119 -39
- package/node_modules/aws-sdk/apis/connect-2017-08-08.paginators.json +9 -0
- package/node_modules/aws-sdk/apis/dynamodb-2012-08-10.min.json +227 -33
- package/node_modules/aws-sdk/apis/dynamodb-2012-08-10.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +601 -558
- package/node_modules/aws-sdk/apis/kendra-2019-02-03.min.json +114 -85
- package/node_modules/aws-sdk/apis/lakeformation-2017-03-31.min.json +98 -66
- package/node_modules/aws-sdk/apis/lambda-2015-03-31.min.json +135 -111
- package/node_modules/aws-sdk/apis/lookoutmetrics-2017-07-25.min.json +54 -0
- package/node_modules/aws-sdk/apis/models.lex.v2-2020-08-07.min.json +405 -123
- package/node_modules/aws-sdk/apis/monitoring-2010-08-01.min.json +104 -22
- package/node_modules/aws-sdk/apis/monitoring-2010-08-01.paginators.json +11 -0
- package/node_modules/aws-sdk/apis/networkmanager-2019-07-05.min.json +52 -51
- package/node_modules/aws-sdk/apis/rds-2014-10-31.min.json +11 -5
- package/node_modules/aws-sdk/clients/appmesh.d.ts +70 -3
- package/node_modules/aws-sdk/clients/chimesdkmediapipelines.d.ts +472 -43
- package/node_modules/aws-sdk/clients/cloudwatch.d.ts +100 -2
- package/node_modules/aws-sdk/clients/cognitoidentityserviceprovider.d.ts +2 -2
- package/node_modules/aws-sdk/clients/connect.d.ts +246 -160
- package/node_modules/aws-sdk/clients/dynamodb.d.ts +276 -2
- package/node_modules/aws-sdk/clients/ec2.d.ts +53 -0
- package/node_modules/aws-sdk/clients/ivschat.d.ts +5 -5
- package/node_modules/aws-sdk/clients/kendra.d.ts +93 -56
- package/node_modules/aws-sdk/clients/lakeformation.d.ts +48 -2
- package/node_modules/aws-sdk/clients/lambda.d.ts +45 -17
- package/node_modules/aws-sdk/clients/lexmodelsv2.d.ts +290 -2
- package/node_modules/aws-sdk/clients/lookoutmetrics.d.ts +72 -3
- package/node_modules/aws-sdk/clients/networkmanager.d.ts +5 -0
- package/node_modules/aws-sdk/clients/rds.d.ts +36 -12
- package/node_modules/aws-sdk/clients/secretsmanager.d.ts +11 -11
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +18 -18
- package/node_modules/aws-sdk/dist/aws-sdk.js +1225 -771
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +74 -74
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/dynamodb/document_client.d.ts +252 -2
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +8 -8
@@ -418,7 +418,7 @@ export namespace DocumentClient {
|
|
418
418
|
*/
|
419
419
|
Code?: BatchStatementErrorCodeEnum;
|
420
420
|
/**
|
421
|
-
* The error message associated with the PartiQL batch
|
421
|
+
* The error message associated with the PartiQL batch response.
|
422
422
|
*/
|
423
423
|
Message?: String;
|
424
424
|
}
|
@@ -509,6 +509,7 @@ export namespace DocumentClient {
|
|
509
509
|
}
|
510
510
|
export type ClientRequestToken = string;
|
511
511
|
export type ClientToken = string;
|
512
|
+
export type CloudWatchLogGroupArn = string;
|
512
513
|
export type ComparisonOperator = "EQ"|"NE"|"IN"|"LE"|"LT"|"GE"|"GT"|"BETWEEN"|"NOT_NULL"|"NULL"|"CONTAINS"|"NOT_CONTAINS"|"BEGINS_WITH"|string;
|
513
514
|
export interface Condition {
|
514
515
|
/**
|
@@ -741,6 +742,19 @@ export namespace DocumentClient {
|
|
741
742
|
*/
|
742
743
|
TableDescription?: TableDescription;
|
743
744
|
}
|
745
|
+
export type CsvDelimiter = string;
|
746
|
+
export type CsvHeader = string;
|
747
|
+
export type CsvHeaderList = CsvHeader[];
|
748
|
+
export interface CsvOptions {
|
749
|
+
/**
|
750
|
+
* The delimiter used for separating items in the CSV file being imported.
|
751
|
+
*/
|
752
|
+
Delimiter?: CsvDelimiter;
|
753
|
+
/**
|
754
|
+
* List of the headers used to specify a common header for all source CSV files being imported. If this field is specified then the first line of each CSV file is treated as data instead of the header. If this field is not specified the the first line of each CSV file is treated as the header.
|
755
|
+
*/
|
756
|
+
HeaderList?: CsvHeaderList;
|
757
|
+
}
|
744
758
|
export type _Date = Date;
|
745
759
|
export interface Delete {
|
746
760
|
/**
|
@@ -977,6 +991,18 @@ export namespace DocumentClient {
|
|
977
991
|
*/
|
978
992
|
ReplicaSettings?: ReplicaSettingsDescriptionList;
|
979
993
|
}
|
994
|
+
export interface DescribeImportInput {
|
995
|
+
/**
|
996
|
+
* The Amazon Resource Name (ARN) associated with the table you're importing to.
|
997
|
+
*/
|
998
|
+
ImportArn: ImportArn;
|
999
|
+
}
|
1000
|
+
export interface DescribeImportOutput {
|
1001
|
+
/**
|
1002
|
+
* Represents the properties of the table created for the import, and parameters of the import. The import parameters include import status, how many items were processed, and how many errors were encountered.
|
1003
|
+
*/
|
1004
|
+
ImportTableDescription: ImportTableDescription;
|
1005
|
+
}
|
980
1006
|
export interface DescribeKinesisStreamingDestinationInput {
|
981
1007
|
/**
|
982
1008
|
* The name of the table being described.
|
@@ -1062,6 +1088,7 @@ export namespace DocumentClient {
|
|
1062
1088
|
CachePeriodInMinutes: Long;
|
1063
1089
|
}
|
1064
1090
|
export type Endpoints = Endpoint[];
|
1091
|
+
export type ErrorCount = number;
|
1065
1092
|
export type ExceptionDescription = string;
|
1066
1093
|
export type ExceptionName = string;
|
1067
1094
|
export interface ExecuteStatementInput {
|
@@ -1251,7 +1278,7 @@ export namespace DocumentClient {
|
|
1251
1278
|
*/
|
1252
1279
|
ExportTime?: ExportTime;
|
1253
1280
|
/**
|
1254
|
-
* Providing a ClientToken makes the call to ExportTableToPointInTimeInput idempotent, meaning that multiple identical calls have the same effect as one single call. A client token is valid for 8 hours after the first request that uses it is completed. After 8 hours, any request with the same client token is treated as a new request. Do not resubmit the same request with the same client token for more than 8 hours, or the result might not be idempotent. If you submit a request with the same client token but a change in other parameters within the 8-hour idempotency window, DynamoDB returns an
|
1281
|
+
* Providing a ClientToken makes the call to ExportTableToPointInTimeInput idempotent, meaning that multiple identical calls have the same effect as one single call. A client token is valid for 8 hours after the first request that uses it is completed. After 8 hours, any request with the same client token is treated as a new request. Do not resubmit the same request with the same client token for more than 8 hours, or the result might not be idempotent. If you submit a request with the same client token but a change in other parameters within the 8-hour idempotency window, DynamoDB returns an ImportConflictException.
|
1255
1282
|
*/
|
1256
1283
|
ClientToken?: ClientToken;
|
1257
1284
|
/**
|
@@ -1508,8 +1535,167 @@ export namespace DocumentClient {
|
|
1508
1535
|
export type GlobalTableGlobalSecondaryIndexSettingsUpdateList = GlobalTableGlobalSecondaryIndexSettingsUpdate[];
|
1509
1536
|
export type GlobalTableList = GlobalTable[];
|
1510
1537
|
export type GlobalTableStatus = "CREATING"|"ACTIVE"|"DELETING"|"UPDATING"|string;
|
1538
|
+
export type ImportArn = string;
|
1539
|
+
export type ImportEndTime = Date;
|
1540
|
+
export type ImportNextToken = string;
|
1541
|
+
export type ImportStartTime = Date;
|
1542
|
+
export type ImportStatus = "IN_PROGRESS"|"COMPLETED"|"CANCELLING"|"CANCELLED"|"FAILED"|string;
|
1543
|
+
export interface ImportSummary {
|
1544
|
+
/**
|
1545
|
+
* The Amazon Resource Number (ARN) corresponding to the import request.
|
1546
|
+
*/
|
1547
|
+
ImportArn?: ImportArn;
|
1548
|
+
/**
|
1549
|
+
* The status of the import operation.
|
1550
|
+
*/
|
1551
|
+
ImportStatus?: ImportStatus;
|
1552
|
+
/**
|
1553
|
+
* The Amazon Resource Number (ARN) of the table being imported into.
|
1554
|
+
*/
|
1555
|
+
TableArn?: TableArn;
|
1556
|
+
/**
|
1557
|
+
* The path and S3 bucket of the source file that is being imported. This includes the S3Bucket (required), S3KeyPrefix (optional) and S3BucketOwner (optional if the bucket is owned by the requester).
|
1558
|
+
*/
|
1559
|
+
S3BucketSource?: S3BucketSource;
|
1560
|
+
/**
|
1561
|
+
* The Amazon Resource Number (ARN) of the Cloudwatch Log Group associated with this import task.
|
1562
|
+
*/
|
1563
|
+
CloudWatchLogGroupArn?: CloudWatchLogGroupArn;
|
1564
|
+
/**
|
1565
|
+
* The format of the source data. Valid values are CSV, DYNAMODB_JSON or ION.
|
1566
|
+
*/
|
1567
|
+
InputFormat?: InputFormat;
|
1568
|
+
/**
|
1569
|
+
* The time at which this import task began.
|
1570
|
+
*/
|
1571
|
+
StartTime?: ImportStartTime;
|
1572
|
+
/**
|
1573
|
+
* The time at which this import task ended. (Does this include the successful complete creation of the table it was imported to?)
|
1574
|
+
*/
|
1575
|
+
EndTime?: ImportEndTime;
|
1576
|
+
}
|
1577
|
+
export type ImportSummaryList = ImportSummary[];
|
1578
|
+
export interface ImportTableDescription {
|
1579
|
+
/**
|
1580
|
+
* The Amazon Resource Number (ARN) corresponding to the import request.
|
1581
|
+
*/
|
1582
|
+
ImportArn?: ImportArn;
|
1583
|
+
/**
|
1584
|
+
* The status of the import.
|
1585
|
+
*/
|
1586
|
+
ImportStatus?: ImportStatus;
|
1587
|
+
/**
|
1588
|
+
* The Amazon Resource Number (ARN) of the table being imported into.
|
1589
|
+
*/
|
1590
|
+
TableArn?: TableArn;
|
1591
|
+
/**
|
1592
|
+
* The table id corresponding to the table created by import table process.
|
1593
|
+
*/
|
1594
|
+
TableId?: TableId;
|
1595
|
+
/**
|
1596
|
+
* The client token that was provided for the import task. Reusing the client token on retry makes a call to ImportTable idempotent.
|
1597
|
+
*/
|
1598
|
+
ClientToken?: ClientToken;
|
1599
|
+
/**
|
1600
|
+
* Values for the S3 bucket the source file is imported from. Includes bucket name (required), key prefix (optional) and bucket account owner ID (optional).
|
1601
|
+
*/
|
1602
|
+
S3BucketSource?: S3BucketSource;
|
1603
|
+
/**
|
1604
|
+
* The number of errors occurred on importing the source file into the target table.
|
1605
|
+
*/
|
1606
|
+
ErrorCount?: ErrorCount;
|
1607
|
+
/**
|
1608
|
+
* The Amazon Resource Number (ARN) of the Cloudwatch Log Group associated with the target table.
|
1609
|
+
*/
|
1610
|
+
CloudWatchLogGroupArn?: CloudWatchLogGroupArn;
|
1611
|
+
/**
|
1612
|
+
* The format of the source data going into the target table.
|
1613
|
+
*/
|
1614
|
+
InputFormat?: InputFormat;
|
1615
|
+
/**
|
1616
|
+
* The format options for the data that was imported into the target table. There is one value, CsvOption.
|
1617
|
+
*/
|
1618
|
+
InputFormatOptions?: InputFormatOptions;
|
1619
|
+
/**
|
1620
|
+
* The compression options for the data that has been imported into the target table. The values are NONE, GZIP, or ZSTD.
|
1621
|
+
*/
|
1622
|
+
InputCompressionType?: InputCompressionType;
|
1623
|
+
/**
|
1624
|
+
* The parameters for the new table that is being imported into.
|
1625
|
+
*/
|
1626
|
+
TableCreationParameters?: TableCreationParameters;
|
1627
|
+
/**
|
1628
|
+
* The time when this import task started.
|
1629
|
+
*/
|
1630
|
+
StartTime?: ImportStartTime;
|
1631
|
+
/**
|
1632
|
+
* The time at which the creation of the table associated with this import task completed.
|
1633
|
+
*/
|
1634
|
+
EndTime?: ImportEndTime;
|
1635
|
+
/**
|
1636
|
+
* The total size of data processed from the source file, in Bytes.
|
1637
|
+
*/
|
1638
|
+
ProcessedSizeBytes?: Long;
|
1639
|
+
/**
|
1640
|
+
* The total number of items processed from the source file.
|
1641
|
+
*/
|
1642
|
+
ProcessedItemCount?: ProcessedItemCount;
|
1643
|
+
/**
|
1644
|
+
* The number of items successfully imported into the new table.
|
1645
|
+
*/
|
1646
|
+
ImportedItemCount?: ImportedItemCount;
|
1647
|
+
/**
|
1648
|
+
* The error code corresponding to the failure that the import job ran into during execution.
|
1649
|
+
*/
|
1650
|
+
FailureCode?: FailureCode;
|
1651
|
+
/**
|
1652
|
+
* The error message corresponding to the failure that the import job ran into during execution.
|
1653
|
+
*/
|
1654
|
+
FailureMessage?: FailureMessage;
|
1655
|
+
}
|
1656
|
+
export interface ImportTableInput {
|
1657
|
+
/**
|
1658
|
+
* Providing a ClientToken makes the call to ImportTableInput idempotent, meaning that multiple identical calls have the same effect as one single call. A client token is valid for 8 hours after the first request that uses it is completed. After 8 hours, any request with the same client token is treated as a new request. Do not resubmit the same request with the same client token for more than 8 hours, or the result might not be idempotent. If you submit a request with the same client token but a change in other parameters within the 8-hour idempotency window, DynamoDB returns an IdempotentParameterMismatch exception.
|
1659
|
+
*/
|
1660
|
+
ClientToken?: ClientToken;
|
1661
|
+
/**
|
1662
|
+
* The S3 bucket that provides the source for the import.
|
1663
|
+
*/
|
1664
|
+
S3BucketSource: S3BucketSource;
|
1665
|
+
/**
|
1666
|
+
* The format of the source data. Valid values for ImportFormat are CSV, DYNAMODB_JSON or ION.
|
1667
|
+
*/
|
1668
|
+
InputFormat: InputFormat;
|
1669
|
+
/**
|
1670
|
+
* Additional properties that specify how the input is formatted,
|
1671
|
+
*/
|
1672
|
+
InputFormatOptions?: InputFormatOptions;
|
1673
|
+
/**
|
1674
|
+
* Type of compression to be used on the input coming from the imported table.
|
1675
|
+
*/
|
1676
|
+
InputCompressionType?: InputCompressionType;
|
1677
|
+
/**
|
1678
|
+
* Parameters for the table to import the data into.
|
1679
|
+
*/
|
1680
|
+
TableCreationParameters: TableCreationParameters;
|
1681
|
+
}
|
1682
|
+
export interface ImportTableOutput {
|
1683
|
+
/**
|
1684
|
+
* Represents the properties of the table created for the import, and parameters of the import. The import parameters include import status, how many items were processed, and how many errors were encountered.
|
1685
|
+
*/
|
1686
|
+
ImportTableDescription: ImportTableDescription;
|
1687
|
+
}
|
1688
|
+
export type ImportedItemCount = number;
|
1511
1689
|
export type IndexName = string;
|
1512
1690
|
export type IndexStatus = "CREATING"|"UPDATING"|"DELETING"|"ACTIVE"|string;
|
1691
|
+
export type InputCompressionType = "GZIP"|"ZSTD"|"NONE"|string;
|
1692
|
+
export type InputFormat = "DYNAMODB_JSON"|"ION"|"CSV"|string;
|
1693
|
+
export interface InputFormatOptions {
|
1694
|
+
/**
|
1695
|
+
* The options for imported source files in CSV format. The values are Delimiter and HeaderList.
|
1696
|
+
*/
|
1697
|
+
Csv?: CsvOptions;
|
1698
|
+
}
|
1513
1699
|
export type Integer = number;
|
1514
1700
|
export type IntegerObject = number;
|
1515
1701
|
export type ItemCollectionKeyAttributeMap = {[key: string]: AttributeValue};
|
@@ -1728,6 +1914,31 @@ export namespace DocumentClient {
|
|
1728
1914
|
*/
|
1729
1915
|
LastEvaluatedGlobalTableName?: TableName;
|
1730
1916
|
}
|
1917
|
+
export interface ListImportsInput {
|
1918
|
+
/**
|
1919
|
+
* The Amazon Resource Name (ARN) associated with the table that was imported to.
|
1920
|
+
*/
|
1921
|
+
TableArn?: TableArn;
|
1922
|
+
/**
|
1923
|
+
* The number of ImportSummary objects returned in a single page.
|
1924
|
+
*/
|
1925
|
+
PageSize?: ListImportsMaxLimit;
|
1926
|
+
/**
|
1927
|
+
* An optional string that, if supplied, must be copied from the output of a previous call to ListImports. When provided in this manner, the API fetches the next page of results.
|
1928
|
+
*/
|
1929
|
+
NextToken?: ImportNextToken;
|
1930
|
+
}
|
1931
|
+
export type ListImportsMaxLimit = number;
|
1932
|
+
export interface ListImportsOutput {
|
1933
|
+
/**
|
1934
|
+
* A list of ImportSummary objects.
|
1935
|
+
*/
|
1936
|
+
ImportSummaryList?: ImportSummaryList;
|
1937
|
+
/**
|
1938
|
+
* If this value is returned, there are additional results to be displayed. To retrieve them, call ListImports again, with NextToken set to this value.
|
1939
|
+
*/
|
1940
|
+
NextToken?: ImportNextToken;
|
1941
|
+
}
|
1731
1942
|
export interface ListTablesInput {
|
1732
1943
|
/**
|
1733
1944
|
* The first table name that this operation will evaluate. Use the value that was returned for LastEvaluatedTableName in a previous operation, so that you can obtain the next page of results.
|
@@ -1874,6 +2085,7 @@ export namespace DocumentClient {
|
|
1874
2085
|
export type PositiveIntegerObject = number;
|
1875
2086
|
export type PositiveLongObject = number;
|
1876
2087
|
export type PreparedStatementParameters = AttributeValue[];
|
2088
|
+
export type ProcessedItemCount = number;
|
1877
2089
|
export interface Projection {
|
1878
2090
|
/**
|
1879
2091
|
* The set of attributes that are projected into the index: 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.
|
@@ -2455,6 +2667,20 @@ export namespace DocumentClient {
|
|
2455
2667
|
export type ReturnValuesOnConditionCheckFailure = "ALL_OLD"|"NONE"|string;
|
2456
2668
|
export type S3Bucket = string;
|
2457
2669
|
export type S3BucketOwner = string;
|
2670
|
+
export interface S3BucketSource {
|
2671
|
+
/**
|
2672
|
+
* The account number of the S3 bucket that is being imported from. If the bucket is owned by the requester this is optional.
|
2673
|
+
*/
|
2674
|
+
S3BucketOwner?: S3BucketOwner;
|
2675
|
+
/**
|
2676
|
+
* The S3 bucket that is being imported from.
|
2677
|
+
*/
|
2678
|
+
S3Bucket: S3Bucket;
|
2679
|
+
/**
|
2680
|
+
* The key prefix shared by all S3 Objects that are being imported.
|
2681
|
+
*/
|
2682
|
+
S3KeyPrefix?: S3Prefix;
|
2683
|
+
}
|
2458
2684
|
export type S3Prefix = string;
|
2459
2685
|
export type S3SseAlgorithm = "AES256"|"KMS"|string;
|
2460
2686
|
export type S3SseKmsKeyId = string;
|
@@ -2686,6 +2912,30 @@ export namespace DocumentClient {
|
|
2686
2912
|
LastUpdateDateTime?: _Date;
|
2687
2913
|
}
|
2688
2914
|
export type TableCreationDateTime = Date;
|
2915
|
+
export interface TableCreationParameters {
|
2916
|
+
/**
|
2917
|
+
* The name of the table created as part of the import operation.
|
2918
|
+
*/
|
2919
|
+
TableName: TableName;
|
2920
|
+
/**
|
2921
|
+
* The attributes of the table created as part of the import operation.
|
2922
|
+
*/
|
2923
|
+
AttributeDefinitions: AttributeDefinitions;
|
2924
|
+
/**
|
2925
|
+
* The primary key and option sort key of the table created as part of the import operation.
|
2926
|
+
*/
|
2927
|
+
KeySchema: KeySchema;
|
2928
|
+
/**
|
2929
|
+
* The billing mode for provisioning the table created as part of the import operation.
|
2930
|
+
*/
|
2931
|
+
BillingMode?: BillingMode;
|
2932
|
+
ProvisionedThroughput?: ProvisionedThroughput;
|
2933
|
+
SSESpecification?: SSESpecification;
|
2934
|
+
/**
|
2935
|
+
* The Global Secondary Indexes (GSI) of the table to be created as part of the import operation.
|
2936
|
+
*/
|
2937
|
+
GlobalSecondaryIndexes?: GlobalSecondaryIndexList;
|
2938
|
+
}
|
2689
2939
|
export interface TableDescription {
|
2690
2940
|
/**
|
2691
2941
|
* An array of AttributeDefinition objects. Each of these objects describes one attribute in the table and index key schema. Each AttributeDefinition object in this array is composed of: AttributeName - The name of the attribute. AttributeType - The data type for the attribute.
|
package/package.json
CHANGED
@@ -44,7 +44,7 @@
|
|
44
44
|
"@types/node": "^14",
|
45
45
|
"@typescript-eslint/eslint-plugin": "^5",
|
46
46
|
"@typescript-eslint/parser": "^5",
|
47
|
-
"aws-cdk-lib": "^2.
|
47
|
+
"aws-cdk-lib": "^2.38.1",
|
48
48
|
"constructs": "^10.0.5",
|
49
49
|
"esbuild": "^0.15.5",
|
50
50
|
"eslint": "^8",
|
@@ -53,13 +53,13 @@
|
|
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.65.0",
|
57
|
+
"jsii-diff": "^1.65.0",
|
58
58
|
"jsii-docgen": "^1.8.110",
|
59
|
-
"jsii-pacmak": "^1.
|
59
|
+
"jsii-pacmak": "^1.65.0",
|
60
60
|
"json-schema": "^0.4.0",
|
61
61
|
"npm-check-updates": "^15",
|
62
|
-
"projen": "^0.61.
|
62
|
+
"projen": "^0.61.21",
|
63
63
|
"standard-version": "^9",
|
64
64
|
"ts-jest": "^27",
|
65
65
|
"typescript": "^4.7.4"
|
@@ -69,8 +69,8 @@
|
|
69
69
|
"constructs": "^10.0.5"
|
70
70
|
},
|
71
71
|
"dependencies": {
|
72
|
-
"aws-cdk-lib": "^2.
|
73
|
-
"aws-sdk": "^2.
|
72
|
+
"aws-cdk-lib": "^2.38.1",
|
73
|
+
"aws-sdk": "^2.1199.0",
|
74
74
|
"constructs": "^10.0.5",
|
75
75
|
"esbuild": "^0.15.5"
|
76
76
|
},
|
@@ -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.73",
|
96
96
|
"jest": {
|
97
97
|
"testMatch": [
|
98
98
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|