cdk-comprehend-s3olap 2.0.330 → 2.0.332

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.
Files changed (43) hide show
  1. package/.jsii +3 -3
  2. package/lib/cdk-comprehend-s3olap.js +2 -2
  3. package/lib/comprehend-lambdas.js +2 -2
  4. package/lib/iam-roles.js +4 -4
  5. package/node_modules/aws-sdk/CHANGELOG.md +22 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/cloudformation-2010-05-15.min.json +48 -47
  8. package/node_modules/aws-sdk/apis/cloudtrail-2013-11-01.min.json +11 -8
  9. package/node_modules/aws-sdk/apis/comprehend-2017-11-27.min.json +55 -0
  10. package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +4 -0
  11. package/node_modules/aws-sdk/apis/controltower-2018-05-10.min.json +104 -9
  12. package/node_modules/aws-sdk/apis/cur-2017-01-06.min.json +86 -1
  13. package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +1070 -950
  14. package/node_modules/aws-sdk/apis/eks-2017-11-01.min.json +242 -39
  15. package/node_modules/aws-sdk/apis/entitlement.marketplace-2017-01-11.paginators.json +5 -0
  16. package/node_modules/aws-sdk/apis/logs-2014-03-28.min.json +372 -26
  17. package/node_modules/aws-sdk/apis/logs-2014-03-28.paginators.json +18 -0
  18. package/node_modules/aws-sdk/apis/mediaconvert-2017-08-29.min.json +177 -164
  19. package/node_modules/aws-sdk/apis/omics-2022-11-28.min.json +1 -3
  20. package/node_modules/aws-sdk/apis/sqs-2012-11-05.min.json +13 -13
  21. package/node_modules/aws-sdk/clients/cloudformation.d.ts +15 -10
  22. package/node_modules/aws-sdk/clients/cloudtrail.d.ts +50 -22
  23. package/node_modules/aws-sdk/clients/cloudwatchlogs.d.ts +422 -2
  24. package/node_modules/aws-sdk/clients/comprehend.d.ts +73 -19
  25. package/node_modules/aws-sdk/clients/connect.d.ts +5 -1
  26. package/node_modules/aws-sdk/clients/controltower.d.ts +94 -22
  27. package/node_modules/aws-sdk/clients/cur.d.ts +104 -10
  28. package/node_modules/aws-sdk/clients/ec2.d.ts +136 -7
  29. package/node_modules/aws-sdk/clients/eks.d.ts +221 -9
  30. package/node_modules/aws-sdk/clients/fms.d.ts +6 -6
  31. package/node_modules/aws-sdk/clients/lambda.d.ts +1 -1
  32. package/node_modules/aws-sdk/clients/marketplaceentitlementservice.d.ts +2 -1
  33. package/node_modules/aws-sdk/clients/mediaconvert.d.ts +26 -12
  34. package/node_modules/aws-sdk/clients/omics.d.ts +5 -4
  35. package/node_modules/aws-sdk/clients/rds.d.ts +11 -11
  36. package/node_modules/aws-sdk/clients/sqs.d.ts +1 -2
  37. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  38. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +15 -15
  39. package/node_modules/aws-sdk/dist/aws-sdk.js +1680 -1048
  40. package/node_modules/aws-sdk/dist/aws-sdk.min.js +91 -91
  41. package/node_modules/aws-sdk/lib/core.js +1 -1
  42. package/node_modules/aws-sdk/package.json +1 -1
  43. package/package.json +3 -4
@@ -16,6 +16,9 @@
16
16
  "DeleteReportDefinition": {
17
17
  "input": {
18
18
  "type": "structure",
19
+ "required": [
20
+ "ReportName"
21
+ ],
19
22
  "members": {
20
23
  "ReportName": {}
21
24
  }
@@ -50,6 +53,25 @@
50
53
  }
51
54
  }
52
55
  },
56
+ "ListTagsForResource": {
57
+ "input": {
58
+ "type": "structure",
59
+ "required": [
60
+ "ReportName"
61
+ ],
62
+ "members": {
63
+ "ReportName": {}
64
+ }
65
+ },
66
+ "output": {
67
+ "type": "structure",
68
+ "members": {
69
+ "Tags": {
70
+ "shape": "St"
71
+ }
72
+ }
73
+ }
74
+ },
53
75
  "ModifyReportDefinition": {
54
76
  "input": {
55
77
  "type": "structure",
@@ -78,6 +100,48 @@
78
100
  "members": {
79
101
  "ReportDefinition": {
80
102
  "shape": "Sa"
103
+ },
104
+ "Tags": {
105
+ "shape": "St"
106
+ }
107
+ }
108
+ },
109
+ "output": {
110
+ "type": "structure",
111
+ "members": {}
112
+ }
113
+ },
114
+ "TagResource": {
115
+ "input": {
116
+ "type": "structure",
117
+ "required": [
118
+ "ReportName",
119
+ "Tags"
120
+ ],
121
+ "members": {
122
+ "ReportName": {},
123
+ "Tags": {
124
+ "shape": "St"
125
+ }
126
+ }
127
+ },
128
+ "output": {
129
+ "type": "structure",
130
+ "members": {}
131
+ }
132
+ },
133
+ "UntagResource": {
134
+ "input": {
135
+ "type": "structure",
136
+ "required": [
137
+ "ReportName",
138
+ "TagKeys"
139
+ ],
140
+ "members": {
141
+ "ReportName": {},
142
+ "TagKeys": {
143
+ "type": "list",
144
+ "member": {}
81
145
  }
82
146
  }
83
147
  },
@@ -120,7 +184,28 @@
120
184
  "type": "boolean"
121
185
  },
122
186
  "ReportVersioning": {},
123
- "BillingViewArn": {}
187
+ "BillingViewArn": {},
188
+ "ReportStatus": {
189
+ "type": "structure",
190
+ "members": {
191
+ "lastDelivery": {},
192
+ "lastStatus": {}
193
+ }
194
+ }
195
+ }
196
+ },
197
+ "St": {
198
+ "type": "list",
199
+ "member": {
200
+ "type": "structure",
201
+ "required": [
202
+ "Key",
203
+ "Value"
204
+ ],
205
+ "members": {
206
+ "Key": {},
207
+ "Value": {}
208
+ }
124
209
  }
125
210
  }
126
211
  }