cdk-comprehend-s3olap 2.0.48 → 2.0.49
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 +10 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/appsync-2017-07-25.min.json +34 -3
- package/node_modules/aws-sdk/apis/detective-2018-10-26.min.json +213 -39
- package/node_modules/aws-sdk/apis/detective-2018-10-26.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/guardduty-2017-11-28.min.json +776 -162
- package/node_modules/aws-sdk/apis/guardduty-2017-11-28.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/lookoutvision-2020-11-20.min.json +13 -4
- package/node_modules/aws-sdk/apis/macie2-2020-01-01.min.json +149 -6
- package/node_modules/aws-sdk/apis/macie2-2020-01-01.waiters2.json +25 -0
- package/node_modules/aws-sdk/apis/rekognition-2016-06-27.min.json +7 -1
- package/node_modules/aws-sdk/apis/transfer-2018-11-05.min.json +717 -67
- package/node_modules/aws-sdk/apis/transfer-2018-11-05.paginators.json +24 -0
- package/node_modules/aws-sdk/clients/appsync.d.ts +41 -3
- package/node_modules/aws-sdk/clients/autoscaling.d.ts +118 -118
- package/node_modules/aws-sdk/clients/detective.d.ts +176 -4
- package/node_modules/aws-sdk/clients/guardduty.d.ts +604 -1
- package/node_modules/aws-sdk/clients/lookoutvision.d.ts +14 -2
- package/node_modules/aws-sdk/clients/macie2.d.ts +131 -9
- package/node_modules/aws-sdk/clients/macie2.js +1 -0
- package/node_modules/aws-sdk/clients/rds.d.ts +2 -2
- package/node_modules/aws-sdk/clients/rekognition.d.ts +12 -4
- package/node_modules/aws-sdk/clients/securityhub.d.ts +3 -3
- package/node_modules/aws-sdk/clients/transfer.d.ts +1000 -86
- 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 +567 -560
- package/node_modules/aws-sdk/dist/aws-sdk.js +10 -4
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +22 -22
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +6 -6
@@ -9,6 +9,24 @@
|
|
9
9
|
"output_token": "NextToken",
|
10
10
|
"result_key": "Accesses"
|
11
11
|
},
|
12
|
+
"ListAgreements": {
|
13
|
+
"input_token": "NextToken",
|
14
|
+
"limit_key": "MaxResults",
|
15
|
+
"output_token": "NextToken",
|
16
|
+
"result_key": "Agreements"
|
17
|
+
},
|
18
|
+
"ListCertificates": {
|
19
|
+
"input_token": "NextToken",
|
20
|
+
"limit_key": "MaxResults",
|
21
|
+
"output_token": "NextToken",
|
22
|
+
"result_key": "Certificates"
|
23
|
+
},
|
24
|
+
"ListConnectors": {
|
25
|
+
"input_token": "NextToken",
|
26
|
+
"limit_key": "MaxResults",
|
27
|
+
"output_token": "NextToken",
|
28
|
+
"result_key": "Connectors"
|
29
|
+
},
|
12
30
|
"ListExecutions": {
|
13
31
|
"input_token": "NextToken",
|
14
32
|
"limit_key": "MaxResults",
|
@@ -18,6 +36,12 @@
|
|
18
36
|
"output_token": "NextToken",
|
19
37
|
"result_key": "Executions"
|
20
38
|
},
|
39
|
+
"ListProfiles": {
|
40
|
+
"input_token": "NextToken",
|
41
|
+
"limit_key": "MaxResults",
|
42
|
+
"output_token": "NextToken",
|
43
|
+
"result_key": "Profiles"
|
44
|
+
},
|
21
45
|
"ListSecurityPolicies": {
|
22
46
|
"input_token": "NextToken",
|
23
47
|
"limit_key": "MaxResults",
|
@@ -155,6 +155,14 @@ declare class AppSync extends Service {
|
|
155
155
|
* Removes an ApiAssociation object from a custom domain.
|
156
156
|
*/
|
157
157
|
disassociateApi(callback?: (err: AWSError, data: AppSync.Types.DisassociateApiResponse) => void): Request<AppSync.Types.DisassociateApiResponse, AWSError>;
|
158
|
+
/**
|
159
|
+
* Evaluates a given template and returns the response. The mapping template can be a request or response template. Request templates take the incoming request after a GraphQL operation is parsed and convert it into a request configuration for the selected data source operation. Response templates interpret responses from the data source and map it to the shape of the GraphQL field output type. Mapping templates are written in the Apache Velocity Template Language (VTL).
|
160
|
+
*/
|
161
|
+
evaluateMappingTemplate(params: AppSync.Types.EvaluateMappingTemplateRequest, callback?: (err: AWSError, data: AppSync.Types.EvaluateMappingTemplateResponse) => void): Request<AppSync.Types.EvaluateMappingTemplateResponse, AWSError>;
|
162
|
+
/**
|
163
|
+
* Evaluates a given template and returns the response. The mapping template can be a request or response template. Request templates take the incoming request after a GraphQL operation is parsed and convert it into a request configuration for the selected data source operation. Response templates interpret responses from the data source and map it to the shape of the GraphQL field output type. Mapping templates are written in the Apache Velocity Template Language (VTL).
|
164
|
+
*/
|
165
|
+
evaluateMappingTemplate(callback?: (err: AWSError, data: AppSync.Types.EvaluateMappingTemplateResponse) => void): Request<AppSync.Types.EvaluateMappingTemplateResponse, AWSError>;
|
158
166
|
/**
|
159
167
|
* Flushes an ApiCache object.
|
160
168
|
*/
|
@@ -536,7 +544,7 @@ declare namespace AppSync {
|
|
536
544
|
/**
|
537
545
|
* The TTL in seconds for a resolver that has caching activated. Valid values are 1–3,600 seconds.
|
538
546
|
*/
|
539
|
-
ttl
|
547
|
+
ttl: Long;
|
540
548
|
/**
|
541
549
|
* The caching keys for a resolver that has caching activated. Valid values are entries from the $context.arguments, $context.source, and $context.identity maps.
|
542
550
|
*/
|
@@ -554,12 +562,13 @@ declare namespace AppSync {
|
|
554
562
|
*/
|
555
563
|
awsRegion: String;
|
556
564
|
/**
|
557
|
-
* A regular expression for validating the incoming Amazon Cognito user pool app client ID.
|
565
|
+
* A regular expression for validating the incoming Amazon Cognito user pool app client ID. If this value isn't set, no filtering is applied.
|
558
566
|
*/
|
559
567
|
appIdClientRegex?: String;
|
560
568
|
}
|
561
569
|
export type ConflictDetectionType = "VERSION"|"NONE"|string;
|
562
570
|
export type ConflictHandlerType = "OPTIMISTIC_CONCURRENCY"|"LAMBDA"|"AUTOMERGE"|"NONE"|string;
|
571
|
+
export type Context = string;
|
563
572
|
export interface CreateApiCacheRequest {
|
564
573
|
/**
|
565
574
|
* The GraphQL API ID.
|
@@ -1057,6 +1066,34 @@ declare namespace AppSync {
|
|
1057
1066
|
*/
|
1058
1067
|
awsRegion: String;
|
1059
1068
|
}
|
1069
|
+
export interface ErrorDetail {
|
1070
|
+
/**
|
1071
|
+
* The error payload.
|
1072
|
+
*/
|
1073
|
+
message?: ErrorMessage;
|
1074
|
+
}
|
1075
|
+
export type ErrorMessage = string;
|
1076
|
+
export interface EvaluateMappingTemplateRequest {
|
1077
|
+
/**
|
1078
|
+
* The mapping template; this can be a request or response template. A template is required for this action.
|
1079
|
+
*/
|
1080
|
+
template: Template;
|
1081
|
+
/**
|
1082
|
+
* The map that holds all of the contextual information for your resolver invocation. A context is required for this action.
|
1083
|
+
*/
|
1084
|
+
context: Context;
|
1085
|
+
}
|
1086
|
+
export interface EvaluateMappingTemplateResponse {
|
1087
|
+
/**
|
1088
|
+
* The mapping template; this can be a request or response template.
|
1089
|
+
*/
|
1090
|
+
evaluationResult?: EvaluationResult;
|
1091
|
+
/**
|
1092
|
+
* The ErrorDetail object.
|
1093
|
+
*/
|
1094
|
+
error?: ErrorDetail;
|
1095
|
+
}
|
1096
|
+
export type EvaluationResult = string;
|
1060
1097
|
export type FieldLogLevel = "NONE"|"ERROR"|"ALL"|string;
|
1061
1098
|
export interface FlushApiCacheRequest {
|
1062
1099
|
/**
|
@@ -1749,6 +1786,7 @@ declare namespace AppSync {
|
|
1749
1786
|
export interface TagResourceResponse {
|
1750
1787
|
}
|
1751
1788
|
export type TagValue = string;
|
1789
|
+
export type Template = string;
|
1752
1790
|
export interface Type {
|
1753
1791
|
/**
|
1754
1792
|
* The type name.
|
@@ -2080,7 +2118,7 @@ declare namespace AppSync {
|
|
2080
2118
|
*/
|
2081
2119
|
defaultAction: DefaultAction;
|
2082
2120
|
/**
|
2083
|
-
* A regular expression for validating the incoming Amazon Cognito user pool app client ID.
|
2121
|
+
* A regular expression for validating the incoming Amazon Cognito user pool app client ID. If this value isn't set, no filtering is applied.
|
2084
2122
|
*/
|
2085
2123
|
appIdClientRegex?: String;
|
2086
2124
|
}
|