cdk-lambda-subminute 2.0.355 → 2.0.357
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-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/athena-2017-05-18.min.json +1 -1
- package/node_modules/aws-sdk/apis/b2bi-2022-06-23.examples.json +709 -0
- package/node_modules/aws-sdk/apis/cloudtrail-2013-11-01.min.json +53 -0
- package/node_modules/aws-sdk/apis/cloudtrail-2013-11-01.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/codebuild-2016-10-06.min.json +335 -119
- package/node_modules/aws-sdk/apis/codebuild-2016-10-06.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/dynamodb-2012-08-10.min.json +83 -36
- package/node_modules/aws-sdk/apis/firehose-2015-08-04.min.json +258 -30
- package/node_modules/aws-sdk/clients/athena.d.ts +9 -5
- package/node_modules/aws-sdk/clients/b2bi.d.ts +2 -2
- package/node_modules/aws-sdk/clients/cloudtrail.d.ts +101 -11
- package/node_modules/aws-sdk/clients/codebuild.d.ts +287 -2
- package/node_modules/aws-sdk/clients/connect.d.ts +5 -5
- package/node_modules/aws-sdk/clients/dynamodb.d.ts +68 -3
- package/node_modules/aws-sdk/clients/firehose.d.ts +231 -0
- package/node_modules/aws-sdk/clients/sagemakerfeaturestoreruntime.d.ts +2 -2
- 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 +8 -8
- package/node_modules/aws-sdk/dist/aws-sdk.js +743 -189
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +104 -103
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/dynamodb/document_client.d.ts +60 -3
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +3 -3
@@ -899,6 +899,59 @@
|
|
899
899
|
},
|
900
900
|
"idempotent": true
|
901
901
|
},
|
902
|
+
"ListInsightsMetricData": {
|
903
|
+
"input": {
|
904
|
+
"type": "structure",
|
905
|
+
"required": [
|
906
|
+
"EventSource",
|
907
|
+
"EventName",
|
908
|
+
"InsightType"
|
909
|
+
],
|
910
|
+
"members": {
|
911
|
+
"EventSource": {},
|
912
|
+
"EventName": {},
|
913
|
+
"InsightType": {},
|
914
|
+
"ErrorCode": {},
|
915
|
+
"StartTime": {
|
916
|
+
"type": "timestamp"
|
917
|
+
},
|
918
|
+
"EndTime": {
|
919
|
+
"type": "timestamp"
|
920
|
+
},
|
921
|
+
"Period": {
|
922
|
+
"type": "integer"
|
923
|
+
},
|
924
|
+
"DataType": {},
|
925
|
+
"MaxResults": {
|
926
|
+
"type": "integer"
|
927
|
+
},
|
928
|
+
"NextToken": {}
|
929
|
+
}
|
930
|
+
},
|
931
|
+
"output": {
|
932
|
+
"type": "structure",
|
933
|
+
"members": {
|
934
|
+
"EventSource": {},
|
935
|
+
"EventName": {},
|
936
|
+
"InsightType": {},
|
937
|
+
"ErrorCode": {},
|
938
|
+
"Timestamps": {
|
939
|
+
"type": "list",
|
940
|
+
"member": {
|
941
|
+
"type": "timestamp"
|
942
|
+
}
|
943
|
+
},
|
944
|
+
"Values": {
|
945
|
+
"type": "list",
|
946
|
+
"member": {
|
947
|
+
"type": "double"
|
948
|
+
}
|
949
|
+
},
|
950
|
+
"NextToken": {}
|
951
|
+
}
|
952
|
+
},
|
953
|
+
"idempotent": true
|
954
|
+
},
|
902
955
|
"ListPublicKeys": {
|
903
956
|
"input": {
|
904
957
|
"type": "structure",
|
@@ -29,6 +29,11 @@
|
|
29
29
|
"output_token": "NextToken",
|
30
30
|
"result_key": "Imports"
|
31
31
|
},
|
32
|
+
"ListInsightsMetricData": {
|
33
|
+
"input_token": "NextToken",
|
34
|
+
"limit_key": "MaxResults",
|
35
|
+
"output_token": "NextToken"
|
36
|
+
},
|
32
37
|
"ListPublicKeys": {
|
33
38
|
"input_token": "NextToken",
|
34
39
|
"output_token": "NextToken",
|