cdk-comprehend-s3olap 2.0.174 → 2.0.176
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 +3 -3
- 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/cloudformation-2010-05-15.min.json +164 -127
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +6 -0
- package/node_modules/aws-sdk/apis/finspace-2021-03-12.min.json +1401 -17
- package/node_modules/aws-sdk/apis/finspace-2021-03-12.paginators.json +21 -0
- package/node_modules/aws-sdk/apis/inspector2-2020-06-08.min.json +29 -12
- package/node_modules/aws-sdk/apis/iot-2015-05-28.min.json +714 -214
- package/node_modules/aws-sdk/apis/iot-2015-05-28.paginators.json +12 -0
- package/node_modules/aws-sdk/apis/keyspaces-2022-02-10.min.json +60 -34
- package/node_modules/aws-sdk/apis/kms-2014-11-01.examples.json +117 -9
- package/node_modules/aws-sdk/apis/models.lex.v2-2020-08-07.min.json +1496 -286
- package/node_modules/aws-sdk/apis/models.lex.v2-2020-08-07.paginators.json +20 -0
- package/node_modules/aws-sdk/apis/quicksight-2018-04-01.min.json +625 -594
- package/node_modules/aws-sdk/apis/signer-2017-08-25.min.json +105 -16
- package/node_modules/aws-sdk/apis/sqs-2012-11-05.min.json +120 -31
- package/node_modules/aws-sdk/clients/cloudformation.d.ts +124 -61
- package/node_modules/aws-sdk/clients/connect.d.ts +3 -3
- package/node_modules/aws-sdk/clients/ec2.d.ts +2 -2
- package/node_modules/aws-sdk/clients/emr.d.ts +2 -2
- package/node_modules/aws-sdk/clients/finspace.d.ts +1904 -127
- package/node_modules/aws-sdk/clients/frauddetector.d.ts +5 -5
- package/node_modules/aws-sdk/clients/iam.d.ts +7 -7
- package/node_modules/aws-sdk/clients/inspector2.d.ts +20 -1
- package/node_modules/aws-sdk/clients/iot.d.ts +500 -3
- package/node_modules/aws-sdk/clients/keyspaces.d.ts +34 -1
- package/node_modules/aws-sdk/clients/kms.d.ts +20 -20
- package/node_modules/aws-sdk/clients/lambda.d.ts +10 -10
- package/node_modules/aws-sdk/clients/lexmodelsv2.d.ts +1516 -127
- package/node_modules/aws-sdk/clients/mwaa.d.ts +5 -5
- package/node_modules/aws-sdk/clients/quicksight.d.ts +50 -14
- package/node_modules/aws-sdk/clients/signer.d.ts +90 -5
- package/node_modules/aws-sdk/clients/sqs.d.ts +151 -39
- 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 +14 -14
- package/node_modules/aws-sdk/dist/aws-sdk.js +1019 -375
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +97 -97
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +3 -3
@@ -148,11 +148,11 @@ declare class FraudDetector extends Service {
|
|
148
148
|
*/
|
149
149
|
deleteEntityType(callback?: (err: AWSError, data: FraudDetector.Types.DeleteEntityTypeResult) => void): Request<FraudDetector.Types.DeleteEntityTypeResult, AWSError>;
|
150
150
|
/**
|
151
|
-
* Deletes the specified event. When you delete an event, Amazon Fraud Detector permanently deletes that event and the event data is no longer stored in Amazon Fraud Detector.
|
151
|
+
* Deletes the specified event. When you delete an event, Amazon Fraud Detector permanently deletes that event and the event data is no longer stored in Amazon Fraud Detector. If deleteAuditHistory is True, event data is available through search for up to 30 seconds after the delete operation is completed.
|
152
152
|
*/
|
153
153
|
deleteEvent(params: FraudDetector.Types.DeleteEventRequest, callback?: (err: AWSError, data: FraudDetector.Types.DeleteEventResult) => void): Request<FraudDetector.Types.DeleteEventResult, AWSError>;
|
154
154
|
/**
|
155
|
-
* Deletes the specified event. When you delete an event, Amazon Fraud Detector permanently deletes that event and the event data is no longer stored in Amazon Fraud Detector.
|
155
|
+
* Deletes the specified event. When you delete an event, Amazon Fraud Detector permanently deletes that event and the event data is no longer stored in Amazon Fraud Detector. If deleteAuditHistory is True, event data is available through search for up to 30 seconds after the delete operation is completed.
|
156
156
|
*/
|
157
157
|
deleteEvent(callback?: (err: AWSError, data: FraudDetector.Types.DeleteEventResult) => void): Request<FraudDetector.Types.DeleteEventResult, AWSError>;
|
158
158
|
/**
|
@@ -1129,7 +1129,7 @@ declare namespace FraudDetector {
|
|
1129
1129
|
*/
|
1130
1130
|
name: string;
|
1131
1131
|
/**
|
1132
|
-
* The data type.
|
1132
|
+
* The data type of the variable.
|
1133
1133
|
*/
|
1134
1134
|
dataType: DataType;
|
1135
1135
|
/**
|
@@ -1157,7 +1157,7 @@ declare namespace FraudDetector {
|
|
1157
1157
|
}
|
1158
1158
|
export type CsvIndexToVariableMap = {[key: string]: string};
|
1159
1159
|
export type DataSource = "EVENT"|"MODEL_SCORE"|"EXTERNAL_MODEL_SCORE"|string;
|
1160
|
-
export type DataType = "STRING"|"INTEGER"|"FLOAT"|"BOOLEAN"|string;
|
1160
|
+
export type DataType = "STRING"|"INTEGER"|"FLOAT"|"BOOLEAN"|"DATETIME"|string;
|
1161
1161
|
export interface DataValidationMetrics {
|
1162
1162
|
/**
|
1163
1163
|
* The file-specific model training data validation messages.
|
@@ -1223,7 +1223,7 @@ declare namespace FraudDetector {
|
|
1223
1223
|
*/
|
1224
1224
|
eventTypeName: identifier;
|
1225
1225
|
/**
|
1226
|
-
* Specifies whether or not to delete any predictions associated with the event.
|
1226
|
+
* Specifies whether or not to delete any predictions associated with the event. If set to True,
|
1227
1227
|
*/
|
1228
1228
|
deleteAuditHistory?: DeleteAuditHistory;
|
1229
1229
|
}
|
@@ -77,11 +77,11 @@ declare class IAM extends Service {
|
|
77
77
|
*/
|
78
78
|
createAccessKey(callback?: (err: AWSError, data: IAM.Types.CreateAccessKeyResponse) => void): Request<IAM.Types.CreateAccessKeyResponse, AWSError>;
|
79
79
|
/**
|
80
|
-
* Creates an alias for your Amazon Web Services account. For information about using an Amazon Web Services account alias, see
|
80
|
+
* Creates an alias for your Amazon Web Services account. For information about using an Amazon Web Services account alias, see Creating, deleting, and listing an Amazon Web Services account alias in the Amazon Web Services Sign-In User Guide.
|
81
81
|
*/
|
82
82
|
createAccountAlias(params: IAM.Types.CreateAccountAliasRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
83
83
|
/**
|
84
|
-
* Creates an alias for your Amazon Web Services account. For information about using an Amazon Web Services account alias, see
|
84
|
+
* Creates an alias for your Amazon Web Services account. For information about using an Amazon Web Services account alias, see Creating, deleting, and listing an Amazon Web Services account alias in the Amazon Web Services Sign-In User Guide.
|
85
85
|
*/
|
86
86
|
createAccountAlias(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
87
87
|
/**
|
@@ -197,11 +197,11 @@ declare class IAM extends Service {
|
|
197
197
|
*/
|
198
198
|
deleteAccessKey(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
199
199
|
/**
|
200
|
-
* Deletes the specified Amazon Web Services account alias. For information about using an Amazon Web Services account alias, see
|
200
|
+
* Deletes the specified Amazon Web Services account alias. For information about using an Amazon Web Services account alias, see Creating, deleting, and listing an Amazon Web Services account alias in the Amazon Web Services Sign-In User Guide.
|
201
201
|
*/
|
202
202
|
deleteAccountAlias(params: IAM.Types.DeleteAccountAliasRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
203
203
|
/**
|
204
|
-
* Deletes the specified Amazon Web Services account alias. For information about using an Amazon Web Services account alias, see
|
204
|
+
* Deletes the specified Amazon Web Services account alias. For information about using an Amazon Web Services account alias, see Creating, deleting, and listing an Amazon Web Services account alias in the Amazon Web Services Sign-In User Guide.
|
205
205
|
*/
|
206
206
|
deleteAccountAlias(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
207
207
|
/**
|
@@ -617,11 +617,11 @@ declare class IAM extends Service {
|
|
617
617
|
*/
|
618
618
|
listAccessKeys(callback?: (err: AWSError, data: IAM.Types.ListAccessKeysResponse) => void): Request<IAM.Types.ListAccessKeysResponse, AWSError>;
|
619
619
|
/**
|
620
|
-
* Lists the account alias associated with the Amazon Web Services account (Note: you can have only one). For information about using an Amazon Web Services account alias, see
|
620
|
+
* Lists the account alias associated with the Amazon Web Services account (Note: you can have only one). For information about using an Amazon Web Services account alias, see Creating, deleting, and listing an Amazon Web Services account alias in the Amazon Web Services Sign-In User Guide.
|
621
621
|
*/
|
622
622
|
listAccountAliases(params: IAM.Types.ListAccountAliasesRequest, callback?: (err: AWSError, data: IAM.Types.ListAccountAliasesResponse) => void): Request<IAM.Types.ListAccountAliasesResponse, AWSError>;
|
623
623
|
/**
|
624
|
-
* Lists the account alias associated with the Amazon Web Services account (Note: you can have only one). For information about using an Amazon Web Services account alias, see
|
624
|
+
* Lists the account alias associated with the Amazon Web Services account (Note: you can have only one). For information about using an Amazon Web Services account alias, see Creating, deleting, and listing an Amazon Web Services account alias in the Amazon Web Services Sign-In User Guide.
|
625
625
|
*/
|
626
626
|
listAccountAliases(callback?: (err: AWSError, data: IAM.Types.ListAccountAliasesResponse) => void): Request<IAM.Types.ListAccountAliasesResponse, AWSError>;
|
627
627
|
/**
|
@@ -5166,7 +5166,7 @@ declare namespace IAM {
|
|
5166
5166
|
*/
|
5167
5167
|
SerialNumber: serialNumberType;
|
5168
5168
|
/**
|
5169
|
-
* The base32 seed defined as specified in RFC3548. The Base32StringSeed is
|
5169
|
+
* The base32 seed defined as specified in RFC3548. The Base32StringSeed is base32-encoded.
|
5170
5170
|
*/
|
5171
5171
|
Base32StringSeed?: BootstrapDatum;
|
5172
5172
|
/**
|
@@ -844,6 +844,17 @@ declare namespace Inspector2 {
|
|
844
844
|
groupKey?: GroupKey;
|
845
845
|
}
|
846
846
|
export type CountsList = Counts[];
|
847
|
+
export interface CoverageDateFilter {
|
848
|
+
/**
|
849
|
+
* A timestamp representing the end of the time period to filter results by.
|
850
|
+
*/
|
851
|
+
endInclusive?: DateTimeTimestamp;
|
852
|
+
/**
|
853
|
+
* A timestamp representing the start of the time period to filter results by.
|
854
|
+
*/
|
855
|
+
startInclusive?: DateTimeTimestamp;
|
856
|
+
}
|
857
|
+
export type CoverageDateFilterList = CoverageDateFilter[];
|
847
858
|
export interface CoverageFilterCriteria {
|
848
859
|
/**
|
849
860
|
* An array of Amazon Web Services account IDs to return coverage statistics for.
|
@@ -873,12 +884,16 @@ declare namespace Inspector2 {
|
|
873
884
|
* Returns coverage statistics for AWS Lambda functions filtered by tag.
|
874
885
|
*/
|
875
886
|
lambdaFunctionTags?: CoverageMapFilterList;
|
887
|
+
/**
|
888
|
+
* Filters Amazon Web Services resources based on whether Amazon Inspector has checked them for vulnerabilities within the specified time range.
|
889
|
+
*/
|
890
|
+
lastScannedAt?: CoverageDateFilterList;
|
876
891
|
/**
|
877
892
|
* An array of Amazon Web Services resource IDs to return coverage statistics for.
|
878
893
|
*/
|
879
894
|
resourceId?: CoverageStringFilterList;
|
880
895
|
/**
|
881
|
-
* An array of Amazon Web Services resource types to return coverage statistics for. The values can be AWS_EC2_INSTANCE or AWS_ECR_REPOSITORY.
|
896
|
+
* An array of Amazon Web Services resource types to return coverage statistics for. The values can be AWS_EC2_INSTANCE, AWS_LAMBDA_FUNCTION or AWS_ECR_REPOSITORY.
|
882
897
|
*/
|
883
898
|
resourceType?: CoverageStringFilterList;
|
884
899
|
/**
|
@@ -929,6 +944,10 @@ declare namespace Inspector2 {
|
|
929
944
|
* The Amazon Web Services account ID of the covered resource.
|
930
945
|
*/
|
931
946
|
accountId: AccountId;
|
947
|
+
/**
|
948
|
+
* The date and time the resource was last checked for vulnerabilities.
|
949
|
+
*/
|
950
|
+
lastScannedAt?: DateTimeTimestamp;
|
932
951
|
/**
|
933
952
|
* The ID of the covered resource.
|
934
953
|
*/
|