@aws-sdk/client-supplychain 3.775.0 → 3.782.0
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/dist-types/commands/CreateBillOfMaterialsImportJobCommand.d.ts +7 -7
- package/dist-types/commands/CreateDataIntegrationFlowCommand.d.ts +47 -48
- package/dist-types/commands/CreateDataLakeDatasetCommand.d.ts +160 -161
- package/dist-types/commands/CreateInstanceCommand.d.ts +29 -30
- package/dist-types/commands/DeleteDataIntegrationFlowCommand.d.ts +7 -7
- package/dist-types/commands/DeleteDataLakeDatasetCommand.d.ts +16 -17
- package/dist-types/commands/DeleteInstanceCommand.d.ts +14 -14
- package/dist-types/commands/GetBillOfMaterialsImportJobCommand.d.ts +19 -20
- package/dist-types/commands/GetDataIntegrationFlowCommand.d.ts +24 -24
- package/dist-types/commands/GetDataLakeDatasetCommand.d.ts +136 -137
- package/dist-types/commands/GetInstanceCommand.d.ts +27 -28
- package/dist-types/commands/ListDataIntegrationFlowsCommand.d.ts +44 -44
- package/dist-types/commands/ListDataLakeDatasetsCommand.d.ts +157 -158
- package/dist-types/commands/ListInstancesCommand.d.ts +60 -63
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -6
- package/dist-types/commands/SendDataIntegrationEventCommand.d.ts +107 -121
- package/dist-types/commands/TagResourceCommand.d.ts +9 -6
- package/dist-types/commands/UntagResourceCommand.d.ts +8 -5
- package/dist-types/commands/UpdateDataIntegrationFlowCommand.d.ts +80 -81
- package/dist-types/commands/UpdateDataLakeDatasetCommand.d.ts +138 -139
- package/dist-types/commands/UpdateInstanceCommand.d.ts +16 -16
- package/package.json +5 -5
|
@@ -99,268 +99,267 @@ declare const ListDataLakeDatasetsCommand_base: {
|
|
|
99
99
|
* @throws {@link SupplyChainServiceException}
|
|
100
100
|
* <p>Base exception class for all service exceptions from SupplyChain service.</p>
|
|
101
101
|
*
|
|
102
|
-
*
|
|
102
|
+
*
|
|
103
103
|
* @example List AWS Supply Chain datasets
|
|
104
104
|
* ```javascript
|
|
105
105
|
* //
|
|
106
106
|
* const input = {
|
|
107
|
-
*
|
|
108
|
-
*
|
|
107
|
+
* instanceId: "1877dd20-dee9-4639-8e99-cb67acf21fe5",
|
|
108
|
+
* namespace: "asc"
|
|
109
109
|
* };
|
|
110
110
|
* const command = new ListDataLakeDatasetsCommand(input);
|
|
111
111
|
* const response = await client.send(command);
|
|
112
|
-
* /* response
|
|
112
|
+
* /* response is
|
|
113
113
|
* {
|
|
114
|
-
*
|
|
114
|
+
* datasets: [
|
|
115
115
|
* {
|
|
116
|
-
*
|
|
117
|
-
*
|
|
118
|
-
* "
|
|
119
|
-
*
|
|
120
|
-
*
|
|
121
|
-
* "
|
|
122
|
-
*
|
|
123
|
-
*
|
|
124
|
-
*
|
|
125
|
-
* "fields": [
|
|
116
|
+
* arn: "arn:aws:scn:us-east-1:012345678910:instance/1877dd20-dee9-4639-8e99-cb67acf21fe5/namespaces/asc/datasets/inbound_order",
|
|
117
|
+
* createdTime: 1.727116807751E9,
|
|
118
|
+
* description: "This is an AWS Supply Chain inbound order dataset",
|
|
119
|
+
* instanceId: "1877dd20-dee9-4639-8e99-cb67acf21fe5",
|
|
120
|
+
* lastModifiedTime: 1.727116807751E9,
|
|
121
|
+
* name: "inbound_order",
|
|
122
|
+
* namespace: "asc",
|
|
123
|
+
* schema: {
|
|
124
|
+
* fields: [
|
|
126
125
|
* {
|
|
127
|
-
*
|
|
128
|
-
*
|
|
129
|
-
* "
|
|
126
|
+
* isRequired: true,
|
|
127
|
+
* name: "id",
|
|
128
|
+
* type: "STRING"
|
|
130
129
|
* },
|
|
131
130
|
* {
|
|
132
|
-
*
|
|
133
|
-
*
|
|
134
|
-
* "
|
|
131
|
+
* isRequired: true,
|
|
132
|
+
* name: "tpartner_id",
|
|
133
|
+
* type: "STRING"
|
|
135
134
|
* },
|
|
136
135
|
* {
|
|
137
|
-
*
|
|
138
|
-
*
|
|
139
|
-
* "
|
|
136
|
+
* isRequired: true,
|
|
137
|
+
* name: "connection_id",
|
|
138
|
+
* type: "STRING"
|
|
140
139
|
* },
|
|
141
140
|
* {
|
|
142
|
-
*
|
|
143
|
-
*
|
|
144
|
-
* "
|
|
141
|
+
* isRequired: false,
|
|
142
|
+
* name: "order_type",
|
|
143
|
+
* type: "STRING"
|
|
145
144
|
* },
|
|
146
145
|
* {
|
|
147
|
-
*
|
|
148
|
-
*
|
|
149
|
-
* "
|
|
146
|
+
* isRequired: false,
|
|
147
|
+
* name: "order_status",
|
|
148
|
+
* type: "STRING"
|
|
150
149
|
* },
|
|
151
150
|
* {
|
|
152
|
-
*
|
|
153
|
-
*
|
|
154
|
-
* "
|
|
151
|
+
* isRequired: false,
|
|
152
|
+
* name: "inbound_order_url",
|
|
153
|
+
* type: "STRING"
|
|
155
154
|
* },
|
|
156
155
|
* {
|
|
157
|
-
*
|
|
158
|
-
*
|
|
159
|
-
* "
|
|
156
|
+
* isRequired: false,
|
|
157
|
+
* name: "order_creation_date",
|
|
158
|
+
* type: "TIMESTAMP"
|
|
160
159
|
* },
|
|
161
160
|
* {
|
|
162
|
-
*
|
|
163
|
-
*
|
|
164
|
-
* "
|
|
161
|
+
* isRequired: false,
|
|
162
|
+
* name: "company_id",
|
|
163
|
+
* type: "STRING"
|
|
165
164
|
* },
|
|
166
165
|
* {
|
|
167
|
-
*
|
|
168
|
-
*
|
|
169
|
-
* "
|
|
166
|
+
* isRequired: false,
|
|
167
|
+
* name: "to_site_id",
|
|
168
|
+
* type: "STRING"
|
|
170
169
|
* },
|
|
171
170
|
* {
|
|
172
|
-
*
|
|
173
|
-
*
|
|
174
|
-
* "
|
|
171
|
+
* isRequired: false,
|
|
172
|
+
* name: "order_currency_uom",
|
|
173
|
+
* type: "STRING"
|
|
175
174
|
* },
|
|
176
175
|
* {
|
|
177
|
-
*
|
|
178
|
-
*
|
|
179
|
-
* "
|
|
176
|
+
* isRequired: false,
|
|
177
|
+
* name: "vendor_currency_uom",
|
|
178
|
+
* type: "STRING"
|
|
180
179
|
* },
|
|
181
180
|
* {
|
|
182
|
-
*
|
|
183
|
-
*
|
|
184
|
-
* "
|
|
181
|
+
* isRequired: false,
|
|
182
|
+
* name: "exchange_rate",
|
|
183
|
+
* type: "DOUBLE"
|
|
185
184
|
* },
|
|
186
185
|
* {
|
|
187
|
-
*
|
|
188
|
-
*
|
|
189
|
-
* "
|
|
186
|
+
* isRequired: false,
|
|
187
|
+
* name: "exchange_rate_date",
|
|
188
|
+
* type: "TIMESTAMP"
|
|
190
189
|
* },
|
|
191
190
|
* {
|
|
192
|
-
*
|
|
193
|
-
*
|
|
194
|
-
* "
|
|
191
|
+
* isRequired: false,
|
|
192
|
+
* name: "incoterm",
|
|
193
|
+
* type: "STRING"
|
|
195
194
|
* },
|
|
196
195
|
* {
|
|
197
|
-
*
|
|
198
|
-
*
|
|
199
|
-
* "
|
|
196
|
+
* isRequired: false,
|
|
197
|
+
* name: "incoterm2",
|
|
198
|
+
* type: "STRING"
|
|
200
199
|
* },
|
|
201
200
|
* {
|
|
202
|
-
*
|
|
203
|
-
*
|
|
204
|
-
* "
|
|
201
|
+
* isRequired: false,
|
|
202
|
+
* name: "incoterm_location_1",
|
|
203
|
+
* type: "STRING"
|
|
205
204
|
* },
|
|
206
205
|
* {
|
|
207
|
-
*
|
|
208
|
-
*
|
|
209
|
-
* "
|
|
206
|
+
* isRequired: false,
|
|
207
|
+
* name: "incoterm_location_2",
|
|
208
|
+
* type: "STRING"
|
|
210
209
|
* },
|
|
211
210
|
* {
|
|
212
|
-
*
|
|
213
|
-
*
|
|
214
|
-
* "
|
|
211
|
+
* isRequired: false,
|
|
212
|
+
* name: "submitted_date",
|
|
213
|
+
* type: "TIMESTAMP"
|
|
215
214
|
* },
|
|
216
215
|
* {
|
|
217
|
-
*
|
|
218
|
-
*
|
|
219
|
-
* "
|
|
216
|
+
* isRequired: false,
|
|
217
|
+
* name: "agreement_start_date",
|
|
218
|
+
* type: "TIMESTAMP"
|
|
220
219
|
* },
|
|
221
220
|
* {
|
|
222
|
-
*
|
|
223
|
-
*
|
|
224
|
-
* "
|
|
221
|
+
* isRequired: false,
|
|
222
|
+
* name: "agreement_end_date",
|
|
223
|
+
* type: "TIMESTAMP"
|
|
225
224
|
* },
|
|
226
225
|
* {
|
|
227
|
-
*
|
|
228
|
-
*
|
|
229
|
-
* "
|
|
226
|
+
* isRequired: false,
|
|
227
|
+
* name: "shipping_instr_code",
|
|
228
|
+
* type: "STRING"
|
|
230
229
|
* },
|
|
231
230
|
* {
|
|
232
|
-
*
|
|
233
|
-
*
|
|
234
|
-
* "
|
|
231
|
+
* isRequired: false,
|
|
232
|
+
* name: "payment_terms_code",
|
|
233
|
+
* type: "STRING"
|
|
235
234
|
* },
|
|
236
235
|
* {
|
|
237
|
-
*
|
|
238
|
-
*
|
|
239
|
-
* "
|
|
236
|
+
* isRequired: false,
|
|
237
|
+
* name: "std_terms_agreement",
|
|
238
|
+
* type: "STRING"
|
|
240
239
|
* },
|
|
241
240
|
* {
|
|
242
|
-
*
|
|
243
|
-
*
|
|
244
|
-
* "
|
|
241
|
+
* isRequired: false,
|
|
242
|
+
* name: "std_terms_agreement_ver",
|
|
243
|
+
* type: "STRING"
|
|
245
244
|
* },
|
|
246
245
|
* {
|
|
247
|
-
*
|
|
248
|
-
*
|
|
249
|
-
* "
|
|
246
|
+
* isRequired: false,
|
|
247
|
+
* name: "agreement_number",
|
|
248
|
+
* type: "STRING"
|
|
250
249
|
* },
|
|
251
250
|
* {
|
|
252
|
-
*
|
|
253
|
-
*
|
|
254
|
-
* "
|
|
251
|
+
* isRequired: false,
|
|
252
|
+
* name: "source",
|
|
253
|
+
* type: "STRING"
|
|
255
254
|
* },
|
|
256
255
|
* {
|
|
257
|
-
*
|
|
258
|
-
*
|
|
259
|
-
* "
|
|
256
|
+
* isRequired: false,
|
|
257
|
+
* name: "source_update_dttm",
|
|
258
|
+
* type: "TIMESTAMP"
|
|
260
259
|
* },
|
|
261
260
|
* {
|
|
262
|
-
*
|
|
263
|
-
*
|
|
264
|
-
* "
|
|
261
|
+
* isRequired: false,
|
|
262
|
+
* name: "source_event_id",
|
|
263
|
+
* type: "STRING"
|
|
265
264
|
* },
|
|
266
265
|
* {
|
|
267
|
-
*
|
|
268
|
-
*
|
|
269
|
-
* "
|
|
266
|
+
* isRequired: false,
|
|
267
|
+
* name: "db_creation_dttm",
|
|
268
|
+
* type: "TIMESTAMP"
|
|
270
269
|
* },
|
|
271
270
|
* {
|
|
272
|
-
*
|
|
273
|
-
*
|
|
274
|
-
* "
|
|
271
|
+
* isRequired: false,
|
|
272
|
+
* name: "db_updation_dttm",
|
|
273
|
+
* type: "TIMESTAMP"
|
|
275
274
|
* }
|
|
276
|
-
* ]
|
|
275
|
+
* ],
|
|
276
|
+
* name: "InboundOrder"
|
|
277
277
|
* }
|
|
278
278
|
* }
|
|
279
279
|
* ]
|
|
280
280
|
* }
|
|
281
281
|
* *\/
|
|
282
|
-
* // example id: example-1
|
|
283
282
|
* ```
|
|
284
283
|
*
|
|
285
284
|
* @example List custom datasets using pagination
|
|
286
285
|
* ```javascript
|
|
287
286
|
* //
|
|
288
287
|
* const input = {
|
|
289
|
-
*
|
|
290
|
-
*
|
|
291
|
-
*
|
|
292
|
-
*
|
|
288
|
+
* instanceId: "1877dd20-dee9-4639-8e99-cb67acf21fe5",
|
|
289
|
+
* maxResults: 2,
|
|
290
|
+
* namespace: "default",
|
|
291
|
+
* nextToken: "next_token_returned_from_previous_list_request"
|
|
293
292
|
* };
|
|
294
293
|
* const command = new ListDataLakeDatasetsCommand(input);
|
|
295
294
|
* const response = await client.send(command);
|
|
296
|
-
* /* response
|
|
295
|
+
* /* response is
|
|
297
296
|
* {
|
|
298
|
-
*
|
|
297
|
+
* datasets: [
|
|
299
298
|
* {
|
|
300
|
-
*
|
|
301
|
-
*
|
|
302
|
-
* "
|
|
303
|
-
*
|
|
304
|
-
*
|
|
305
|
-
* "
|
|
306
|
-
*
|
|
307
|
-
*
|
|
308
|
-
*
|
|
309
|
-
* "fields": [
|
|
299
|
+
* arn: "arn:aws:scn:us-east-1:012345678910:instance/1877dd20-dee9-4639-8e99-cb67acf21fe5/namespaces/default/datasets/my_dataset",
|
|
300
|
+
* createdTime: 1.727116807751E9,
|
|
301
|
+
* description: "This is a custom dataset",
|
|
302
|
+
* instanceId: "1877dd20-dee9-4639-8e99-cb67acf21fe5",
|
|
303
|
+
* lastModifiedTime: 1.727116807751E9,
|
|
304
|
+
* name: "my_dataset",
|
|
305
|
+
* namespace: "default",
|
|
306
|
+
* schema: {
|
|
307
|
+
* fields: [
|
|
310
308
|
* {
|
|
311
|
-
*
|
|
312
|
-
*
|
|
313
|
-
* "
|
|
309
|
+
* isRequired: true,
|
|
310
|
+
* name: "id",
|
|
311
|
+
* type: "INT"
|
|
314
312
|
* },
|
|
315
313
|
* {
|
|
316
|
-
*
|
|
317
|
-
*
|
|
318
|
-
* "
|
|
314
|
+
* isRequired: true,
|
|
315
|
+
* name: "description",
|
|
316
|
+
* type: "STRING"
|
|
319
317
|
* },
|
|
320
318
|
* {
|
|
321
|
-
*
|
|
322
|
-
*
|
|
323
|
-
* "
|
|
319
|
+
* isRequired: false,
|
|
320
|
+
* name: "price",
|
|
321
|
+
* type: "DOUBLE"
|
|
324
322
|
* },
|
|
325
323
|
* {
|
|
326
|
-
*
|
|
327
|
-
*
|
|
328
|
-
* "
|
|
324
|
+
* isRequired: false,
|
|
325
|
+
* name: "creation_time",
|
|
326
|
+
* type: "TIMESTAMP"
|
|
329
327
|
* }
|
|
330
|
-
* ]
|
|
328
|
+
* ],
|
|
329
|
+
* name: "MyDataset"
|
|
331
330
|
* }
|
|
332
331
|
* },
|
|
333
332
|
* {
|
|
334
|
-
*
|
|
335
|
-
*
|
|
336
|
-
* "
|
|
337
|
-
*
|
|
338
|
-
*
|
|
339
|
-
* "
|
|
340
|
-
*
|
|
341
|
-
*
|
|
342
|
-
*
|
|
343
|
-
*
|
|
344
|
-
*
|
|
345
|
-
*
|
|
346
|
-
*
|
|
347
|
-
*
|
|
348
|
-
*
|
|
349
|
-
*
|
|
350
|
-
*
|
|
351
|
-
*
|
|
352
|
-
* "isRequired": true
|
|
333
|
+
* arn: "arn:aws:scn:us-east-1:012345678910:instance/1877dd20-dee9-4639-8e99-cb67acf21fe5/namespaces/default/datasets/my_dataset_2",
|
|
334
|
+
* createdTime: 1.727116907751E9,
|
|
335
|
+
* description: "This is a custom dataset 2",
|
|
336
|
+
* instanceId: "1877dd20-dee9-4639-8e99-cb67acf21fe5",
|
|
337
|
+
* lastModifiedTime: 1.727116907751E9,
|
|
338
|
+
* name: "my_dataset_2",
|
|
339
|
+
* namespace: "default",
|
|
340
|
+
* schema: {
|
|
341
|
+
* fields: [
|
|
342
|
+
* {
|
|
343
|
+
* isRequired: true,
|
|
344
|
+
* name: "id",
|
|
345
|
+
* type: "INT"
|
|
346
|
+
* },
|
|
347
|
+
* {
|
|
348
|
+
* isRequired: true,
|
|
349
|
+
* name: "description",
|
|
350
|
+
* type: "STRING"
|
|
353
351
|
* }
|
|
354
|
-
* ]
|
|
352
|
+
* ],
|
|
353
|
+
* name: "MyDataset2"
|
|
355
354
|
* }
|
|
356
355
|
* }
|
|
357
356
|
* ],
|
|
358
|
-
*
|
|
357
|
+
* nextToken: "next_token_for_next_list_request"
|
|
359
358
|
* }
|
|
360
359
|
* *\/
|
|
361
|
-
* // example id: example-2
|
|
362
360
|
* ```
|
|
363
361
|
*
|
|
362
|
+
* @public
|
|
364
363
|
*/
|
|
365
364
|
export declare class ListDataLakeDatasetsCommand extends ListDataLakeDatasetsCommand_base {
|
|
366
365
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -97,133 +97,130 @@ declare const ListInstancesCommand_base: {
|
|
|
97
97
|
* @throws {@link SupplyChainServiceException}
|
|
98
98
|
* <p>Base exception class for all service exceptions from SupplyChain service.</p>
|
|
99
99
|
*
|
|
100
|
-
*
|
|
100
|
+
*
|
|
101
101
|
* @example Successful ListInstance request with no input data
|
|
102
102
|
* ```javascript
|
|
103
103
|
* //
|
|
104
|
-
* const input = {};
|
|
104
|
+
* const input = { /* empty *\/ };
|
|
105
105
|
* const command = new ListInstancesCommand(input);
|
|
106
106
|
* const response = await client.send(command);
|
|
107
|
-
* /* response
|
|
107
|
+
* /* response is
|
|
108
108
|
* {
|
|
109
|
-
*
|
|
109
|
+
* instances: [
|
|
110
110
|
* {
|
|
111
|
-
*
|
|
112
|
-
*
|
|
113
|
-
*
|
|
114
|
-
*
|
|
115
|
-
*
|
|
116
|
-
*
|
|
117
|
-
*
|
|
118
|
-
*
|
|
119
|
-
*
|
|
111
|
+
* awsAccountId: "123456789012",
|
|
112
|
+
* createdTime: 172615383136,
|
|
113
|
+
* instanceDescription: "example instance description",
|
|
114
|
+
* instanceId: "9e193580-7cc5-45f7-9609-c43ba0ada793",
|
|
115
|
+
* instanceName: "example instance name",
|
|
116
|
+
* kmsKeyArn: "arn:aws:kms:us-west-2:123456789012:key/b14ffc39-b7d4-45ab-991a-6257a7f0d24d",
|
|
117
|
+
* lastModifiedTime: 172615383136,
|
|
118
|
+
* state: "Active",
|
|
119
|
+
* versionNumber: 2.0
|
|
120
120
|
* },
|
|
121
121
|
* {
|
|
122
|
-
*
|
|
123
|
-
*
|
|
124
|
-
*
|
|
125
|
-
*
|
|
126
|
-
*
|
|
127
|
-
*
|
|
128
|
-
*
|
|
129
|
-
*
|
|
122
|
+
* awsAccountId: "123456789012",
|
|
123
|
+
* createdTime: 17261674383136,
|
|
124
|
+
* instanceDescription: "example instance description",
|
|
125
|
+
* instanceId: "3ad8116a-644d-4172-8dcb-20e51d314c14",
|
|
126
|
+
* kmsKeyArn: "arn:aws:kms:us-west-2:123456789012:key/b14ffc39-b7d4-45ab-991a-6257a7f0d24d",
|
|
127
|
+
* lastModifiedTime: 17261674383136,
|
|
128
|
+
* state: "Initializing",
|
|
129
|
+
* versionNumber: 2.0
|
|
130
130
|
* }
|
|
131
131
|
* ]
|
|
132
132
|
* }
|
|
133
133
|
* *\/
|
|
134
|
-
* // example id: example-1
|
|
135
134
|
* ```
|
|
136
135
|
*
|
|
137
136
|
* @example Successful ListInstance request with filters
|
|
138
137
|
* ```javascript
|
|
139
138
|
* //
|
|
140
139
|
* const input = {
|
|
141
|
-
*
|
|
140
|
+
* instanceNameFilter: [
|
|
142
141
|
* "example instance name"
|
|
143
142
|
* ],
|
|
144
|
-
*
|
|
143
|
+
* instanceStateFilter: [
|
|
145
144
|
* "Active"
|
|
146
145
|
* ]
|
|
147
146
|
* };
|
|
148
147
|
* const command = new ListInstancesCommand(input);
|
|
149
148
|
* const response = await client.send(command);
|
|
150
|
-
* /* response
|
|
149
|
+
* /* response is
|
|
151
150
|
* {
|
|
152
|
-
*
|
|
151
|
+
* instances: [
|
|
153
152
|
* {
|
|
154
|
-
*
|
|
155
|
-
*
|
|
156
|
-
*
|
|
157
|
-
*
|
|
158
|
-
*
|
|
159
|
-
*
|
|
160
|
-
*
|
|
161
|
-
*
|
|
162
|
-
*
|
|
153
|
+
* awsAccountId: "123456789012",
|
|
154
|
+
* createdTime: 172615383136,
|
|
155
|
+
* instanceDescription: "example instance description",
|
|
156
|
+
* instanceId: "9e193580-7cc5-45f7-9609-c43ba0ada793",
|
|
157
|
+
* instanceName: "example instance name",
|
|
158
|
+
* kmsKeyArn: "arn:aws:kms:us-west-2:123456789012:key/b14ffc39-b7d4-45ab-991a-6257a7f0d24d",
|
|
159
|
+
* lastModifiedTime: 172615383136,
|
|
160
|
+
* state: "Active",
|
|
161
|
+
* versionNumber: 2.0
|
|
163
162
|
* }
|
|
164
163
|
* ]
|
|
165
164
|
* }
|
|
166
165
|
* *\/
|
|
167
|
-
* // example id: example-2
|
|
168
166
|
* ```
|
|
169
167
|
*
|
|
170
168
|
* @example Successful ListInstance request with maxResult override
|
|
171
169
|
* ```javascript
|
|
172
170
|
* //
|
|
173
171
|
* const input = {
|
|
174
|
-
*
|
|
172
|
+
* maxResults: 1
|
|
175
173
|
* };
|
|
176
174
|
* const command = new ListInstancesCommand(input);
|
|
177
175
|
* const response = await client.send(command);
|
|
178
|
-
* /* response
|
|
176
|
+
* /* response is
|
|
179
177
|
* {
|
|
180
|
-
*
|
|
178
|
+
* instances: [
|
|
181
179
|
* {
|
|
182
|
-
*
|
|
183
|
-
*
|
|
184
|
-
*
|
|
185
|
-
*
|
|
186
|
-
*
|
|
187
|
-
*
|
|
188
|
-
*
|
|
189
|
-
*
|
|
190
|
-
*
|
|
180
|
+
* awsAccountId: "123456789012",
|
|
181
|
+
* createdTime: 172615383136,
|
|
182
|
+
* instanceDescription: "example instance description",
|
|
183
|
+
* instanceId: "9e193580-7cc5-45f7-9609-c43ba0ada793",
|
|
184
|
+
* instanceName: "example instance name",
|
|
185
|
+
* kmsKeyArn: "arn:aws:kms:us-west-2:123456789012:key/b14ffc39-b7d4-45ab-991a-6257a7f0d24d",
|
|
186
|
+
* lastModifiedTime: 172615383136,
|
|
187
|
+
* state: "Active",
|
|
188
|
+
* versionNumber: 2.0
|
|
191
189
|
* }
|
|
192
190
|
* ],
|
|
193
|
-
*
|
|
191
|
+
* nextToken: "AAQA-EFRSURBSGhtcng0c0dxbENwUHdnckVIbkFYNU1QVjRTZWN2ak5iMFVicC8zemlHOVF3SEpjSC9WTWJVVXBMV2Z1N3ZvZlQ0WEFBQUFmakI4QmdrcWhraUc5dzBCQndhZ2J6QnRBZ0VBTUdnR0NTcUdTSWIzRFFFSEFUQWVCZ2xnaGtnQlpRTUVBUzR3RVFRTTJibW9LemgrSWZTY0RaZEdBZ0VRZ0R2dDhsQnVGbGJ0dnFTZityWmNSWEVPbG93emJoSjhxOGNMbGQ1UGMvY0VRbWlTR3pQUFd4N2RraXY5Y0ovcS9vSmFYZVBGdWVHaU0zWmd0dz09n-rC1ejA5--7ltJxpDT2xP_i8xGqDPMOZfjpp8q6l5NuP9_bnBURvwwYhdqDriMK5_f96LuPEnPbuML-ItfgEiCcUy0p2tApvpZkZqOG5fbqP-4C5aDYPTffHLyq-MMqvfrGVJzL1nvkpZcnTkVR9VJsu5b8I0qqDW0H8EMKGgTo78U9lr4sj3Usi9VMwZxgKCBmr03HhFLYXOW--XMbIx0CTZF0fYIcRxmA_sVS6J7gpaB9yMcnzs5VUKokoA5JTcAPY5d1Y1VyE8KKxv51cfPgXw8OYCDbFQncw8mZPmE-VqxjFbksmk_FmghpPn9j2Ppoe-zr0LQ%3D"
|
|
194
192
|
* }
|
|
195
193
|
* *\/
|
|
196
|
-
* // example id: example-3
|
|
197
194
|
* ```
|
|
198
195
|
*
|
|
199
196
|
* @example Successful ListInstance request with nextToken
|
|
200
197
|
* ```javascript
|
|
201
198
|
* //
|
|
202
199
|
* const input = {
|
|
203
|
-
*
|
|
204
|
-
*
|
|
200
|
+
* maxResults: 1,
|
|
201
|
+
* nextToken: "AAQA-EFRSURBSGhtcng0c0dxbENwUHdnckVIbkFYNU1QVjRTZWN2ak5iMFVicC8zemlHOVF3SEpjSC9WTWJVVXBMV2Z1N3ZvZlQ0WEFBQUFmakI4QmdrcWhraUc5dzBCQndhZ2J6QnRBZ0VBTUdnR0NTcUdTSWIzRFFFSEFUQWVCZ2xnaGtnQlpRTUVBUzR3RVFRTTJibW9LemgrSWZTY0RaZEdBZ0VRZ0R2dDhsQnVGbGJ0dnFTZityWmNSWEVPbG93emJoSjhxOGNMbGQ1UGMvY0VRbWlTR3pQUFd4N2RraXY5Y0ovcS9vSmFYZVBGdWVHaU0zWmd0dz09n-rC1ejA5--7ltJxpDT2xP_i8xGqDPMOZfjpp8q6l5NuP9_bnBURvwwYhdqDriMK5_f96LuPEnPbuML-ItfgEiCcUy0p2tApvpZkZqOG5fbqP-4C5aDYPTffHLyq-MMqvfrGVJzL1nvkpZcnTkVR9VJsu5b8I0qqDW0H8EMKGgTo78U9lr4sj3Usi9VMwZxgKCBmr03HhFLYXOW--XMbIx0CTZF0fYIcRxmA_sVS6J7gpaB9yMcnzs5VUKokoA5JTcAPY5d1Y1VyE8KKxv51cfPgXw8OYCDbFQncw8mZPmE-VqxjFbksmk_FmghpPn9j2Ppoe-zr0LQ%3D"
|
|
205
202
|
* };
|
|
206
203
|
* const command = new ListInstancesCommand(input);
|
|
207
204
|
* const response = await client.send(command);
|
|
208
|
-
* /* response
|
|
205
|
+
* /* response is
|
|
209
206
|
* {
|
|
210
|
-
*
|
|
207
|
+
* instances: [
|
|
211
208
|
* {
|
|
212
|
-
*
|
|
213
|
-
*
|
|
214
|
-
*
|
|
215
|
-
*
|
|
216
|
-
*
|
|
217
|
-
*
|
|
218
|
-
*
|
|
219
|
-
*
|
|
209
|
+
* awsAccountId: "123456789012",
|
|
210
|
+
* createdTime: 17261674383136,
|
|
211
|
+
* instanceDescription: "example instance description",
|
|
212
|
+
* instanceId: "3ad8116a-644d-4172-8dcb-20e51d314c14",
|
|
213
|
+
* kmsKeyArn: "arn:aws:kms:us-west-2:123456789012:key/b14ffc39-b7d4-45ab-991a-6257a7f0d24d",
|
|
214
|
+
* lastModifiedTime: 17261674383136,
|
|
215
|
+
* state: "Initializing",
|
|
216
|
+
* versionNumber: 2.0
|
|
220
217
|
* }
|
|
221
218
|
* ]
|
|
222
219
|
* }
|
|
223
220
|
* *\/
|
|
224
|
-
* // example id: example-4
|
|
225
221
|
* ```
|
|
226
222
|
*
|
|
223
|
+
* @public
|
|
227
224
|
*/
|
|
228
225
|
export declare class ListInstancesCommand extends ListInstancesCommand_base {
|
|
229
226
|
/** @internal type navigation helper, not in runtime. */
|