@aws-sdk/client-backupsearch 3.864.0 → 3.872.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/README.md +1 -17
- package/dist-cjs/endpoint/ruleset.js +2 -2
- package/dist-es/endpoint/ruleset.js +2 -2
- package/dist-types/BackupSearch.d.ts +1 -16
- package/dist-types/BackupSearchClient.d.ts +1 -16
- package/dist-types/commands/GetSearchJobCommand.d.ts +2 -5
- package/dist-types/commands/GetSearchResultExportJobCommand.d.ts +2 -9
- package/dist-types/commands/ListSearchJobBackupsCommand.d.ts +2 -16
- package/dist-types/commands/ListSearchJobResultsCommand.d.ts +1 -3
- package/dist-types/commands/ListSearchJobsCommand.d.ts +1 -2
- package/dist-types/commands/ListSearchResultExportJobsCommand.d.ts +2 -5
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -3
- package/dist-types/commands/StartSearchJobCommand.d.ts +5 -11
- package/dist-types/commands/StartSearchResultExportJobCommand.d.ts +3 -11
- package/dist-types/commands/StopSearchJobCommand.d.ts +3 -12
- package/dist-types/commands/TagResourceCommand.d.ts +1 -3
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -3
- package/dist-types/index.d.ts +1 -16
- package/dist-types/models/models_0.d.ts +123 -443
- package/package.json +2 -2
|
@@ -13,31 +13,23 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
13
13
|
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
14
14
|
}
|
|
15
15
|
/**
|
|
16
|
-
* <p>This filters by recovery points within the CreatedAfter
|
|
17
|
-
* and CreatedBefore timestamps.</p>
|
|
16
|
+
* <p>This filters by recovery points within the CreatedAfter and CreatedBefore timestamps.</p>
|
|
18
17
|
* @public
|
|
19
18
|
*/
|
|
20
19
|
export interface BackupCreationTimeFilter {
|
|
21
20
|
/**
|
|
22
|
-
* <p>This timestamp includes recovery points only
|
|
23
|
-
* created after the specified time.</p>
|
|
21
|
+
* <p>This timestamp includes recovery points only created after the specified time.</p>
|
|
24
22
|
* @public
|
|
25
23
|
*/
|
|
26
24
|
CreatedAfter?: Date | undefined;
|
|
27
25
|
/**
|
|
28
|
-
* <p>This timestamp includes recovery points only
|
|
29
|
-
* created before the specified time.</p>
|
|
26
|
+
* <p>This timestamp includes recovery points only created before the specified time.</p>
|
|
30
27
|
* @public
|
|
31
28
|
*/
|
|
32
29
|
CreatedBefore?: Date | undefined;
|
|
33
30
|
}
|
|
34
31
|
/**
|
|
35
|
-
* <p>This exception occurs when a conflict with a previous successful
|
|
36
|
-
* operation is detected. This generally occurs when the previous
|
|
37
|
-
* operation did not have time to propagate to the host serving the
|
|
38
|
-
* current request.</p>
|
|
39
|
-
* <p>A retry (with appropriate backoff logic) is the recommended
|
|
40
|
-
* response to this exception.</p>
|
|
32
|
+
* <p>This exception occurs when a conflict with a previous successful operation is detected. This generally occurs when the previous operation did not have time to propagate to the host serving the current request.</p> <p>A retry (with appropriate backoff logic) is the recommended response to this exception.</p>
|
|
41
33
|
* @public
|
|
42
34
|
*/
|
|
43
35
|
export declare class ConflictException extends __BaseException {
|
|
@@ -86,12 +78,7 @@ export interface ListSearchJobBackupsInput {
|
|
|
86
78
|
*/
|
|
87
79
|
SearchJobIdentifier: string | undefined;
|
|
88
80
|
/**
|
|
89
|
-
* <p>The next item following a partial list of returned backups
|
|
90
|
-
* included in a search job.</p>
|
|
91
|
-
* <p>For example, if a request
|
|
92
|
-
* is made to return <code>MaxResults</code> number of backups, <code>NextToken</code>
|
|
93
|
-
* allows you to return more items in your list starting at the location pointed to by the
|
|
94
|
-
* next token.</p>
|
|
81
|
+
* <p>The next item following a partial list of returned backups included in a search job.</p> <p>For example, if a request is made to return <code>MaxResults</code> number of backups, <code>NextToken</code> allows you to return more items in your list starting at the location pointed to by the next token.</p>
|
|
95
82
|
* @public
|
|
96
83
|
*/
|
|
97
84
|
NextToken?: string | undefined;
|
|
@@ -129,8 +116,7 @@ export declare const SearchJobState: {
|
|
|
129
116
|
*/
|
|
130
117
|
export type SearchJobState = (typeof SearchJobState)[keyof typeof SearchJobState];
|
|
131
118
|
/**
|
|
132
|
-
* <p>This contains the information about recovery
|
|
133
|
-
* points returned in results of a search job.</p>
|
|
119
|
+
* <p>This contains the information about recovery points returned in results of a search job.</p>
|
|
134
120
|
* @public
|
|
135
121
|
*/
|
|
136
122
|
export interface SearchJobBackupsResult {
|
|
@@ -150,14 +136,12 @@ export interface SearchJobBackupsResult {
|
|
|
150
136
|
*/
|
|
151
137
|
ResourceType?: ResourceType | undefined;
|
|
152
138
|
/**
|
|
153
|
-
* <p>The Amazon Resource Name (ARN) that uniquely identifies
|
|
154
|
-
* the backup resources.</p>
|
|
139
|
+
* <p>The Amazon Resource Name (ARN) that uniquely identifies the backup resources.</p>
|
|
155
140
|
* @public
|
|
156
141
|
*/
|
|
157
142
|
BackupResourceArn?: string | undefined;
|
|
158
143
|
/**
|
|
159
|
-
* <p>The Amazon Resource Name (ARN) that uniquely identifies
|
|
160
|
-
* the source resources.</p>
|
|
144
|
+
* <p>The Amazon Resource Name (ARN) that uniquely identifies the source resources.</p>
|
|
161
145
|
* @public
|
|
162
146
|
*/
|
|
163
147
|
SourceResourceArn?: string | undefined;
|
|
@@ -177,26 +161,18 @@ export interface SearchJobBackupsResult {
|
|
|
177
161
|
*/
|
|
178
162
|
export interface ListSearchJobBackupsOutput {
|
|
179
163
|
/**
|
|
180
|
-
* <p>The recovery points returned the results of a
|
|
181
|
-
* search job</p>
|
|
164
|
+
* <p>The recovery points returned the results of a search job</p>
|
|
182
165
|
* @public
|
|
183
166
|
*/
|
|
184
167
|
Results: SearchJobBackupsResult[] | undefined;
|
|
185
168
|
/**
|
|
186
|
-
* <p>The next item following a partial list of returned backups
|
|
187
|
-
* included in a search job.</p>
|
|
188
|
-
* <p>For example, if a request
|
|
189
|
-
* is made to return <code>MaxResults</code> number of backups, <code>NextToken</code>
|
|
190
|
-
* allows you to return more items in your list starting at the location pointed to by the
|
|
191
|
-
* next token.</p>
|
|
169
|
+
* <p>The next item following a partial list of returned backups included in a search job.</p> <p>For example, if a request is made to return <code>MaxResults</code> number of backups, <code>NextToken</code> allows you to return more items in your list starting at the location pointed to by the next token.</p>
|
|
192
170
|
* @public
|
|
193
171
|
*/
|
|
194
172
|
NextToken?: string | undefined;
|
|
195
173
|
}
|
|
196
174
|
/**
|
|
197
|
-
* <p>The resource was not found for this request.</p>
|
|
198
|
-
* <p>Confirm the resource information, such as the ARN or type is correct
|
|
199
|
-
* and exists, then retry the request.</p>
|
|
175
|
+
* <p>The resource was not found for this request.</p> <p>Confirm the resource information, such as the ARN or type is correct and exists, then retry the request.</p>
|
|
200
176
|
* @public
|
|
201
177
|
*/
|
|
202
178
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
@@ -269,13 +245,7 @@ export interface ListSearchJobResultsInput {
|
|
|
269
245
|
*/
|
|
270
246
|
SearchJobIdentifier: string | undefined;
|
|
271
247
|
/**
|
|
272
|
-
* <p>The next item following a partial list of returned
|
|
273
|
-
* search job results.</p>
|
|
274
|
-
* <p>For example, if a request
|
|
275
|
-
* is made to return <code>MaxResults</code> number of
|
|
276
|
-
* search job results, <code>NextToken</code>
|
|
277
|
-
* allows you to return more items in your list starting at the location pointed to by the
|
|
278
|
-
* next token.</p>
|
|
248
|
+
* <p>The next item following a partial list of returned search job results.</p> <p>For example, if a request is made to return <code>MaxResults</code> number of search job results, <code>NextToken</code> allows you to return more items in your list starting at the location pointed to by the next token.</p>
|
|
279
249
|
* @public
|
|
280
250
|
*/
|
|
281
251
|
NextToken?: string | undefined;
|
|
@@ -286,24 +256,17 @@ export interface ListSearchJobResultsInput {
|
|
|
286
256
|
MaxResults?: number | undefined;
|
|
287
257
|
}
|
|
288
258
|
/**
|
|
289
|
-
* <p>These are the items returned in the results of
|
|
290
|
-
* a search of Amazon EBS backup metadata.</p>
|
|
259
|
+
* <p>These are the items returned in the results of a search of Amazon EBS backup metadata.</p>
|
|
291
260
|
* @public
|
|
292
261
|
*/
|
|
293
262
|
export interface EBSResultItem {
|
|
294
263
|
/**
|
|
295
|
-
* <p>These are one or more items in the
|
|
296
|
-
* results that match values for the Amazon Resource
|
|
297
|
-
* Name (ARN) of recovery points returned in a search
|
|
298
|
-
* of Amazon EBS backup metadata.</p>
|
|
264
|
+
* <p>These are one or more items in the results that match values for the Amazon Resource Name (ARN) of recovery points returned in a search of Amazon EBS backup metadata.</p>
|
|
299
265
|
* @public
|
|
300
266
|
*/
|
|
301
267
|
BackupResourceArn?: string | undefined;
|
|
302
268
|
/**
|
|
303
|
-
* <p>These are one or more items in the
|
|
304
|
-
* results that match values for the Amazon Resource
|
|
305
|
-
* Name (ARN) of source resources returned in a search
|
|
306
|
-
* of Amazon EBS backup metadata.</p>
|
|
269
|
+
* <p>These are one or more items in the results that match values for the Amazon Resource Name (ARN) of source resources returned in a search of Amazon EBS backup metadata.</p>
|
|
307
270
|
* @public
|
|
308
271
|
*/
|
|
309
272
|
SourceResourceArn?: string | undefined;
|
|
@@ -313,58 +276,43 @@ export interface EBSResultItem {
|
|
|
313
276
|
*/
|
|
314
277
|
BackupVaultName?: string | undefined;
|
|
315
278
|
/**
|
|
316
|
-
* <p>These are one or more items in the
|
|
317
|
-
* results that match values for file systems returned
|
|
318
|
-
* in a search of Amazon EBS backup metadata.</p>
|
|
279
|
+
* <p>These are one or more items in the results that match values for file systems returned in a search of Amazon EBS backup metadata.</p>
|
|
319
280
|
* @public
|
|
320
281
|
*/
|
|
321
282
|
FileSystemIdentifier?: string | undefined;
|
|
322
283
|
/**
|
|
323
|
-
* <p>These are one or more items in the
|
|
324
|
-
* results that match values for file paths returned
|
|
325
|
-
* in a search of Amazon EBS backup metadata.</p>
|
|
284
|
+
* <p>These are one or more items in the results that match values for file paths returned in a search of Amazon EBS backup metadata.</p>
|
|
326
285
|
* @public
|
|
327
286
|
*/
|
|
328
287
|
FilePath?: string | undefined;
|
|
329
288
|
/**
|
|
330
|
-
* <p>These are one or more items in the
|
|
331
|
-
* results that match values for file sizes returned
|
|
332
|
-
* in a search of Amazon EBS backup metadata.</p>
|
|
289
|
+
* <p>These are one or more items in the results that match values for file sizes returned in a search of Amazon EBS backup metadata.</p>
|
|
333
290
|
* @public
|
|
334
291
|
*/
|
|
335
292
|
FileSize?: number | undefined;
|
|
336
293
|
/**
|
|
337
|
-
* <p>These are one or more items in the
|
|
338
|
-
* results that match values for creation times returned
|
|
339
|
-
* in a search of Amazon EBS backup metadata.</p>
|
|
294
|
+
* <p>These are one or more items in the results that match values for creation times returned in a search of Amazon EBS backup metadata.</p>
|
|
340
295
|
* @public
|
|
341
296
|
*/
|
|
342
297
|
CreationTime?: Date | undefined;
|
|
343
298
|
/**
|
|
344
|
-
* <p>These are one or more items in the
|
|
345
|
-
* results that match values for Last Modified Time returned
|
|
346
|
-
* in a search of Amazon EBS backup metadata.</p>
|
|
299
|
+
* <p>These are one or more items in the results that match values for Last Modified Time returned in a search of Amazon EBS backup metadata.</p>
|
|
347
300
|
* @public
|
|
348
301
|
*/
|
|
349
302
|
LastModifiedTime?: Date | undefined;
|
|
350
303
|
}
|
|
351
304
|
/**
|
|
352
|
-
* <p>These are the items returned in the results of
|
|
353
|
-
* a search of Amazon S3 backup metadata.</p>
|
|
305
|
+
* <p>These are the items returned in the results of a search of Amazon S3 backup metadata.</p>
|
|
354
306
|
* @public
|
|
355
307
|
*/
|
|
356
308
|
export interface S3ResultItem {
|
|
357
309
|
/**
|
|
358
|
-
* <p>These are items in the returned results that match
|
|
359
|
-
* recovery point Amazon Resource Names (ARN) input during
|
|
360
|
-
* a search of Amazon S3 backup metadata.</p>
|
|
310
|
+
* <p>These are items in the returned results that match recovery point Amazon Resource Names (ARN) input during a search of Amazon S3 backup metadata.</p>
|
|
361
311
|
* @public
|
|
362
312
|
*/
|
|
363
313
|
BackupResourceArn?: string | undefined;
|
|
364
314
|
/**
|
|
365
|
-
* <p>These are items in the returned results that match
|
|
366
|
-
* source Amazon Resource Names (ARN) input during
|
|
367
|
-
* a search of Amazon S3 backup metadata.</p>
|
|
315
|
+
* <p>These are items in the returned results that match source Amazon Resource Names (ARN) input during a search of Amazon S3 backup metadata.</p>
|
|
368
316
|
* @public
|
|
369
317
|
*/
|
|
370
318
|
SourceResourceArn?: string | undefined;
|
|
@@ -374,46 +322,33 @@ export interface S3ResultItem {
|
|
|
374
322
|
*/
|
|
375
323
|
BackupVaultName?: string | undefined;
|
|
376
324
|
/**
|
|
377
|
-
* <p>This is one or more items
|
|
378
|
-
* returned in the results of a search of Amazon S3
|
|
379
|
-
* backup metadata that match the values input for
|
|
380
|
-
* object key.</p>
|
|
325
|
+
* <p>This is one or more items returned in the results of a search of Amazon S3 backup metadata that match the values input for object key.</p>
|
|
381
326
|
* @public
|
|
382
327
|
*/
|
|
383
328
|
ObjectKey?: string | undefined;
|
|
384
329
|
/**
|
|
385
|
-
* <p>These are items in the returned results that match
|
|
386
|
-
* values for object size(s) input during a search of
|
|
387
|
-
* Amazon S3 backup metadata.</p>
|
|
330
|
+
* <p>These are items in the returned results that match values for object size(s) input during a search of Amazon S3 backup metadata.</p>
|
|
388
331
|
* @public
|
|
389
332
|
*/
|
|
390
333
|
ObjectSize?: number | undefined;
|
|
391
334
|
/**
|
|
392
|
-
* <p>These are one or more items in the returned results
|
|
393
|
-
* that match values for item creation time input during
|
|
394
|
-
* a search of Amazon S3 backup metadata.</p>
|
|
335
|
+
* <p>These are one or more items in the returned results that match values for item creation time input during a search of Amazon S3 backup metadata.</p>
|
|
395
336
|
* @public
|
|
396
337
|
*/
|
|
397
338
|
CreationTime?: Date | undefined;
|
|
398
339
|
/**
|
|
399
|
-
* <p>These are one or more items in the returned results
|
|
400
|
-
* that match values for ETags input during
|
|
401
|
-
* a search of Amazon S3 backup metadata.</p>
|
|
340
|
+
* <p>These are one or more items in the returned results that match values for ETags input during a search of Amazon S3 backup metadata.</p>
|
|
402
341
|
* @public
|
|
403
342
|
*/
|
|
404
343
|
ETag?: string | undefined;
|
|
405
344
|
/**
|
|
406
|
-
* <p>These are one or more items in the returned results
|
|
407
|
-
* that match values for version IDs input during
|
|
408
|
-
* a search of Amazon S3 backup metadata.</p>
|
|
345
|
+
* <p>These are one or more items in the returned results that match values for version IDs input during a search of Amazon S3 backup metadata.</p>
|
|
409
346
|
* @public
|
|
410
347
|
*/
|
|
411
348
|
VersionId?: string | undefined;
|
|
412
349
|
}
|
|
413
350
|
/**
|
|
414
|
-
* <p>This is an object representing the item
|
|
415
|
-
* returned in the results of a search for a specific
|
|
416
|
-
* resource type.</p>
|
|
351
|
+
* <p>This is an object representing the item returned in the results of a search for a specific resource type.</p>
|
|
417
352
|
* @public
|
|
418
353
|
*/
|
|
419
354
|
export type ResultItem = ResultItem.EBSResultItemMember | ResultItem.S3ResultItemMember | ResultItem.$UnknownMember;
|
|
@@ -422,8 +357,7 @@ export type ResultItem = ResultItem.EBSResultItemMember | ResultItem.S3ResultIte
|
|
|
422
357
|
*/
|
|
423
358
|
export declare namespace ResultItem {
|
|
424
359
|
/**
|
|
425
|
-
* <p>These are items returned in the search results
|
|
426
|
-
* of an Amazon S3 search.</p>
|
|
360
|
+
* <p>These are items returned in the search results of an Amazon S3 search.</p>
|
|
427
361
|
* @public
|
|
428
362
|
*/
|
|
429
363
|
interface S3ResultItemMember {
|
|
@@ -432,8 +366,7 @@ export declare namespace ResultItem {
|
|
|
432
366
|
$unknown?: never;
|
|
433
367
|
}
|
|
434
368
|
/**
|
|
435
|
-
* <p>These are items returned in the search results
|
|
436
|
-
* of an Amazon EBS search.</p>
|
|
369
|
+
* <p>These are items returned in the search results of an Amazon EBS search.</p>
|
|
437
370
|
* @public
|
|
438
371
|
*/
|
|
439
372
|
interface EBSResultItemMember {
|
|
@@ -466,12 +399,7 @@ export interface ListSearchJobResultsOutput {
|
|
|
466
399
|
*/
|
|
467
400
|
Results: ResultItem[] | undefined;
|
|
468
401
|
/**
|
|
469
|
-
* <p>The next item following a partial list of
|
|
470
|
-
* search job results.</p>
|
|
471
|
-
* <p>For example, if a request
|
|
472
|
-
* is made to return <code>MaxResults</code> number of backups, <code>NextToken</code>
|
|
473
|
-
* allows you to return more items in your list starting at the location pointed to by the
|
|
474
|
-
* next token.</p>
|
|
402
|
+
* <p>The next item following a partial list of search job results.</p> <p>For example, if a request is made to return <code>MaxResults</code> number of backups, <code>NextToken</code> allows you to return more items in your list starting at the location pointed to by the next token.</p>
|
|
475
403
|
* @public
|
|
476
404
|
*/
|
|
477
405
|
NextToken?: string | undefined;
|
|
@@ -481,8 +409,7 @@ export interface ListSearchJobResultsOutput {
|
|
|
481
409
|
*/
|
|
482
410
|
export interface ListTagsForResourceRequest {
|
|
483
411
|
/**
|
|
484
|
-
* <p>The Amazon Resource Name (ARN) that uniquely identifies
|
|
485
|
-
* the resource.></p>
|
|
412
|
+
* <p>The Amazon Resource Name (ARN) that uniquely identifies the resource.></p>
|
|
486
413
|
* @public
|
|
487
414
|
*/
|
|
488
415
|
ResourceArn: string | undefined;
|
|
@@ -498,26 +425,22 @@ export interface ListTagsForResourceResponse {
|
|
|
498
425
|
Tags?: Record<string, string> | undefined;
|
|
499
426
|
}
|
|
500
427
|
/**
|
|
501
|
-
* <p>This contains information results retrieved from
|
|
502
|
-
* a search job that may not have completed.</p>
|
|
428
|
+
* <p>This contains information results retrieved from a search job that may not have completed.</p>
|
|
503
429
|
* @public
|
|
504
430
|
*/
|
|
505
431
|
export interface CurrentSearchProgress {
|
|
506
432
|
/**
|
|
507
|
-
* <p>This number is the sum of all backups that
|
|
508
|
-
* have been scanned so far during a search job.</p>
|
|
433
|
+
* <p>This number is the sum of all backups that have been scanned so far during a search job.</p>
|
|
509
434
|
* @public
|
|
510
435
|
*/
|
|
511
436
|
RecoveryPointsScannedCount?: number | undefined;
|
|
512
437
|
/**
|
|
513
|
-
* <p>This number is the sum of all items that
|
|
514
|
-
* have been scanned so far during a search job.</p>
|
|
438
|
+
* <p>This number is the sum of all items that have been scanned so far during a search job.</p>
|
|
515
439
|
* @public
|
|
516
440
|
*/
|
|
517
441
|
ItemsScannedCount?: number | undefined;
|
|
518
442
|
/**
|
|
519
|
-
* <p>This number is the sum of all items that match
|
|
520
|
-
* the item filters in a search job in progress.</p>
|
|
443
|
+
* <p>This number is the sum of all items that match the item filters in a search job in progress.</p>
|
|
521
444
|
* @public
|
|
522
445
|
*/
|
|
523
446
|
ItemsMatchedCount?: number | undefined;
|
|
@@ -527,8 +450,7 @@ export interface CurrentSearchProgress {
|
|
|
527
450
|
*/
|
|
528
451
|
export interface GetSearchJobInput {
|
|
529
452
|
/**
|
|
530
|
-
* <p>Required unique string that specifies the
|
|
531
|
-
* search job.</p>
|
|
453
|
+
* <p>Required unique string that specifies the search job.</p>
|
|
532
454
|
* @public
|
|
533
455
|
*/
|
|
534
456
|
SearchJobIdentifier: string | undefined;
|
|
@@ -548,8 +470,7 @@ export declare const TimeConditionOperator: {
|
|
|
548
470
|
*/
|
|
549
471
|
export type TimeConditionOperator = (typeof TimeConditionOperator)[keyof typeof TimeConditionOperator];
|
|
550
472
|
/**
|
|
551
|
-
* <p>A time condition denotes a creation time, last modification time,
|
|
552
|
-
* or other time.</p>
|
|
473
|
+
* <p>A time condition denotes a creation time, last modification time, or other time.</p>
|
|
553
474
|
* @public
|
|
554
475
|
*/
|
|
555
476
|
export interface TimeCondition {
|
|
@@ -559,13 +480,7 @@ export interface TimeCondition {
|
|
|
559
480
|
*/
|
|
560
481
|
Value: Date | undefined;
|
|
561
482
|
/**
|
|
562
|
-
* <p>A string that defines what values will be
|
|
563
|
-
* returned.</p>
|
|
564
|
-
* <p>If this is included, avoid combinations of
|
|
565
|
-
* operators that will return all possible values.
|
|
566
|
-
* For example, including both <code>EQUALS_TO</code>
|
|
567
|
-
* and <code>NOT_EQUALS_TO</code> with a value of <code>4</code>
|
|
568
|
-
* will return all values.</p>
|
|
483
|
+
* <p>A string that defines what values will be returned.</p> <p>If this is included, avoid combinations of operators that will return all possible values. For example, including both <code>EQUALS_TO</code> and <code>NOT_EQUALS_TO</code> with a value of <code>4</code> will return all values.</p>
|
|
569
484
|
* @public
|
|
570
485
|
*/
|
|
571
486
|
Operator?: TimeConditionOperator | undefined;
|
|
@@ -589,8 +504,7 @@ export declare const StringConditionOperator: {
|
|
|
589
504
|
*/
|
|
590
505
|
export type StringConditionOperator = (typeof StringConditionOperator)[keyof typeof StringConditionOperator];
|
|
591
506
|
/**
|
|
592
|
-
* <p>This contains the value of the string and can contain
|
|
593
|
-
* one or more operators.</p>
|
|
507
|
+
* <p>This contains the value of the string and can contain one or more operators.</p>
|
|
594
508
|
* @public
|
|
595
509
|
*/
|
|
596
510
|
export interface StringCondition {
|
|
@@ -600,13 +514,7 @@ export interface StringCondition {
|
|
|
600
514
|
*/
|
|
601
515
|
Value: string | undefined;
|
|
602
516
|
/**
|
|
603
|
-
* <p>A string that defines what values will be
|
|
604
|
-
* returned.</p>
|
|
605
|
-
* <p>If this is included, avoid combinations of
|
|
606
|
-
* operators that will return all possible values.
|
|
607
|
-
* For example, including both <code>EQUALS_TO</code>
|
|
608
|
-
* and <code>NOT_EQUALS_TO</code> with a value of <code>4</code>
|
|
609
|
-
* will return all values.</p>
|
|
517
|
+
* <p>A string that defines what values will be returned.</p> <p>If this is included, avoid combinations of operators that will return all possible values. For example, including both <code>EQUALS_TO</code> and <code>NOT_EQUALS_TO</code> with a value of <code>4</code> will return all values.</p>
|
|
610
518
|
* @public
|
|
611
519
|
*/
|
|
612
520
|
Operator?: StringConditionOperator | undefined;
|
|
@@ -626,167 +534,101 @@ export declare const LongConditionOperator: {
|
|
|
626
534
|
*/
|
|
627
535
|
export type LongConditionOperator = (typeof LongConditionOperator)[keyof typeof LongConditionOperator];
|
|
628
536
|
/**
|
|
629
|
-
* <p>The long condition contains a <code>Value</code>
|
|
630
|
-
* and can optionally contain an <code>Operator</code>.</p>
|
|
537
|
+
* <p>The long condition contains a <code>Value</code> and can optionally contain an <code>Operator</code>.</p>
|
|
631
538
|
* @public
|
|
632
539
|
*/
|
|
633
540
|
export interface LongCondition {
|
|
634
541
|
/**
|
|
635
|
-
* <p>The value of an item included in one of the search
|
|
636
|
-
* item filters.</p>
|
|
542
|
+
* <p>The value of an item included in one of the search item filters.</p>
|
|
637
543
|
* @public
|
|
638
544
|
*/
|
|
639
545
|
Value: number | undefined;
|
|
640
546
|
/**
|
|
641
|
-
* <p>A string that defines what values will be
|
|
642
|
-
* returned.</p>
|
|
643
|
-
* <p>If this is included, avoid combinations of
|
|
644
|
-
* operators that will return all possible values.
|
|
645
|
-
* For example, including both <code>EQUALS_TO</code>
|
|
646
|
-
* and <code>NOT_EQUALS_TO</code> with a value of <code>4</code>
|
|
647
|
-
* will return all values.</p>
|
|
547
|
+
* <p>A string that defines what values will be returned.</p> <p>If this is included, avoid combinations of operators that will return all possible values. For example, including both <code>EQUALS_TO</code> and <code>NOT_EQUALS_TO</code> with a value of <code>4</code> will return all values.</p>
|
|
648
548
|
* @public
|
|
649
549
|
*/
|
|
650
550
|
Operator?: LongConditionOperator | undefined;
|
|
651
551
|
}
|
|
652
552
|
/**
|
|
653
|
-
* <p>This contains arrays of objects, which may include
|
|
654
|
-
* CreationTimes time condition objects, FilePaths
|
|
655
|
-
* string objects, LastModificationTimes time
|
|
656
|
-
* condition objects, </p>
|
|
553
|
+
* <p>This contains arrays of objects, which may include CreationTimes time condition objects, FilePaths string objects, LastModificationTimes time condition objects, </p>
|
|
657
554
|
* @public
|
|
658
555
|
*/
|
|
659
556
|
export interface EBSItemFilter {
|
|
660
557
|
/**
|
|
661
|
-
* <p>You can include 1 to 10 values.</p>
|
|
662
|
-
* <p>If one file path is included, the results will
|
|
663
|
-
* return only items that match the file path.</p>
|
|
664
|
-
* <p>If more than one file path is included, the
|
|
665
|
-
* results will return all items that match any of the
|
|
666
|
-
* file paths.</p>
|
|
558
|
+
* <p>You can include 1 to 10 values.</p> <p>If one file path is included, the results will return only items that match the file path.</p> <p>If more than one file path is included, the results will return all items that match any of the file paths.</p>
|
|
667
559
|
* @public
|
|
668
560
|
*/
|
|
669
561
|
FilePaths?: StringCondition[] | undefined;
|
|
670
562
|
/**
|
|
671
|
-
* <p>You can include 1 to 10 values.</p>
|
|
672
|
-
* <p>If one is included, the results will
|
|
673
|
-
* return only items that match.</p>
|
|
674
|
-
* <p>If more than one is included, the
|
|
675
|
-
* results will return all items that match any of
|
|
676
|
-
* the included values.</p>
|
|
563
|
+
* <p>You can include 1 to 10 values.</p> <p>If one is included, the results will return only items that match.</p> <p>If more than one is included, the results will return all items that match any of the included values.</p>
|
|
677
564
|
* @public
|
|
678
565
|
*/
|
|
679
566
|
Sizes?: LongCondition[] | undefined;
|
|
680
567
|
/**
|
|
681
|
-
* <p>You can include 1 to 10 values.</p>
|
|
682
|
-
* <p>If one is included, the results will
|
|
683
|
-
* return only items that match.</p>
|
|
684
|
-
* <p>If more than one is included, the
|
|
685
|
-
* results will return all items that match any of
|
|
686
|
-
* the included values.</p>
|
|
568
|
+
* <p>You can include 1 to 10 values.</p> <p>If one is included, the results will return only items that match.</p> <p>If more than one is included, the results will return all items that match any of the included values.</p>
|
|
687
569
|
* @public
|
|
688
570
|
*/
|
|
689
571
|
CreationTimes?: TimeCondition[] | undefined;
|
|
690
572
|
/**
|
|
691
|
-
* <p>You can include 1 to 10 values.</p>
|
|
692
|
-
* <p>If one is included, the results will
|
|
693
|
-
* return only items that match.</p>
|
|
694
|
-
* <p>If more than one is included, the
|
|
695
|
-
* results will return all items that match any of
|
|
696
|
-
* the included values.</p>
|
|
573
|
+
* <p>You can include 1 to 10 values.</p> <p>If one is included, the results will return only items that match.</p> <p>If more than one is included, the results will return all items that match any of the included values.</p>
|
|
697
574
|
* @public
|
|
698
575
|
*/
|
|
699
576
|
LastModificationTimes?: TimeCondition[] | undefined;
|
|
700
577
|
}
|
|
701
578
|
/**
|
|
702
|
-
* <p>This contains arrays of objects, which may include
|
|
703
|
-
* ObjectKeys, Sizes, CreationTimes, VersionIds, and/or
|
|
704
|
-
* Etags.</p>
|
|
579
|
+
* <p>This contains arrays of objects, which may include ObjectKeys, Sizes, CreationTimes, VersionIds, and/or Etags.</p>
|
|
705
580
|
* @public
|
|
706
581
|
*/
|
|
707
582
|
export interface S3ItemFilter {
|
|
708
583
|
/**
|
|
709
|
-
* <p>You can include 1 to 10 values.</p>
|
|
710
|
-
* <p>If one value is included, the results will
|
|
711
|
-
* return only items that match the value.</p>
|
|
712
|
-
* <p>If more than one value is included, the
|
|
713
|
-
* results will return all items that match any of the
|
|
714
|
-
* values.</p>
|
|
584
|
+
* <p>You can include 1 to 10 values.</p> <p>If one value is included, the results will return only items that match the value.</p> <p>If more than one value is included, the results will return all items that match any of the values.</p>
|
|
715
585
|
* @public
|
|
716
586
|
*/
|
|
717
587
|
ObjectKeys?: StringCondition[] | undefined;
|
|
718
588
|
/**
|
|
719
|
-
* <p>You can include 1 to 10 values.</p>
|
|
720
|
-
* <p>If one value is included, the results will
|
|
721
|
-
* return only items that match the value.</p>
|
|
722
|
-
* <p>If more than one value is included, the
|
|
723
|
-
* results will return all items that match any of the
|
|
724
|
-
* values.</p>
|
|
589
|
+
* <p>You can include 1 to 10 values.</p> <p>If one value is included, the results will return only items that match the value.</p> <p>If more than one value is included, the results will return all items that match any of the values.</p>
|
|
725
590
|
* @public
|
|
726
591
|
*/
|
|
727
592
|
Sizes?: LongCondition[] | undefined;
|
|
728
593
|
/**
|
|
729
|
-
* <p>You can include 1 to 10 values.</p>
|
|
730
|
-
* <p>If one value is included, the results will
|
|
731
|
-
* return only items that match the value.</p>
|
|
732
|
-
* <p>If more than one value is included, the
|
|
733
|
-
* results will return all items that match any of the
|
|
734
|
-
* values.</p>
|
|
594
|
+
* <p>You can include 1 to 10 values.</p> <p>If one value is included, the results will return only items that match the value.</p> <p>If more than one value is included, the results will return all items that match any of the values.</p>
|
|
735
595
|
* @public
|
|
736
596
|
*/
|
|
737
597
|
CreationTimes?: TimeCondition[] | undefined;
|
|
738
598
|
/**
|
|
739
|
-
* <p>You can include 1 to 10 values.</p>
|
|
740
|
-
* <p>If one value is included, the results will
|
|
741
|
-
* return only items that match the value.</p>
|
|
742
|
-
* <p>If more than one value is included, the
|
|
743
|
-
* results will return all items that match any of the
|
|
744
|
-
* values.</p>
|
|
599
|
+
* <p>You can include 1 to 10 values.</p> <p>If one value is included, the results will return only items that match the value.</p> <p>If more than one value is included, the results will return all items that match any of the values.</p>
|
|
745
600
|
* @public
|
|
746
601
|
*/
|
|
747
602
|
VersionIds?: StringCondition[] | undefined;
|
|
748
603
|
/**
|
|
749
|
-
* <p>You can include 1 to 10 values.</p>
|
|
750
|
-
* <p>If one value is included, the results will
|
|
751
|
-
* return only items that match the value.</p>
|
|
752
|
-
* <p>If more than one value is included, the
|
|
753
|
-
* results will return all items that match any of the
|
|
754
|
-
* values.</p>
|
|
604
|
+
* <p>You can include 1 to 10 values.</p> <p>If one value is included, the results will return only items that match the value.</p> <p>If more than one value is included, the results will return all items that match any of the values.</p>
|
|
755
605
|
* @public
|
|
756
606
|
*/
|
|
757
607
|
ETags?: StringCondition[] | undefined;
|
|
758
608
|
}
|
|
759
609
|
/**
|
|
760
|
-
* <p>Item Filters represent all input item
|
|
761
|
-
* properties specified when the search was
|
|
762
|
-
* created.</p>
|
|
763
|
-
* <p>Contains either EBSItemFilters or
|
|
764
|
-
* S3ItemFilters</p>
|
|
610
|
+
* <p>Item Filters represent all input item properties specified when the search was created.</p> <p>Contains either EBSItemFilters or S3ItemFilters</p>
|
|
765
611
|
* @public
|
|
766
612
|
*/
|
|
767
613
|
export interface ItemFilters {
|
|
768
614
|
/**
|
|
769
|
-
* <p>This array can contain CreationTimes, ETags,
|
|
770
|
-
* ObjectKeys, Sizes, or VersionIds objects.</p>
|
|
615
|
+
* <p>This array can contain CreationTimes, ETags, ObjectKeys, Sizes, or VersionIds objects.</p>
|
|
771
616
|
* @public
|
|
772
617
|
*/
|
|
773
618
|
S3ItemFilters?: S3ItemFilter[] | undefined;
|
|
774
619
|
/**
|
|
775
|
-
* <p>This array can contain CreationTimes,
|
|
776
|
-
* FilePaths, LastModificationTimes, or Sizes objects.</p>
|
|
620
|
+
* <p>This array can contain CreationTimes, FilePaths, LastModificationTimes, or Sizes objects.</p>
|
|
777
621
|
* @public
|
|
778
622
|
*/
|
|
779
623
|
EBSItemFilters?: EBSItemFilter[] | undefined;
|
|
780
624
|
}
|
|
781
625
|
/**
|
|
782
|
-
* <p>The search scope is all backup
|
|
783
|
-
* properties input into a search.</p>
|
|
626
|
+
* <p>The search scope is all backup properties input into a search.</p>
|
|
784
627
|
* @public
|
|
785
628
|
*/
|
|
786
629
|
export interface SearchScope {
|
|
787
630
|
/**
|
|
788
|
-
* <p>The resource types included in a search.</p>
|
|
789
|
-
* <p>Eligible resource types include S3 and EBS.</p>
|
|
631
|
+
* <p>The resource types included in a search.</p> <p>Eligible resource types include S3 and EBS.</p>
|
|
790
632
|
* @public
|
|
791
633
|
*/
|
|
792
634
|
BackupResourceTypes: ResourceType[] | undefined;
|
|
@@ -796,50 +638,33 @@ export interface SearchScope {
|
|
|
796
638
|
*/
|
|
797
639
|
BackupResourceCreationTime?: BackupCreationTimeFilter | undefined;
|
|
798
640
|
/**
|
|
799
|
-
* <p>The Amazon Resource Name (ARN) that uniquely identifies
|
|
800
|
-
* the source resources.</p>
|
|
641
|
+
* <p>The Amazon Resource Name (ARN) that uniquely identifies the source resources.</p>
|
|
801
642
|
* @public
|
|
802
643
|
*/
|
|
803
644
|
SourceResourceArns?: string[] | undefined;
|
|
804
645
|
/**
|
|
805
|
-
* <p>The Amazon Resource Name (ARN) that uniquely identifies
|
|
806
|
-
* the backup resources.</p>
|
|
646
|
+
* <p>The Amazon Resource Name (ARN) that uniquely identifies the backup resources.</p>
|
|
807
647
|
* @public
|
|
808
648
|
*/
|
|
809
649
|
BackupResourceArns?: string[] | undefined;
|
|
810
650
|
/**
|
|
811
|
-
* <p>These are one or more tags on the backup (recovery
|
|
812
|
-
* point).</p>
|
|
651
|
+
* <p>These are one or more tags on the backup (recovery point).</p>
|
|
813
652
|
* @public
|
|
814
653
|
*/
|
|
815
654
|
BackupResourceTags?: Record<string, string> | undefined;
|
|
816
655
|
}
|
|
817
656
|
/**
|
|
818
|
-
* <p>The summary of the specified search job scope,
|
|
819
|
-
* including:
|
|
820
|
-
* </p>
|
|
821
|
-
* <ul>
|
|
822
|
-
* <li>
|
|
823
|
-
* <p>TotalBackupsToScanCount, the number of
|
|
824
|
-
* recovery points returned by the search.</p>
|
|
825
|
-
* </li>
|
|
826
|
-
* <li>
|
|
827
|
-
* <p>TotalItemsToScanCount, the number of
|
|
828
|
-
* items returned by the search.</p>
|
|
829
|
-
* </li>
|
|
830
|
-
* </ul>
|
|
657
|
+
* <p>The summary of the specified search job scope, including: </p> <ul> <li> <p>TotalBackupsToScanCount, the number of recovery points returned by the search.</p> </li> <li> <p>TotalItemsToScanCount, the number of items returned by the search.</p> </li> </ul>
|
|
831
658
|
* @public
|
|
832
659
|
*/
|
|
833
660
|
export interface SearchScopeSummary {
|
|
834
661
|
/**
|
|
835
|
-
* <p>This is the count of the total number of backups
|
|
836
|
-
* that will be scanned in a search.</p>
|
|
662
|
+
* <p>This is the count of the total number of backups that will be scanned in a search.</p>
|
|
837
663
|
* @public
|
|
838
664
|
*/
|
|
839
665
|
TotalRecoveryPointsToScanCount?: number | undefined;
|
|
840
666
|
/**
|
|
841
|
-
* <p>This is the count of the total number of items
|
|
842
|
-
* that will be scanned in a search.</p>
|
|
667
|
+
* <p>This is the count of the total number of items that will be scanned in a search.</p>
|
|
843
668
|
* @public
|
|
844
669
|
*/
|
|
845
670
|
TotalItemsToScanCount?: number | undefined;
|
|
@@ -854,80 +679,47 @@ export interface GetSearchJobOutput {
|
|
|
854
679
|
*/
|
|
855
680
|
Name?: string | undefined;
|
|
856
681
|
/**
|
|
857
|
-
* <p>Returned summary of the specified search job scope,
|
|
858
|
-
* including:
|
|
859
|
-
* </p>
|
|
860
|
-
* <ul>
|
|
861
|
-
* <li>
|
|
862
|
-
* <p>TotalBackupsToScanCount, the number of
|
|
863
|
-
* recovery points returned by the search.</p>
|
|
864
|
-
* </li>
|
|
865
|
-
* <li>
|
|
866
|
-
* <p>TotalItemsToScanCount, the number of
|
|
867
|
-
* items returned by the search.</p>
|
|
868
|
-
* </li>
|
|
869
|
-
* </ul>
|
|
682
|
+
* <p>Returned summary of the specified search job scope, including: </p> <ul> <li> <p>TotalBackupsToScanCount, the number of recovery points returned by the search.</p> </li> <li> <p>TotalItemsToScanCount, the number of items returned by the search.</p> </li> </ul>
|
|
870
683
|
* @public
|
|
871
684
|
*/
|
|
872
685
|
SearchScopeSummary?: SearchScopeSummary | undefined;
|
|
873
686
|
/**
|
|
874
|
-
* <p>Returns numbers representing BackupsScannedCount,
|
|
875
|
-
* ItemsScanned, and ItemsMatched.</p>
|
|
687
|
+
* <p>Returns numbers representing BackupsScannedCount, ItemsScanned, and ItemsMatched.</p>
|
|
876
688
|
* @public
|
|
877
689
|
*/
|
|
878
690
|
CurrentSearchProgress?: CurrentSearchProgress | undefined;
|
|
879
691
|
/**
|
|
880
|
-
* <p>A status message will be returned for either a
|
|
881
|
-
* earch job with a status of <code>ERRORED</code> or a status of
|
|
882
|
-
* <code>COMPLETED</code> jobs with issues.</p>
|
|
883
|
-
* <p>For example, a message may say that a search
|
|
884
|
-
* contained recovery points unable to be scanned because
|
|
885
|
-
* of a permissions issue.</p>
|
|
692
|
+
* <p>A status message will be returned for either a earch job with a status of <code>ERRORED</code> or a status of <code>COMPLETED</code> jobs with issues.</p> <p>For example, a message may say that a search contained recovery points unable to be scanned because of a permissions issue.</p>
|
|
886
693
|
* @public
|
|
887
694
|
*/
|
|
888
695
|
StatusMessage?: string | undefined;
|
|
889
696
|
/**
|
|
890
|
-
* <p>The encryption key for the specified
|
|
891
|
-
* search job.</p>
|
|
892
|
-
* <p>Example: <code>arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab</code>.</p>
|
|
697
|
+
* <p>The encryption key for the specified search job.</p> <p>Example: <code>arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab</code>.</p>
|
|
893
698
|
* @public
|
|
894
699
|
*/
|
|
895
700
|
EncryptionKeyArn?: string | undefined;
|
|
896
701
|
/**
|
|
897
|
-
* <p>The date and time that a search job completed, in Unix format and Coordinated
|
|
898
|
-
* Universal Time (UTC). The value of <code>CompletionTime</code> is accurate to milliseconds.
|
|
899
|
-
* For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087
|
|
900
|
-
* AM.</p>
|
|
702
|
+
* <p>The date and time that a search job completed, in Unix format and Coordinated Universal Time (UTC). The value of <code>CompletionTime</code> is accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.</p>
|
|
901
703
|
* @public
|
|
902
704
|
*/
|
|
903
705
|
CompletionTime?: Date | undefined;
|
|
904
706
|
/**
|
|
905
|
-
* <p>The current status of the specified search job.</p>
|
|
906
|
-
* <p>A search job may have one of the following statuses:
|
|
907
|
-
* <code>RUNNING</code>; <code>COMPLETED</code>; <code>STOPPED</code>;
|
|
908
|
-
* <code>FAILED</code>; <code>TIMED_OUT</code>; or <code>EXPIRED</code>
|
|
909
|
-
* .</p>
|
|
707
|
+
* <p>The current status of the specified search job.</p> <p>A search job may have one of the following statuses: <code>RUNNING</code>; <code>COMPLETED</code>; <code>STOPPED</code>; <code>FAILED</code>; <code>TIMED_OUT</code>; or <code>EXPIRED</code> .</p>
|
|
910
708
|
* @public
|
|
911
709
|
*/
|
|
912
710
|
Status: SearchJobState | undefined;
|
|
913
711
|
/**
|
|
914
|
-
* <p>The search scope is all backup
|
|
915
|
-
* properties input into a search.</p>
|
|
712
|
+
* <p>The search scope is all backup properties input into a search.</p>
|
|
916
713
|
* @public
|
|
917
714
|
*/
|
|
918
715
|
SearchScope: SearchScope | undefined;
|
|
919
716
|
/**
|
|
920
|
-
* <p>Item Filters represent all input item
|
|
921
|
-
* properties specified when the search was
|
|
922
|
-
* created.</p>
|
|
717
|
+
* <p>Item Filters represent all input item properties specified when the search was created.</p>
|
|
923
718
|
* @public
|
|
924
719
|
*/
|
|
925
720
|
ItemFilters: ItemFilters | undefined;
|
|
926
721
|
/**
|
|
927
|
-
* <p>The date and time that a search job was created, in Unix format and Coordinated
|
|
928
|
-
* Universal Time (UTC). The value of <code>CompletionTime</code> is accurate to milliseconds.
|
|
929
|
-
* For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087
|
|
930
|
-
* AM.</p>
|
|
722
|
+
* <p>The date and time that a search job was created, in Unix format and Coordinated Universal Time (UTC). The value of <code>CompletionTime</code> is accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.</p>
|
|
931
723
|
* @public
|
|
932
724
|
*/
|
|
933
725
|
CreationTime: Date | undefined;
|
|
@@ -937,8 +729,7 @@ export interface GetSearchJobOutput {
|
|
|
937
729
|
*/
|
|
938
730
|
SearchJobIdentifier: string | undefined;
|
|
939
731
|
/**
|
|
940
|
-
* <p>The unique string that identifies the Amazon Resource
|
|
941
|
-
* Name (ARN) of the specified search job.</p>
|
|
732
|
+
* <p>The unique string that identifies the Amazon Resource Name (ARN) of the specified search job.</p>
|
|
942
733
|
* @public
|
|
943
734
|
*/
|
|
944
735
|
SearchJobArn: string | undefined;
|
|
@@ -948,18 +739,12 @@ export interface GetSearchJobOutput {
|
|
|
948
739
|
*/
|
|
949
740
|
export interface ListSearchJobsInput {
|
|
950
741
|
/**
|
|
951
|
-
* <p>Include this parameter to filter list by search
|
|
952
|
-
* job status.</p>
|
|
742
|
+
* <p>Include this parameter to filter list by search job status.</p>
|
|
953
743
|
* @public
|
|
954
744
|
*/
|
|
955
745
|
ByStatus?: SearchJobState | undefined;
|
|
956
746
|
/**
|
|
957
|
-
* <p>The next item following a partial list of returned
|
|
958
|
-
* search jobs.</p>
|
|
959
|
-
* <p>For example, if a request
|
|
960
|
-
* is made to return <code>MaxResults</code> number of backups, <code>NextToken</code>
|
|
961
|
-
* allows you to return more items in your list starting at the location pointed to by the
|
|
962
|
-
* next token.</p>
|
|
747
|
+
* <p>The next item following a partial list of returned search jobs.</p> <p>For example, if a request is made to return <code>MaxResults</code> number of backups, <code>NextToken</code> allows you to return more items in your list starting at the location pointed to by the next token.</p>
|
|
963
748
|
* @public
|
|
964
749
|
*/
|
|
965
750
|
NextToken?: string | undefined;
|
|
@@ -980,8 +765,7 @@ export interface SearchJobSummary {
|
|
|
980
765
|
*/
|
|
981
766
|
SearchJobIdentifier?: string | undefined;
|
|
982
767
|
/**
|
|
983
|
-
* <p>The unique string that identifies the Amazon Resource
|
|
984
|
-
* Name (ARN) of the specified search job.</p>
|
|
768
|
+
* <p>The unique string that identifies the Amazon Resource Name (ARN) of the specified search job.</p>
|
|
985
769
|
* @public
|
|
986
770
|
*/
|
|
987
771
|
SearchJobArn?: string | undefined;
|
|
@@ -1006,29 +790,12 @@ export interface SearchJobSummary {
|
|
|
1006
790
|
*/
|
|
1007
791
|
CompletionTime?: Date | undefined;
|
|
1008
792
|
/**
|
|
1009
|
-
* <p>Returned summary of the specified search job scope,
|
|
1010
|
-
* including:
|
|
1011
|
-
* </p>
|
|
1012
|
-
* <ul>
|
|
1013
|
-
* <li>
|
|
1014
|
-
* <p>TotalBackupsToScanCount, the number of
|
|
1015
|
-
* recovery points returned by the search.</p>
|
|
1016
|
-
* </li>
|
|
1017
|
-
* <li>
|
|
1018
|
-
* <p>TotalItemsToScanCount, the number of
|
|
1019
|
-
* items returned by the search.</p>
|
|
1020
|
-
* </li>
|
|
1021
|
-
* </ul>
|
|
793
|
+
* <p>Returned summary of the specified search job scope, including: </p> <ul> <li> <p>TotalBackupsToScanCount, the number of recovery points returned by the search.</p> </li> <li> <p>TotalItemsToScanCount, the number of items returned by the search.</p> </li> </ul>
|
|
1022
794
|
* @public
|
|
1023
795
|
*/
|
|
1024
796
|
SearchScopeSummary?: SearchScopeSummary | undefined;
|
|
1025
797
|
/**
|
|
1026
|
-
* <p>A status message will be returned for either a
|
|
1027
|
-
* earch job with a status of <code>ERRORED</code> or a status of
|
|
1028
|
-
* <code>COMPLETED</code> jobs with issues.</p>
|
|
1029
|
-
* <p>For example, a message may say that a search
|
|
1030
|
-
* contained recovery points unable to be scanned because
|
|
1031
|
-
* of a permissions issue.</p>
|
|
798
|
+
* <p>A status message will be returned for either a earch job with a status of <code>ERRORED</code> or a status of <code>COMPLETED</code> jobs with issues.</p> <p>For example, a message may say that a search contained recovery points unable to be scanned because of a permissions issue.</p>
|
|
1032
799
|
* @public
|
|
1033
800
|
*/
|
|
1034
801
|
StatusMessage?: string | undefined;
|
|
@@ -1038,18 +805,12 @@ export interface SearchJobSummary {
|
|
|
1038
805
|
*/
|
|
1039
806
|
export interface ListSearchJobsOutput {
|
|
1040
807
|
/**
|
|
1041
|
-
* <p>The search jobs among the list, with details of
|
|
1042
|
-
* the returned search jobs.</p>
|
|
808
|
+
* <p>The search jobs among the list, with details of the returned search jobs.</p>
|
|
1043
809
|
* @public
|
|
1044
810
|
*/
|
|
1045
811
|
SearchJobs: SearchJobSummary[] | undefined;
|
|
1046
812
|
/**
|
|
1047
|
-
* <p>The next item following a partial list of returned backups
|
|
1048
|
-
* included in a search job.</p>
|
|
1049
|
-
* <p>For example, if a request
|
|
1050
|
-
* is made to return <code>MaxResults</code> number of backups, <code>NextToken</code>
|
|
1051
|
-
* allows you to return more items in your list starting at the location pointed to by the
|
|
1052
|
-
* next token.</p>
|
|
813
|
+
* <p>The next item following a partial list of returned backups included in a search job.</p> <p>For example, if a request is made to return <code>MaxResults</code> number of backups, <code>NextToken</code> allows you to return more items in your list starting at the location pointed to by the next token.</p>
|
|
1053
814
|
* @public
|
|
1054
815
|
*/
|
|
1055
816
|
NextToken?: string | undefined;
|
|
@@ -1096,42 +857,27 @@ export interface StartSearchJobInput {
|
|
|
1096
857
|
*/
|
|
1097
858
|
Tags?: Record<string, string> | undefined;
|
|
1098
859
|
/**
|
|
1099
|
-
* <p>Include alphanumeric characters to create a
|
|
1100
|
-
* name for this search job.</p>
|
|
860
|
+
* <p>Include alphanumeric characters to create a name for this search job.</p>
|
|
1101
861
|
* @public
|
|
1102
862
|
*/
|
|
1103
863
|
Name?: string | undefined;
|
|
1104
864
|
/**
|
|
1105
|
-
* <p>The encryption key for the specified
|
|
1106
|
-
* search job.</p>
|
|
865
|
+
* <p>The encryption key for the specified search job.</p>
|
|
1107
866
|
* @public
|
|
1108
867
|
*/
|
|
1109
868
|
EncryptionKeyArn?: string | undefined;
|
|
1110
869
|
/**
|
|
1111
|
-
* <p>Include this parameter to allow multiple identical
|
|
1112
|
-
* calls for idempotency.</p>
|
|
1113
|
-
* <p>A client token is valid for 8 hours after the first
|
|
1114
|
-
* request that uses it is completed. After this time,
|
|
1115
|
-
* any request with the same token is treated as a
|
|
1116
|
-
* new request.</p>
|
|
870
|
+
* <p>Include this parameter to allow multiple identical calls for idempotency.</p> <p>A client token is valid for 8 hours after the first request that uses it is completed. After this time, any request with the same token is treated as a new request.</p>
|
|
1117
871
|
* @public
|
|
1118
872
|
*/
|
|
1119
873
|
ClientToken?: string | undefined;
|
|
1120
874
|
/**
|
|
1121
|
-
* <p>This object can contain BackupResourceTypes,
|
|
1122
|
-
* BackupResourceArns, BackupResourceCreationTime,
|
|
1123
|
-
* BackupResourceTags, and SourceResourceArns to
|
|
1124
|
-
* filter the recovery points returned by the search
|
|
1125
|
-
* job.</p>
|
|
875
|
+
* <p>This object can contain BackupResourceTypes, BackupResourceArns, BackupResourceCreationTime, BackupResourceTags, and SourceResourceArns to filter the recovery points returned by the search job.</p>
|
|
1126
876
|
* @public
|
|
1127
877
|
*/
|
|
1128
878
|
SearchScope: SearchScope | undefined;
|
|
1129
879
|
/**
|
|
1130
|
-
* <p>Item Filters represent all input item
|
|
1131
|
-
* properties specified when the search was
|
|
1132
|
-
* created.</p>
|
|
1133
|
-
* <p>Contains either EBSItemFilters or
|
|
1134
|
-
* S3ItemFilters</p>
|
|
880
|
+
* <p>Item Filters represent all input item properties specified when the search was created.</p> <p>Contains either EBSItemFilters or S3ItemFilters</p>
|
|
1135
881
|
* @public
|
|
1136
882
|
*/
|
|
1137
883
|
ItemFilters?: ItemFilters | undefined;
|
|
@@ -1141,16 +887,12 @@ export interface StartSearchJobInput {
|
|
|
1141
887
|
*/
|
|
1142
888
|
export interface StartSearchJobOutput {
|
|
1143
889
|
/**
|
|
1144
|
-
* <p>The unique string that identifies the Amazon Resource
|
|
1145
|
-
* Name (ARN) of the specified search job.</p>
|
|
890
|
+
* <p>The unique string that identifies the Amazon Resource Name (ARN) of the specified search job.</p>
|
|
1146
891
|
* @public
|
|
1147
892
|
*/
|
|
1148
893
|
SearchJobArn?: string | undefined;
|
|
1149
894
|
/**
|
|
1150
|
-
* <p>The date and time that a job was created, in Unix format and Coordinated
|
|
1151
|
-
* Universal Time (UTC). The value of <code>CompletionTime</code> is accurate to milliseconds.
|
|
1152
|
-
* For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087
|
|
1153
|
-
* AM.</p>
|
|
895
|
+
* <p>The date and time that a job was created, in Unix format and Coordinated Universal Time (UTC). The value of <code>CompletionTime</code> is accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.</p>
|
|
1154
896
|
* @public
|
|
1155
897
|
*/
|
|
1156
898
|
CreationTime?: Date | undefined;
|
|
@@ -1189,21 +931,17 @@ export declare const ExportJobStatus: {
|
|
|
1189
931
|
*/
|
|
1190
932
|
export type ExportJobStatus = (typeof ExportJobStatus)[keyof typeof ExportJobStatus];
|
|
1191
933
|
/**
|
|
1192
|
-
* <p>This specification contains a required string of the
|
|
1193
|
-
* destination bucket; optionally, you can include the
|
|
1194
|
-
* destination prefix.</p>
|
|
934
|
+
* <p>This specification contains a required string of the destination bucket; optionally, you can include the destination prefix.</p>
|
|
1195
935
|
* @public
|
|
1196
936
|
*/
|
|
1197
937
|
export interface S3ExportSpecification {
|
|
1198
938
|
/**
|
|
1199
|
-
* <p>This specifies the destination Amazon S3
|
|
1200
|
-
* bucket for the export job.</p>
|
|
939
|
+
* <p>This specifies the destination Amazon S3 bucket for the export job.</p>
|
|
1201
940
|
* @public
|
|
1202
941
|
*/
|
|
1203
942
|
DestinationBucket: string | undefined;
|
|
1204
943
|
/**
|
|
1205
|
-
* <p>This specifies the prefix for the destination
|
|
1206
|
-
* Amazon S3 bucket for the export job.</p>
|
|
944
|
+
* <p>This specifies the prefix for the destination Amazon S3 bucket for the export job.</p>
|
|
1207
945
|
* @public
|
|
1208
946
|
*/
|
|
1209
947
|
DestinationPrefix?: string | undefined;
|
|
@@ -1218,9 +956,7 @@ export type ExportSpecification = ExportSpecification.S3ExportSpecificationMembe
|
|
|
1218
956
|
*/
|
|
1219
957
|
export declare namespace ExportSpecification {
|
|
1220
958
|
/**
|
|
1221
|
-
* <p>This specifies the destination Amazon S3
|
|
1222
|
-
* bucket for the export job. And, if included, it also
|
|
1223
|
-
* specifies the destination prefix.</p>
|
|
959
|
+
* <p>This specifies the destination Amazon S3 bucket for the export job. And, if included, it also specifies the destination prefix.</p>
|
|
1224
960
|
* @public
|
|
1225
961
|
*/
|
|
1226
962
|
interface S3ExportSpecificationMember {
|
|
@@ -1245,9 +981,7 @@ export declare namespace ExportSpecification {
|
|
|
1245
981
|
*/
|
|
1246
982
|
export interface GetSearchResultExportJobInput {
|
|
1247
983
|
/**
|
|
1248
|
-
* <p>This is the unique string that identifies a
|
|
1249
|
-
* specific export job.</p>
|
|
1250
|
-
* <p>Required for this operation.</p>
|
|
984
|
+
* <p>This is the unique string that identifies a specific export job.</p> <p>Required for this operation.</p>
|
|
1251
985
|
* @public
|
|
1252
986
|
*/
|
|
1253
987
|
ExportJobIdentifier: string | undefined;
|
|
@@ -1257,14 +991,12 @@ export interface GetSearchResultExportJobInput {
|
|
|
1257
991
|
*/
|
|
1258
992
|
export interface GetSearchResultExportJobOutput {
|
|
1259
993
|
/**
|
|
1260
|
-
* <p>This is the unique string that identifies the
|
|
1261
|
-
* specified export job.</p>
|
|
994
|
+
* <p>This is the unique string that identifies the specified export job.</p>
|
|
1262
995
|
* @public
|
|
1263
996
|
*/
|
|
1264
997
|
ExportJobIdentifier: string | undefined;
|
|
1265
998
|
/**
|
|
1266
|
-
* <p>The unique Amazon Resource Name (ARN) that uniquely identifies
|
|
1267
|
-
* the export job.</p>
|
|
999
|
+
* <p>The unique Amazon Resource Name (ARN) that uniquely identifies the export job.</p>
|
|
1268
1000
|
* @public
|
|
1269
1001
|
*/
|
|
1270
1002
|
ExportJobArn?: string | undefined;
|
|
@@ -1274,38 +1006,27 @@ export interface GetSearchResultExportJobOutput {
|
|
|
1274
1006
|
*/
|
|
1275
1007
|
Status?: ExportJobStatus | undefined;
|
|
1276
1008
|
/**
|
|
1277
|
-
* <p>The date and time that an export job was created, in Unix format and Coordinated Universal
|
|
1278
|
-
* Time (UTC). The value of <code>CreationTime</code> is accurate to milliseconds. For
|
|
1279
|
-
* example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087
|
|
1280
|
-
* AM.</p>
|
|
1009
|
+
* <p>The date and time that an export job was created, in Unix format and Coordinated Universal Time (UTC). The value of <code>CreationTime</code> is accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.</p>
|
|
1281
1010
|
* @public
|
|
1282
1011
|
*/
|
|
1283
1012
|
CreationTime?: Date | undefined;
|
|
1284
1013
|
/**
|
|
1285
|
-
* <p>The date and time that an export job completed, in Unix format and Coordinated Universal
|
|
1286
|
-
* Time (UTC). The value of <code>CreationTime</code> is accurate to milliseconds. For
|
|
1287
|
-
* example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087
|
|
1288
|
-
* AM.</p>
|
|
1014
|
+
* <p>The date and time that an export job completed, in Unix format and Coordinated Universal Time (UTC). The value of <code>CreationTime</code> is accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.</p>
|
|
1289
1015
|
* @public
|
|
1290
1016
|
*/
|
|
1291
1017
|
CompletionTime?: Date | undefined;
|
|
1292
1018
|
/**
|
|
1293
|
-
* <p>A status message is a string that is returned for search job
|
|
1294
|
-
* with a status of <code>FAILED</code>, along with steps to remedy
|
|
1295
|
-
* and retry the operation.</p>
|
|
1019
|
+
* <p>A status message is a string that is returned for search job with a status of <code>FAILED</code>, along with steps to remedy and retry the operation.</p>
|
|
1296
1020
|
* @public
|
|
1297
1021
|
*/
|
|
1298
1022
|
StatusMessage?: string | undefined;
|
|
1299
1023
|
/**
|
|
1300
|
-
* <p>The export specification consists of the destination
|
|
1301
|
-
* S3 bucket to which the search results were exported, along
|
|
1302
|
-
* with the destination prefix.</p>
|
|
1024
|
+
* <p>The export specification consists of the destination S3 bucket to which the search results were exported, along with the destination prefix.</p>
|
|
1303
1025
|
* @public
|
|
1304
1026
|
*/
|
|
1305
1027
|
ExportSpecification?: ExportSpecification | undefined;
|
|
1306
1028
|
/**
|
|
1307
|
-
* <p>The unique string that identifies the Amazon Resource
|
|
1308
|
-
* Name (ARN) of the specified search job.</p>
|
|
1029
|
+
* <p>The unique string that identifies the Amazon Resource Name (ARN) of the specified search job.</p>
|
|
1309
1030
|
* @public
|
|
1310
1031
|
*/
|
|
1311
1032
|
SearchJobArn?: string | undefined;
|
|
@@ -1315,8 +1036,7 @@ export interface GetSearchResultExportJobOutput {
|
|
|
1315
1036
|
*/
|
|
1316
1037
|
export interface ListSearchResultExportJobsInput {
|
|
1317
1038
|
/**
|
|
1318
|
-
* <p>The search jobs to be included in the export job
|
|
1319
|
-
* can be filtered by including this parameter.</p>
|
|
1039
|
+
* <p>The search jobs to be included in the export job can be filtered by including this parameter.</p>
|
|
1320
1040
|
* @public
|
|
1321
1041
|
*/
|
|
1322
1042
|
Status?: ExportJobStatus | undefined;
|
|
@@ -1326,12 +1046,7 @@ export interface ListSearchResultExportJobsInput {
|
|
|
1326
1046
|
*/
|
|
1327
1047
|
SearchJobIdentifier?: string | undefined;
|
|
1328
1048
|
/**
|
|
1329
|
-
* <p>The next item following a partial list of returned backups
|
|
1330
|
-
* included in a search job.</p>
|
|
1331
|
-
* <p>For example, if a request
|
|
1332
|
-
* is made to return <code>MaxResults</code> number of backups, <code>NextToken</code>
|
|
1333
|
-
* allows you to return more items in your list starting at the location pointed to by the
|
|
1334
|
-
* next token.</p>
|
|
1049
|
+
* <p>The next item following a partial list of returned backups included in a search job.</p> <p>For example, if a request is made to return <code>MaxResults</code> number of backups, <code>NextToken</code> allows you to return more items in your list starting at the location pointed to by the next token.</p>
|
|
1335
1050
|
* @public
|
|
1336
1051
|
*/
|
|
1337
1052
|
NextToken?: string | undefined;
|
|
@@ -1347,49 +1062,37 @@ export interface ListSearchResultExportJobsInput {
|
|
|
1347
1062
|
*/
|
|
1348
1063
|
export interface ExportJobSummary {
|
|
1349
1064
|
/**
|
|
1350
|
-
* <p>This is the unique string that identifies a
|
|
1351
|
-
* specific export job.</p>
|
|
1065
|
+
* <p>This is the unique string that identifies a specific export job.</p>
|
|
1352
1066
|
* @public
|
|
1353
1067
|
*/
|
|
1354
1068
|
ExportJobIdentifier: string | undefined;
|
|
1355
1069
|
/**
|
|
1356
|
-
* <p>This is the unique ARN (Amazon Resource Name) that
|
|
1357
|
-
* belongs to the new export job.</p>
|
|
1070
|
+
* <p>This is the unique ARN (Amazon Resource Name) that belongs to the new export job.</p>
|
|
1358
1071
|
* @public
|
|
1359
1072
|
*/
|
|
1360
1073
|
ExportJobArn?: string | undefined;
|
|
1361
1074
|
/**
|
|
1362
|
-
* <p>The status of the export job is one of the
|
|
1363
|
-
* following:</p>
|
|
1364
|
-
* <p>
|
|
1365
|
-
* <code>CREATED</code>; <code>RUNNING</code>;
|
|
1366
|
-
* <code>FAILED</code>; or <code>COMPLETED</code>.</p>
|
|
1075
|
+
* <p>The status of the export job is one of the following:</p> <p> <code>CREATED</code>; <code>RUNNING</code>; <code>FAILED</code>; or <code>COMPLETED</code>.</p>
|
|
1367
1076
|
* @public
|
|
1368
1077
|
*/
|
|
1369
1078
|
Status?: ExportJobStatus | undefined;
|
|
1370
1079
|
/**
|
|
1371
|
-
* <p>This is a timestamp of the time the export job
|
|
1372
|
-
* was created.</p>
|
|
1080
|
+
* <p>This is a timestamp of the time the export job was created.</p>
|
|
1373
1081
|
* @public
|
|
1374
1082
|
*/
|
|
1375
1083
|
CreationTime?: Date | undefined;
|
|
1376
1084
|
/**
|
|
1377
|
-
* <p>This is a timestamp of the time the export job
|
|
1378
|
-
* compeleted.</p>
|
|
1085
|
+
* <p>This is a timestamp of the time the export job compeleted.</p>
|
|
1379
1086
|
* @public
|
|
1380
1087
|
*/
|
|
1381
1088
|
CompletionTime?: Date | undefined;
|
|
1382
1089
|
/**
|
|
1383
|
-
* <p>A status message is a string that is returned for an export
|
|
1384
|
-
* job.</p>
|
|
1385
|
-
* <p>A status message is included for any status other
|
|
1386
|
-
* than <code>COMPLETED</code> without issues.</p>
|
|
1090
|
+
* <p>A status message is a string that is returned for an export job.</p> <p>A status message is included for any status other than <code>COMPLETED</code> without issues.</p>
|
|
1387
1091
|
* @public
|
|
1388
1092
|
*/
|
|
1389
1093
|
StatusMessage?: string | undefined;
|
|
1390
1094
|
/**
|
|
1391
|
-
* <p>The unique string that identifies the Amazon Resource
|
|
1392
|
-
* Name (ARN) of the specified search job.</p>
|
|
1095
|
+
* <p>The unique string that identifies the Amazon Resource Name (ARN) of the specified search job.</p>
|
|
1393
1096
|
* @public
|
|
1394
1097
|
*/
|
|
1395
1098
|
SearchJobArn?: string | undefined;
|
|
@@ -1404,12 +1107,7 @@ export interface ListSearchResultExportJobsOutput {
|
|
|
1404
1107
|
*/
|
|
1405
1108
|
ExportJobs: ExportJobSummary[] | undefined;
|
|
1406
1109
|
/**
|
|
1407
|
-
* <p>The next item following a partial list of returned backups
|
|
1408
|
-
* included in a search job.</p>
|
|
1409
|
-
* <p>For example, if a request
|
|
1410
|
-
* is made to return <code>MaxResults</code> number of backups, <code>NextToken</code>
|
|
1411
|
-
* allows you to return more items in your list starting at the location pointed to by the
|
|
1412
|
-
* next token.</p>
|
|
1110
|
+
* <p>The next item following a partial list of returned backups included in a search job.</p> <p>For example, if a request is made to return <code>MaxResults</code> number of backups, <code>NextToken</code> allows you to return more items in your list starting at the location pointed to by the next token.</p>
|
|
1413
1111
|
* @public
|
|
1414
1112
|
*/
|
|
1415
1113
|
NextToken?: string | undefined;
|
|
@@ -1424,32 +1122,22 @@ export interface StartSearchResultExportJobInput {
|
|
|
1424
1122
|
*/
|
|
1425
1123
|
SearchJobIdentifier: string | undefined;
|
|
1426
1124
|
/**
|
|
1427
|
-
* <p>This specification contains a required string of the
|
|
1428
|
-
* destination bucket; optionally, you can include the
|
|
1429
|
-
* destination prefix.</p>
|
|
1125
|
+
* <p>This specification contains a required string of the destination bucket; optionally, you can include the destination prefix.</p>
|
|
1430
1126
|
* @public
|
|
1431
1127
|
*/
|
|
1432
1128
|
ExportSpecification: ExportSpecification | undefined;
|
|
1433
1129
|
/**
|
|
1434
|
-
* <p>Include this parameter to allow multiple identical
|
|
1435
|
-
* calls for idempotency.</p>
|
|
1436
|
-
* <p>A client token is valid for 8 hours after the first
|
|
1437
|
-
* request that uses it is completed. After this time,
|
|
1438
|
-
* any request with the same token is treated as a
|
|
1439
|
-
* new request.</p>
|
|
1130
|
+
* <p>Include this parameter to allow multiple identical calls for idempotency.</p> <p>A client token is valid for 8 hours after the first request that uses it is completed. After this time, any request with the same token is treated as a new request.</p>
|
|
1440
1131
|
* @public
|
|
1441
1132
|
*/
|
|
1442
1133
|
ClientToken?: string | undefined;
|
|
1443
1134
|
/**
|
|
1444
|
-
* <p>Optional tags to include. A tag is a key-value pair you can use to manage,
|
|
1445
|
-
* filter, and search for your resources. Allowed characters include UTF-8 letters,
|
|
1446
|
-
* numbers, spaces, and the following characters: + - = . _ : /. </p>
|
|
1135
|
+
* <p>Optional tags to include. A tag is a key-value pair you can use to manage, filter, and search for your resources. Allowed characters include UTF-8 letters, numbers, spaces, and the following characters: + - = . _ : /. </p>
|
|
1447
1136
|
* @public
|
|
1448
1137
|
*/
|
|
1449
1138
|
Tags?: Record<string, string> | undefined;
|
|
1450
1139
|
/**
|
|
1451
|
-
* <p>This parameter specifies the role ARN used to start
|
|
1452
|
-
* the search results export jobs.</p>
|
|
1140
|
+
* <p>This parameter specifies the role ARN used to start the search results export jobs.</p>
|
|
1453
1141
|
* @public
|
|
1454
1142
|
*/
|
|
1455
1143
|
RoleArn?: string | undefined;
|
|
@@ -1459,14 +1147,12 @@ export interface StartSearchResultExportJobInput {
|
|
|
1459
1147
|
*/
|
|
1460
1148
|
export interface StartSearchResultExportJobOutput {
|
|
1461
1149
|
/**
|
|
1462
|
-
* <p>This is the unique ARN (Amazon Resource Name) that
|
|
1463
|
-
* belongs to the new export job.</p>
|
|
1150
|
+
* <p>This is the unique ARN (Amazon Resource Name) that belongs to the new export job.</p>
|
|
1464
1151
|
* @public
|
|
1465
1152
|
*/
|
|
1466
1153
|
ExportJobArn?: string | undefined;
|
|
1467
1154
|
/**
|
|
1468
|
-
* <p>This is the unique identifier that
|
|
1469
|
-
* specifies the new export job.</p>
|
|
1155
|
+
* <p>This is the unique identifier that specifies the new export job.</p>
|
|
1470
1156
|
* @public
|
|
1471
1157
|
*/
|
|
1472
1158
|
ExportJobIdentifier: string | undefined;
|
|
@@ -1476,16 +1162,12 @@ export interface StartSearchResultExportJobOutput {
|
|
|
1476
1162
|
*/
|
|
1477
1163
|
export interface TagResourceRequest {
|
|
1478
1164
|
/**
|
|
1479
|
-
* <p>The Amazon Resource Name (ARN) that uniquely identifies
|
|
1480
|
-
* the resource.</p>
|
|
1481
|
-
* <p>This is the resource that will have the indicated tags.</p>
|
|
1165
|
+
* <p>The Amazon Resource Name (ARN) that uniquely identifies the resource.</p> <p>This is the resource that will have the indicated tags.</p>
|
|
1482
1166
|
* @public
|
|
1483
1167
|
*/
|
|
1484
1168
|
ResourceArn: string | undefined;
|
|
1485
1169
|
/**
|
|
1486
|
-
* <p>Required tags to include. A tag is a key-value pair you can use to manage,
|
|
1487
|
-
* filter, and search for your resources. Allowed characters include UTF-8 letters,
|
|
1488
|
-
* numbers, spaces, and the following characters: + - = . _ : /. </p>
|
|
1170
|
+
* <p>Required tags to include. A tag is a key-value pair you can use to manage, filter, and search for your resources. Allowed characters include UTF-8 letters, numbers, spaces, and the following characters: + - = . _ : /. </p>
|
|
1489
1171
|
* @public
|
|
1490
1172
|
*/
|
|
1491
1173
|
Tags: Record<string, string> | undefined;
|
|
@@ -1500,14 +1182,12 @@ export interface TagResourceResponse {
|
|
|
1500
1182
|
*/
|
|
1501
1183
|
export interface UntagResourceRequest {
|
|
1502
1184
|
/**
|
|
1503
|
-
* <p>The Amazon Resource Name (ARN) that uniquely identifies
|
|
1504
|
-
* the resource where you want to remove tags.</p>
|
|
1185
|
+
* <p>The Amazon Resource Name (ARN) that uniquely identifies the resource where you want to remove tags.</p>
|
|
1505
1186
|
* @public
|
|
1506
1187
|
*/
|
|
1507
1188
|
ResourceArn: string | undefined;
|
|
1508
1189
|
/**
|
|
1509
|
-
* <p>This required parameter contains the tag keys you
|
|
1510
|
-
* want to remove from the source.</p>
|
|
1190
|
+
* <p>This required parameter contains the tag keys you want to remove from the source.</p>
|
|
1511
1191
|
* @public
|
|
1512
1192
|
*/
|
|
1513
1193
|
TagKeys: string[] | undefined;
|