cdk-comprehend-s3olap 2.0.342 → 2.0.344
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 +14 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/cloudfront-2020-05-31.examples.json +251 -0
- package/node_modules/aws-sdk/apis/cloudfront-2020-05-31.min.json +349 -106
- package/node_modules/aws-sdk/apis/cloudfront-2020-05-31.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/cloudfront-keyvaluestore-2022-07-26.examples.json +5 -0
- package/node_modules/aws-sdk/apis/cloudfront-keyvaluestore-2022-07-26.min.json +359 -0
- package/node_modules/aws-sdk/apis/cloudfront-keyvaluestore-2022-07-26.paginators.json +10 -0
- package/node_modules/aws-sdk/apis/inspector-scan-2023-08-08.examples.json +174 -0
- package/node_modules/aws-sdk/apis/inspector-scan-2023-08-08.min.json +51 -0
- package/node_modules/aws-sdk/apis/inspector-scan-2023-08-08.paginators.json +4 -0
- package/node_modules/aws-sdk/apis/iotsitewise-2019-12-02.min.json +989 -176
- package/node_modules/aws-sdk/apis/iotsitewise-2019-12-02.paginators.json +24 -0
- package/node_modules/aws-sdk/apis/iottwinmaker-2021-11-29.min.json +729 -131
- package/node_modules/aws-sdk/apis/iottwinmaker-2021-11-29.paginators.json +15 -0
- package/node_modules/aws-sdk/apis/kinesis-2013-12-02.min.json +92 -21
- package/node_modules/aws-sdk/apis/metadata.json +8 -0
- package/node_modules/aws-sdk/apis/s3-2006-03-01.examples.json +152 -152
- package/node_modules/aws-sdk/apis/s3-2006-03-01.min.json +109 -92
- package/node_modules/aws-sdk/apis/s3control-2018-08-20.min.json +112 -84
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +544 -533
- package/node_modules/aws-sdk/clients/all.d.ts +2 -0
- package/node_modules/aws-sdk/clients/all.js +3 -1
- package/node_modules/aws-sdk/clients/cloudfront.d.ts +220 -2
- package/node_modules/aws-sdk/clients/cloudfrontkeyvaluestore.d.ts +294 -0
- package/node_modules/aws-sdk/clients/cloudfrontkeyvaluestore.js +18 -0
- package/node_modules/aws-sdk/clients/ec2.d.ts +12 -12
- package/node_modules/aws-sdk/clients/inspectorscan.d.ts +59 -0
- package/node_modules/aws-sdk/clients/inspectorscan.js +18 -0
- package/node_modules/aws-sdk/clients/iotsitewise.d.ts +1080 -179
- package/node_modules/aws-sdk/clients/iottwinmaker.d.ts +666 -9
- package/node_modules/aws-sdk/clients/kinesis.d.ts +96 -42
- package/node_modules/aws-sdk/clients/s3.d.ts +38 -15
- package/node_modules/aws-sdk/clients/s3control.d.ts +35 -3
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +13 -2
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +89 -15
- package/node_modules/aws-sdk/dist/aws-sdk.js +601 -225
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +93 -92
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +4 -0
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/services/s3.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +5 -6
@@ -1,5 +1,256 @@
|
|
1
1
|
{
|
2
2
|
"version": "1.0",
|
3
3
|
"examples": {
|
4
|
+
"CreateFunction": [
|
5
|
+
{
|
6
|
+
"input": {
|
7
|
+
"FunctionCode": "function-code.js",
|
8
|
+
"FunctionConfig": {
|
9
|
+
"Comment": "my-function-comment",
|
10
|
+
"KeyValueStoreAssociations": {
|
11
|
+
"Items": [
|
12
|
+
{
|
13
|
+
"KeyValueStoreARN": "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889"
|
14
|
+
}
|
15
|
+
],
|
16
|
+
"Quantity": 1
|
17
|
+
},
|
18
|
+
"Runtime": "cloudfront-js-2.0"
|
19
|
+
},
|
20
|
+
"Name": "my-function-name"
|
21
|
+
},
|
22
|
+
"output": {
|
23
|
+
"ETag": "ETVPDKIKX0DER",
|
24
|
+
"FunctionSummary": {
|
25
|
+
"FunctionConfig": {
|
26
|
+
"Comment": "my-function-comment",
|
27
|
+
"KeyValueStoreAssociations": {
|
28
|
+
"Items": [
|
29
|
+
{
|
30
|
+
"KeyValueStoreARN": "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889"
|
31
|
+
}
|
32
|
+
],
|
33
|
+
"Quantity": 1
|
34
|
+
},
|
35
|
+
"Runtime": "cloudfront-js-2.0"
|
36
|
+
},
|
37
|
+
"FunctionMetadata": {
|
38
|
+
"CreatedTime": "2023-11-07T19:53:50.334Z",
|
39
|
+
"FunctionARN": "arn:aws:cloudfront::123456789012:function/my-function-name",
|
40
|
+
"LastModifiedTime": "2023-11-07T19:53:50.334Z",
|
41
|
+
"Stage": "DEVELOPMENT"
|
42
|
+
},
|
43
|
+
"Name": "my-function-name",
|
44
|
+
"Status": "UNPUBLISHED"
|
45
|
+
},
|
46
|
+
"Location": "https://cloudfront.amazonaws.com/2020-05-31/function/arn:aws:cloudfront::123456789012:function/my-function-name"
|
47
|
+
},
|
48
|
+
"comments": {
|
49
|
+
"input": {
|
50
|
+
},
|
51
|
+
"output": {
|
52
|
+
}
|
53
|
+
},
|
54
|
+
"description": "Use the following command to create a function.",
|
55
|
+
"id": "to-create-a-function-1699737558249",
|
56
|
+
"title": "To create a function"
|
57
|
+
}
|
58
|
+
],
|
59
|
+
"CreateKeyValueStore": [
|
60
|
+
{
|
61
|
+
"input": {
|
62
|
+
"Comment": "my-key-valuestore-comment",
|
63
|
+
"ImportSource": {
|
64
|
+
"SourceARN": "arn:aws:s3:::my-bucket/validJSON.json",
|
65
|
+
"SourceType": "S3"
|
66
|
+
},
|
67
|
+
"Name": "my-keyvaluestore-name"
|
68
|
+
},
|
69
|
+
"output": {
|
70
|
+
"ETag": "ETVPDKIKX0DER",
|
71
|
+
"KeyValueStore": {
|
72
|
+
"ARN": "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889",
|
73
|
+
"Comment": "my-key-valuestore-comment",
|
74
|
+
"Id": "54947df8-0e9e-4471-a2f9-9af509fb5889",
|
75
|
+
"LastModifiedTime": "2023-11-07T18:15:52.042Z",
|
76
|
+
"Name": "my-keyvaluestore-name",
|
77
|
+
"Status": "PROVISIONING"
|
78
|
+
},
|
79
|
+
"Location": "https://cloudfront.amazonaws.com/2020-05-31/key-value-store/arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889"
|
80
|
+
},
|
81
|
+
"comments": {
|
82
|
+
"input": {
|
83
|
+
},
|
84
|
+
"output": {
|
85
|
+
}
|
86
|
+
},
|
87
|
+
"description": "Use the following command to create a KeyValueStore.",
|
88
|
+
"id": "to-create-a-key-value-store-1699751722467",
|
89
|
+
"title": "To create a KeyValueStore"
|
90
|
+
}
|
91
|
+
],
|
92
|
+
"DeleteKeyValueStore": [
|
93
|
+
{
|
94
|
+
"input": {
|
95
|
+
"IfMatch": "ETVPDKIKX0DER",
|
96
|
+
"Name": "my-keyvaluestore-name"
|
97
|
+
},
|
98
|
+
"comments": {
|
99
|
+
"input": {
|
100
|
+
},
|
101
|
+
"output": {
|
102
|
+
}
|
103
|
+
},
|
104
|
+
"description": "Use the following command to delete a KeyValueStore.",
|
105
|
+
"id": "to-delete-a-key-value-store-1699751759648",
|
106
|
+
"title": "To delete a KeyValueStore"
|
107
|
+
}
|
108
|
+
],
|
109
|
+
"DescribeKeyValueStore": [
|
110
|
+
{
|
111
|
+
"input": {
|
112
|
+
"Name": "my-keyvaluestore-name"
|
113
|
+
},
|
114
|
+
"output": {
|
115
|
+
"ETag": "ETVPDKIKX0DER",
|
116
|
+
"KeyValueStore": {
|
117
|
+
"ARN": "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889",
|
118
|
+
"Comment": "my-key-valuestore-comment",
|
119
|
+
"Id": "54947df8-0e9e-4471-a2f9-9af509fb5889",
|
120
|
+
"LastModifiedTime": "2023-11-07T18:20:33.056Z",
|
121
|
+
"Name": "my-keyvaluestore-name",
|
122
|
+
"Status": "READY"
|
123
|
+
}
|
124
|
+
},
|
125
|
+
"comments": {
|
126
|
+
"input": {
|
127
|
+
},
|
128
|
+
"output": {
|
129
|
+
}
|
130
|
+
},
|
131
|
+
"description": "Use the following command to describe a KeyValueStore.",
|
132
|
+
"id": "to-describe-a-key-value-store-1699751788152",
|
133
|
+
"title": "To describe a KeyValueStore"
|
134
|
+
}
|
135
|
+
],
|
136
|
+
"ListKeyValueStores": [
|
137
|
+
{
|
138
|
+
"input": {
|
139
|
+
"Marker": "",
|
140
|
+
"MaxItems": "100",
|
141
|
+
"Status": "READY"
|
142
|
+
},
|
143
|
+
"output": {
|
144
|
+
"KeyValueStoreList": {
|
145
|
+
"Items": [
|
146
|
+
{
|
147
|
+
"ARN": "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889",
|
148
|
+
"Comment": "",
|
149
|
+
"Id": "54947df8-0e9e-4471-a2f9-9af509fb5889",
|
150
|
+
"LastModifiedTime": "2023-11-07T18:45:21.069Z",
|
151
|
+
"Name": "my-keyvaluestore-name",
|
152
|
+
"Status": "READY"
|
153
|
+
}
|
154
|
+
],
|
155
|
+
"MaxItems": 100,
|
156
|
+
"NextMarker": "",
|
157
|
+
"Quantity": 1
|
158
|
+
}
|
159
|
+
},
|
160
|
+
"comments": {
|
161
|
+
"input": {
|
162
|
+
},
|
163
|
+
"output": {
|
164
|
+
}
|
165
|
+
},
|
166
|
+
"description": "The following command retrieves a list of KeyValueStores with READY status.",
|
167
|
+
"id": "to-get-a-list-of-key-value-store-1699751799198",
|
168
|
+
"title": "To get a list of KeyValueStores"
|
169
|
+
}
|
170
|
+
],
|
171
|
+
"UpdateFunction": [
|
172
|
+
{
|
173
|
+
"input": {
|
174
|
+
"FunctionCode": "function-code-changed.js",
|
175
|
+
"FunctionConfig": {
|
176
|
+
"Comment": "my-changed-comment",
|
177
|
+
"KeyValueStoreAssociations": {
|
178
|
+
"Items": [
|
179
|
+
{
|
180
|
+
"KeyValueStoreARN": "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889"
|
181
|
+
}
|
182
|
+
],
|
183
|
+
"Quantity": 1
|
184
|
+
},
|
185
|
+
"Runtime": "cloudfront-js-2.0"
|
186
|
+
},
|
187
|
+
"IfMatch": "ETVPDKIKX0DER",
|
188
|
+
"Name": "my-function-name"
|
189
|
+
},
|
190
|
+
"output": {
|
191
|
+
"ETag": "E3UN6WX5RRO2AG",
|
192
|
+
"FunctionSummary": {
|
193
|
+
"FunctionConfig": {
|
194
|
+
"Comment": "my-changed-comment",
|
195
|
+
"KeyValueStoreAssociations": {
|
196
|
+
"Items": [
|
197
|
+
{
|
198
|
+
"KeyValueStoreARN": "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889"
|
199
|
+
}
|
200
|
+
],
|
201
|
+
"Quantity": 1
|
202
|
+
},
|
203
|
+
"Runtime": "cloudfront-js-2.0"
|
204
|
+
},
|
205
|
+
"FunctionMetadata": {
|
206
|
+
"CreatedTime": "2023-11-07T19:53:50.334Z",
|
207
|
+
"FunctionARN": "arn:aws:cloudfront::123456789012:function/my-function-name",
|
208
|
+
"LastModifiedTime": "2023-11-07T20:01:37.174Z",
|
209
|
+
"Stage": "DEVELOPMENT"
|
210
|
+
},
|
211
|
+
"Name": "my-function-name",
|
212
|
+
"Status": "UNPUBLISHED"
|
213
|
+
}
|
214
|
+
},
|
215
|
+
"comments": {
|
216
|
+
"input": {
|
217
|
+
},
|
218
|
+
"output": {
|
219
|
+
}
|
220
|
+
},
|
221
|
+
"description": "Use the following command to update a function.",
|
222
|
+
"id": "to-update-a-function-1699751865053",
|
223
|
+
"title": "To update a function"
|
224
|
+
}
|
225
|
+
],
|
226
|
+
"UpdateKeyValueStore": [
|
227
|
+
{
|
228
|
+
"input": {
|
229
|
+
"Comment": "my-changed-comment",
|
230
|
+
"IfMatch": "ETVPDKIKX0DER",
|
231
|
+
"Name": "my-keyvaluestore-name"
|
232
|
+
},
|
233
|
+
"output": {
|
234
|
+
"ETag": "E3UN6WX5RRO2AG",
|
235
|
+
"KeyValueStore": {
|
236
|
+
"ARN": "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889",
|
237
|
+
"Comment": "my-changed-comment",
|
238
|
+
"Id": "54947df8-0e9e-4471-a2f9-9af509fb5889",
|
239
|
+
"LastModifiedTime": "2023-11-07T18:45:21.069Z",
|
240
|
+
"Name": "my-keyvaluestore-name",
|
241
|
+
"Status": "READY"
|
242
|
+
}
|
243
|
+
},
|
244
|
+
"comments": {
|
245
|
+
"input": {
|
246
|
+
},
|
247
|
+
"output": {
|
248
|
+
}
|
249
|
+
},
|
250
|
+
"description": "Use the following command to update a KeyValueStore.",
|
251
|
+
"id": "to-update-a-key-value-store-1699751822090",
|
252
|
+
"title": "To update a KeyValueStore"
|
253
|
+
}
|
254
|
+
]
|
4
255
|
}
|
5
256
|
}
|