@aws-sdk/client-drs 3.99.0 → 3.105.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.
Files changed (47) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/README.md +7 -7
  3. package/dist-cjs/Drs.js +45 -0
  4. package/dist-cjs/DrsClient.js +2 -0
  5. package/dist-cjs/commands/CreateExtendedSourceServerCommand.js +36 -0
  6. package/dist-cjs/commands/ListExtensibleSourceServersCommand.js +36 -0
  7. package/dist-cjs/commands/ListStagingAccountsCommand.js +36 -0
  8. package/dist-cjs/commands/index.js +3 -0
  9. package/dist-cjs/models/models_0.js +273 -201
  10. package/dist-cjs/pagination/ListExtensibleSourceServersPaginator.js +36 -0
  11. package/dist-cjs/pagination/ListStagingAccountsPaginator.js +36 -0
  12. package/dist-cjs/pagination/index.js +2 -0
  13. package/dist-cjs/protocols/Aws_restJson1.js +353 -2
  14. package/dist-es/Drs.js +45 -0
  15. package/dist-es/DrsClient.js +2 -0
  16. package/dist-es/commands/CreateExtendedSourceServerCommand.js +39 -0
  17. package/dist-es/commands/ListExtensibleSourceServersCommand.js +39 -0
  18. package/dist-es/commands/ListStagingAccountsCommand.js +39 -0
  19. package/dist-es/commands/index.js +3 -0
  20. package/dist-es/models/models_0.js +217 -169
  21. package/dist-es/pagination/ListExtensibleSourceServersPaginator.js +75 -0
  22. package/dist-es/pagination/ListStagingAccountsPaginator.js +75 -0
  23. package/dist-es/pagination/index.js +2 -0
  24. package/dist-es/protocols/Aws_restJson1.js +439 -15
  25. package/dist-types/Drs.d.ts +24 -0
  26. package/dist-types/DrsClient.d.ts +5 -2
  27. package/dist-types/commands/CreateExtendedSourceServerCommand.d.ts +35 -0
  28. package/dist-types/commands/ListExtensibleSourceServersCommand.d.ts +38 -0
  29. package/dist-types/commands/ListStagingAccountsCommand.d.ts +35 -0
  30. package/dist-types/commands/index.d.ts +3 -0
  31. package/dist-types/models/models_0.d.ts +723 -537
  32. package/dist-types/pagination/ListExtensibleSourceServersPaginator.d.ts +4 -0
  33. package/dist-types/pagination/ListStagingAccountsPaginator.d.ts +4 -0
  34. package/dist-types/pagination/index.d.ts +2 -0
  35. package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
  36. package/dist-types/ts3.4/Drs.d.ts +15 -0
  37. package/dist-types/ts3.4/DrsClient.d.ts +5 -2
  38. package/dist-types/ts3.4/commands/CreateExtendedSourceServerCommand.d.ts +17 -0
  39. package/dist-types/ts3.4/commands/ListExtensibleSourceServersCommand.d.ts +17 -0
  40. package/dist-types/ts3.4/commands/ListStagingAccountsCommand.d.ts +17 -0
  41. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  42. package/dist-types/ts3.4/models/models_0.d.ts +437 -338
  43. package/dist-types/ts3.4/pagination/ListExtensibleSourceServersPaginator.d.ts +4 -0
  44. package/dist-types/ts3.4/pagination/ListStagingAccountsPaginator.d.ts +4 -0
  45. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  46. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +9 -0
  47. package/package.json +4 -3
@@ -1,7 +1,7 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { DrsServiceException as __BaseException } from "./DrsServiceException";
3
3
  /**
4
- * <p>TYou do not have sufficient access to perform this action.</p>
4
+ * <p>You do not have sufficient access to perform this action.</p>
5
5
  */
6
6
  export declare class AccessDeniedException extends __BaseException {
7
7
  readonly name: "AccessDeniedException";
@@ -12,6 +12,21 @@ export declare class AccessDeniedException extends __BaseException {
12
12
  */
13
13
  constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
14
14
  }
15
+ /**
16
+ * <p>AWS account.</p>
17
+ */
18
+ export interface Account {
19
+ /**
20
+ * <p>Account ID of AWS account.</p>
21
+ */
22
+ accountID?: string;
23
+ }
24
+ export declare namespace Account {
25
+ /**
26
+ * @internal
27
+ */
28
+ const filterSensitiveLog: (obj: Account) => any;
29
+ }
15
30
  /**
16
31
  * <p>The request could not be completed due to a conflict with the current state of the target resource.</p>
17
32
  */
@@ -32,6 +47,37 @@ export declare class ConflictException extends __BaseException {
32
47
  */
33
48
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
34
49
  }
50
+ /**
51
+ * <p>Properties of a conversion job</p>
52
+ */
53
+ export interface ConversionProperties {
54
+ /**
55
+ * <p>A mapping between the volumes being converted and the converted snapshot ids</p>
56
+ */
57
+ volumeToConversionMap?: Record<string, Record<string, string>>;
58
+ /**
59
+ * <p>The root volume name of a conversion job</p>
60
+ */
61
+ rootVolumeName?: string;
62
+ /**
63
+ * <p>Whether the volume being converted uses UEFI or not</p>
64
+ */
65
+ forceUefi?: boolean;
66
+ /**
67
+ * <p>The timestamp of when the snapshot being converted was taken</p>
68
+ */
69
+ dataTimestamp?: string;
70
+ /**
71
+ * <p>A mapping between the volumes and their sizes</p>
72
+ */
73
+ volumeToVolumeSize?: Record<string, number>;
74
+ }
75
+ export declare namespace ConversionProperties {
76
+ /**
77
+ * @internal
78
+ */
79
+ const filterSensitiveLog: (obj: ConversionProperties) => any;
80
+ }
35
81
  /**
36
82
  * <p>Information about a server's CPU.</p>
37
83
  */
@@ -51,213 +97,528 @@ export declare namespace CPU {
51
97
  */
52
98
  const filterSensitiveLog: (obj: CPU) => any;
53
99
  }
54
- export declare enum ReplicationConfigurationDataPlaneRouting {
55
- PRIVATE_IP = "PRIVATE_IP",
56
- PUBLIC_IP = "PUBLIC_IP"
100
+ export interface CreateExtendedSourceServerRequest {
101
+ /**
102
+ * <p>This defines the ARN of the source server in staging Account based on which you want to create an extended source server.</p>
103
+ */
104
+ sourceServerArn: string | undefined;
105
+ /**
106
+ * <p>A list of tags associated with the extended source server.</p>
107
+ */
108
+ tags?: Record<string, string>;
57
109
  }
58
- export declare enum ReplicationConfigurationDefaultLargeStagingDiskType {
59
- GP2 = "GP2",
60
- GP3 = "GP3",
61
- ST1 = "ST1"
110
+ export declare namespace CreateExtendedSourceServerRequest {
111
+ /**
112
+ * @internal
113
+ */
114
+ const filterSensitiveLog: (obj: CreateExtendedSourceServerRequest) => any;
62
115
  }
63
- export declare enum ReplicationConfigurationEbsEncryption {
64
- CUSTOM = "CUSTOM",
65
- DEFAULT = "DEFAULT"
116
+ export declare enum DataReplicationErrorString {
117
+ AGENT_NOT_SEEN = "AGENT_NOT_SEEN",
118
+ FAILED_TO_ATTACH_STAGING_DISKS = "FAILED_TO_ATTACH_STAGING_DISKS",
119
+ FAILED_TO_AUTHENTICATE_WITH_SERVICE = "FAILED_TO_AUTHENTICATE_WITH_SERVICE",
120
+ FAILED_TO_BOOT_REPLICATION_SERVER = "FAILED_TO_BOOT_REPLICATION_SERVER",
121
+ FAILED_TO_CONNECT_AGENT_TO_REPLICATION_SERVER = "FAILED_TO_CONNECT_AGENT_TO_REPLICATION_SERVER",
122
+ FAILED_TO_CREATE_SECURITY_GROUP = "FAILED_TO_CREATE_SECURITY_GROUP",
123
+ FAILED_TO_CREATE_STAGING_DISKS = "FAILED_TO_CREATE_STAGING_DISKS",
124
+ FAILED_TO_DOWNLOAD_REPLICATION_SOFTWARE = "FAILED_TO_DOWNLOAD_REPLICATION_SOFTWARE",
125
+ FAILED_TO_LAUNCH_REPLICATION_SERVER = "FAILED_TO_LAUNCH_REPLICATION_SERVER",
126
+ FAILED_TO_PAIR_REPLICATION_SERVER_WITH_AGENT = "FAILED_TO_PAIR_REPLICATION_SERVER_WITH_AGENT",
127
+ FAILED_TO_START_DATA_TRANSFER = "FAILED_TO_START_DATA_TRANSFER",
128
+ NOT_CONVERGING = "NOT_CONVERGING",
129
+ SNAPSHOTS_FAILURE = "SNAPSHOTS_FAILURE",
130
+ UNSTABLE_NETWORK = "UNSTABLE_NETWORK"
66
131
  }
67
- export declare enum PITPolicyRuleUnits {
68
- DAY = "DAY",
69
- HOUR = "HOUR",
70
- MINUTE = "MINUTE"
132
+ /**
133
+ * <p>Error in data replication.</p>
134
+ */
135
+ export interface DataReplicationError {
136
+ /**
137
+ * <p>Error in data replication.</p>
138
+ */
139
+ error?: DataReplicationErrorString | string;
140
+ /**
141
+ * <p>Error in data replication.</p>
142
+ */
143
+ rawError?: string;
144
+ }
145
+ export declare namespace DataReplicationError {
146
+ /**
147
+ * @internal
148
+ */
149
+ const filterSensitiveLog: (obj: DataReplicationError) => any;
150
+ }
151
+ export declare enum DataReplicationInitiationStepName {
152
+ ATTACH_STAGING_DISKS = "ATTACH_STAGING_DISKS",
153
+ AUTHENTICATE_WITH_SERVICE = "AUTHENTICATE_WITH_SERVICE",
154
+ BOOT_REPLICATION_SERVER = "BOOT_REPLICATION_SERVER",
155
+ CONNECT_AGENT_TO_REPLICATION_SERVER = "CONNECT_AGENT_TO_REPLICATION_SERVER",
156
+ CREATE_SECURITY_GROUP = "CREATE_SECURITY_GROUP",
157
+ CREATE_STAGING_DISKS = "CREATE_STAGING_DISKS",
158
+ DOWNLOAD_REPLICATION_SOFTWARE = "DOWNLOAD_REPLICATION_SOFTWARE",
159
+ LAUNCH_REPLICATION_SERVER = "LAUNCH_REPLICATION_SERVER",
160
+ PAIR_REPLICATION_SERVER_WITH_AGENT = "PAIR_REPLICATION_SERVER_WITH_AGENT",
161
+ START_DATA_TRANSFER = "START_DATA_TRANSFER",
162
+ WAIT = "WAIT"
163
+ }
164
+ export declare enum DataReplicationInitiationStepStatus {
165
+ FAILED = "FAILED",
166
+ IN_PROGRESS = "IN_PROGRESS",
167
+ NOT_STARTED = "NOT_STARTED",
168
+ SKIPPED = "SKIPPED",
169
+ SUCCEEDED = "SUCCEEDED"
71
170
  }
72
171
  /**
73
- * <p>A rule in the Point in Time (PIT) policy representing when to take snapshots and how long to retain them for.</p>
172
+ * <p>Data replication initiation step.</p>
74
173
  */
75
- export interface PITPolicyRule {
174
+ export interface DataReplicationInitiationStep {
76
175
  /**
77
- * <p>The ID of the rule.</p>
176
+ * <p>The name of the step.</p>
78
177
  */
79
- ruleID?: number;
178
+ name?: DataReplicationInitiationStepName | string;
80
179
  /**
81
- * <p>The units used to measure the interval and retentionDuration.</p>
180
+ * <p>The status of the step.</p>
82
181
  */
83
- units: PITPolicyRuleUnits | string | undefined;
182
+ status?: DataReplicationInitiationStepStatus | string;
183
+ }
184
+ export declare namespace DataReplicationInitiationStep {
84
185
  /**
85
- * <p>How often, in the chosen units, a snapshot should be taken.</p>
186
+ * @internal
86
187
  */
87
- interval: number | undefined;
188
+ const filterSensitiveLog: (obj: DataReplicationInitiationStep) => any;
189
+ }
190
+ /**
191
+ * <p>Data replication initiation.</p>
192
+ */
193
+ export interface DataReplicationInitiation {
88
194
  /**
89
- * <p>The duration to retain a snapshot for, in the chosen units.</p>
195
+ * <p>The date and time of the current attempt to initiate data replication.</p>
90
196
  */
91
- retentionDuration: number | undefined;
197
+ startDateTime?: string;
92
198
  /**
93
- * <p>Whether this rule is enabled or not.</p>
199
+ * <p>The date and time of the next attempt to initiate data replication.</p>
200
+ */
201
+ nextAttemptDateTime?: string;
202
+ /**
203
+ * <p>The steps of the current attempt to initiate data replication.</p>
204
+ */
205
+ steps?: DataReplicationInitiationStep[];
206
+ }
207
+ export declare namespace DataReplicationInitiation {
208
+ /**
209
+ * @internal
210
+ */
211
+ const filterSensitiveLog: (obj: DataReplicationInitiation) => any;
212
+ }
213
+ export declare enum DataReplicationState {
214
+ BACKLOG = "BACKLOG",
215
+ CONTINUOUS = "CONTINUOUS",
216
+ CREATING_SNAPSHOT = "CREATING_SNAPSHOT",
217
+ DISCONNECTED = "DISCONNECTED",
218
+ INITIAL_SYNC = "INITIAL_SYNC",
219
+ INITIATING = "INITIATING",
220
+ PAUSED = "PAUSED",
221
+ RESCAN = "RESCAN",
222
+ STALLED = "STALLED",
223
+ STOPPED = "STOPPED"
224
+ }
225
+ /**
226
+ * <p>A disk that should be replicated.</p>
227
+ */
228
+ export interface DataReplicationInfoReplicatedDisk {
229
+ /**
230
+ * <p>The name of the device.</p>
231
+ */
232
+ deviceName?: string;
233
+ /**
234
+ * <p>The total amount of data to be replicated in bytes.</p>
235
+ */
236
+ totalStorageBytes?: number;
237
+ /**
238
+ * <p>The amount of data replicated so far in bytes.</p>
239
+ */
240
+ replicatedStorageBytes?: number;
241
+ /**
242
+ * <p>The amount of data to be rescanned in bytes.</p>
243
+ */
244
+ rescannedStorageBytes?: number;
245
+ /**
246
+ * <p>The size of the replication backlog in bytes.</p>
247
+ */
248
+ backloggedStorageBytes?: number;
249
+ }
250
+ export declare namespace DataReplicationInfoReplicatedDisk {
251
+ /**
252
+ * @internal
253
+ */
254
+ const filterSensitiveLog: (obj: DataReplicationInfoReplicatedDisk) => any;
255
+ }
256
+ /**
257
+ * <p>Information about Data Replication</p>
258
+ */
259
+ export interface DataReplicationInfo {
260
+ /**
261
+ * <p>Data replication lag duration.</p>
262
+ */
263
+ lagDuration?: string;
264
+ /**
265
+ * <p>An estimate of when the data replication will be completed.</p>
266
+ */
267
+ etaDateTime?: string;
268
+ /**
269
+ * <p>The disks that should be replicated.</p>
270
+ */
271
+ replicatedDisks?: DataReplicationInfoReplicatedDisk[];
272
+ /**
273
+ * <p>The state of the data replication.</p>
274
+ */
275
+ dataReplicationState?: DataReplicationState | string;
276
+ /**
277
+ * <p>Information about whether the data replication has been initiated.</p>
278
+ */
279
+ dataReplicationInitiation?: DataReplicationInitiation;
280
+ /**
281
+ * <p>Error in data replication.</p>
282
+ */
283
+ dataReplicationError?: DataReplicationError;
284
+ }
285
+ export declare namespace DataReplicationInfo {
286
+ /**
287
+ * @internal
288
+ */
289
+ const filterSensitiveLog: (obj: DataReplicationInfo) => any;
290
+ }
291
+ export declare enum LastLaunchResult {
292
+ FAILED = "FAILED",
293
+ NOT_STARTED = "NOT_STARTED",
294
+ PENDING = "PENDING",
295
+ SUCCEEDED = "SUCCEEDED"
296
+ }
297
+ export declare enum LastLaunchType {
298
+ DRILL = "DRILL",
299
+ RECOVERY = "RECOVERY"
300
+ }
301
+ /**
302
+ * <p>An object containing information regarding the initiation of the last launch of a Source Server.</p>
303
+ */
304
+ export interface LifeCycleLastLaunchInitiated {
305
+ /**
306
+ * <p>The date and time the last Source Server launch was initiated.</p>
307
+ */
308
+ apiCallDateTime?: string;
309
+ /**
310
+ * <p>The ID of the Job that was used to last launch the Source Server.</p>
311
+ */
312
+ jobID?: string;
313
+ /**
314
+ * <p>The Job type that was used to last launch the Source Server.</p>
315
+ */
316
+ type?: LastLaunchType | string;
317
+ }
318
+ export declare namespace LifeCycleLastLaunchInitiated {
319
+ /**
320
+ * @internal
321
+ */
322
+ const filterSensitiveLog: (obj: LifeCycleLastLaunchInitiated) => any;
323
+ }
324
+ /**
325
+ * <p>An object containing information regarding the last launch of a Source Server.</p>
326
+ */
327
+ export interface LifeCycleLastLaunch {
328
+ /**
329
+ * <p>An object containing information regarding the initiation of the last launch of a Source Server.</p>
330
+ */
331
+ initiated?: LifeCycleLastLaunchInitiated;
332
+ }
333
+ export declare namespace LifeCycleLastLaunch {
334
+ /**
335
+ * @internal
336
+ */
337
+ const filterSensitiveLog: (obj: LifeCycleLastLaunch) => any;
338
+ }
339
+ /**
340
+ * <p>An object representing the Source Server Lifecycle.</p>
341
+ */
342
+ export interface LifeCycle {
343
+ /**
344
+ * <p>The date and time of when the Source Server was added to the service.</p>
345
+ */
346
+ addedToServiceDateTime?: string;
347
+ /**
348
+ * <p>The date and time of the first byte that was replicated from the Source Server.</p>
349
+ */
350
+ firstByteDateTime?: string;
351
+ /**
352
+ * <p>The amount of time that the Source Server has been replicating for.</p>
353
+ */
354
+ elapsedReplicationDuration?: string;
355
+ /**
356
+ * <p>The date and time this Source Server was last seen by the service.</p>
357
+ */
358
+ lastSeenByServiceDateTime?: string;
359
+ /**
360
+ * <p>An object containing information regarding the last launch of the Source Server.</p>
361
+ */
362
+ lastLaunch?: LifeCycleLastLaunch;
363
+ }
364
+ export declare namespace LifeCycle {
365
+ /**
366
+ * @internal
367
+ */
368
+ const filterSensitiveLog: (obj: LifeCycle) => any;
369
+ }
370
+ /**
371
+ * <p>An object representing a data storage device on a server.</p>
372
+ */
373
+ export interface Disk {
374
+ /**
375
+ * <p>The disk or device name.</p>
376
+ */
377
+ deviceName?: string;
378
+ /**
379
+ * <p>The amount of storage on the disk in bytes.</p>
380
+ */
381
+ bytes?: number;
382
+ }
383
+ export declare namespace Disk {
384
+ /**
385
+ * @internal
386
+ */
387
+ const filterSensitiveLog: (obj: Disk) => any;
388
+ }
389
+ /**
390
+ * <p>Hints used to uniquely identify a machine.</p>
391
+ */
392
+ export interface IdentificationHints {
393
+ /**
394
+ * <p>Fully Qualified Domain Name identification hint.</p>
395
+ */
396
+ fqdn?: string;
397
+ /**
398
+ * <p>Hostname identification hint.</p>
399
+ */
400
+ hostname?: string;
401
+ /**
402
+ * <p>vCenter VM path identification hint.</p>
403
+ */
404
+ vmWareUuid?: string;
405
+ /**
406
+ * <p>AWS Instance ID identification hint.</p>
94
407
  */
95
- enabled?: boolean;
408
+ awsInstanceID?: string;
96
409
  }
97
- export declare namespace PITPolicyRule {
410
+ export declare namespace IdentificationHints {
98
411
  /**
99
412
  * @internal
100
413
  */
101
- const filterSensitiveLog: (obj: PITPolicyRule) => any;
414
+ const filterSensitiveLog: (obj: IdentificationHints) => any;
102
415
  }
103
- export interface CreateReplicationConfigurationTemplateRequest {
416
+ /**
417
+ * <p>Network interface.</p>
418
+ */
419
+ export interface NetworkInterface {
104
420
  /**
105
- * <p>The subnet to be used by the replication staging area.</p>
421
+ * <p>The MAC address of the network interface.</p>
106
422
  */
107
- stagingAreaSubnetId: string | undefined;
423
+ macAddress?: string;
108
424
  /**
109
- * <p>Whether to associate the default Elastic Disaster Recovery Security group with the Replication Configuration Template.</p>
425
+ * <p>Network interface IPs.</p>
110
426
  */
111
- associateDefaultSecurityGroup: boolean | undefined;
427
+ ips?: string[];
112
428
  /**
113
- * <p>The security group IDs that will be used by the replication server.</p>
429
+ * <p>Whether this is the primary network interface.</p>
114
430
  */
115
- replicationServersSecurityGroupsIDs: string[] | undefined;
431
+ isPrimary?: boolean;
432
+ }
433
+ export declare namespace NetworkInterface {
116
434
  /**
117
- * <p>The instance type to be used for the replication server.</p>
435
+ * @internal
118
436
  */
119
- replicationServerInstanceType: string | undefined;
437
+ const filterSensitiveLog: (obj: NetworkInterface) => any;
438
+ }
439
+ /**
440
+ * <p>Operating System.</p>
441
+ */
442
+ export interface OS {
120
443
  /**
121
- * <p>Whether to use a dedicated Replication Server in the replication staging area.</p>
444
+ * <p>The long name of the Operating System.</p>
122
445
  */
123
- useDedicatedReplicationServer: boolean | undefined;
446
+ fullString?: string;
447
+ }
448
+ export declare namespace OS {
124
449
  /**
125
- * <p>The Staging Disk EBS volume type to be used during replication.</p>
450
+ * @internal
126
451
  */
127
- defaultLargeStagingDiskType: ReplicationConfigurationDefaultLargeStagingDiskType | string | undefined;
452
+ const filterSensitiveLog: (obj: OS) => any;
453
+ }
454
+ /**
455
+ * <p>Properties of the Source Server machine.</p>
456
+ */
457
+ export interface SourceProperties {
128
458
  /**
129
- * <p>The type of EBS encryption to be used during replication.</p>
459
+ * <p>The date and time the Source Properties were last updated on.</p>
130
460
  */
131
- ebsEncryption: ReplicationConfigurationEbsEncryption | string | undefined;
461
+ lastUpdatedDateTime?: string;
132
462
  /**
133
- * <p>The ARN of the EBS encryption key to be used during replication.</p>
463
+ * <p>The recommended EC2 instance type that will be used when recovering the Source Server.</p>
134
464
  */
135
- ebsEncryptionKeyArn?: string;
465
+ recommendedInstanceType?: string;
136
466
  /**
137
- * <p>Configure bandwidth throttling for the outbound data transfer rate of the Source Server in Mbps.</p>
467
+ * <p>Hints used to uniquely identify a machine.</p>
138
468
  */
139
- bandwidthThrottling: number | undefined;
469
+ identificationHints?: IdentificationHints;
140
470
  /**
141
- * <p>The data plane routing mechanism that will be used for replication.</p>
471
+ * <p>An array of network interfaces.</p>
142
472
  */
143
- dataPlaneRouting: ReplicationConfigurationDataPlaneRouting | string | undefined;
473
+ networkInterfaces?: NetworkInterface[];
144
474
  /**
145
- * <p>Whether to create a Public IP for the Recovery Instance by default.</p>
475
+ * <p>An array of disks.</p>
146
476
  */
147
- createPublicIP: boolean | undefined;
477
+ disks?: Disk[];
148
478
  /**
149
- * <p>A set of tags to be associated with all resources created in the replication staging area: EC2 replication server, EBS volumes, EBS snapshots, etc.</p>
479
+ * <p>An array of CPUs.</p>
150
480
  */
151
- stagingAreaTags: {
152
- [key: string]: string;
153
- } | undefined;
481
+ cpus?: CPU[];
154
482
  /**
155
- * <p>The Point in time (PIT) policy to manage snapshots taken during replication.</p>
483
+ * <p>The amount of RAM in bytes.</p>
156
484
  */
157
- pitPolicy: PITPolicyRule[] | undefined;
485
+ ramBytes?: number;
158
486
  /**
159
- * <p>A set of tags to be associated with the Replication Configuration Template resource.</p>
487
+ * <p>Operating system.</p>
160
488
  */
161
- tags?: {
162
- [key: string]: string;
163
- };
489
+ os?: OS;
164
490
  }
165
- export declare namespace CreateReplicationConfigurationTemplateRequest {
491
+ export declare namespace SourceProperties {
166
492
  /**
167
493
  * @internal
168
494
  */
169
- const filterSensitiveLog: (obj: CreateReplicationConfigurationTemplateRequest) => any;
495
+ const filterSensitiveLog: (obj: SourceProperties) => any;
496
+ }
497
+ export declare enum ExtensionStatus {
498
+ EXTENDED = "EXTENDED",
499
+ EXTENSION_ERROR = "EXTENSION_ERROR",
500
+ NOT_EXTENDED = "NOT_EXTENDED"
170
501
  }
171
502
  /**
172
- * <p>The request processing has failed because of an unknown error, exception or failure.</p>
503
+ * <p>Staging information related to source server.</p>
173
504
  */
174
- export declare class InternalServerException extends __BaseException {
175
- readonly name: "InternalServerException";
176
- readonly $fault: "server";
505
+ export interface StagingArea {
177
506
  /**
178
- * <p>The number of seconds after which the request should be safe to retry.</p>
507
+ * <p>Status of Source server extension. Possible values:
508
+ * (a) NOT_EXTENDED - This is a source server that is replicating in the current account.
509
+ * (b) EXTENDED - Source server is extended from a staging source server. In this case, the value of stagingSourceServerArn is pointing to the Arn of the source server in the staging account.
510
+ * (c) EXTENSION_ERROR - Some issue occurred when accessing staging source server. In this case, errorMessage field will contain an error message that explains what happened.</p>
179
511
  */
180
- retryAfterSeconds?: number;
512
+ status?: ExtensionStatus | string;
513
+ /**
514
+ * <p>Account ID of the account to which source server belongs. If this source server is extended - shows Account ID of staging source server.</p>
515
+ */
516
+ stagingAccountID?: string;
517
+ /**
518
+ * <p>Arn of the staging source server if this source server is extended</p>
519
+ */
520
+ stagingSourceServerArn?: string;
521
+ /**
522
+ * <p>Shows an error message that occurred when DRS tried to access the staging source server. In this case StagingArea$status will have value EXTENSION_ERROR</p>
523
+ */
524
+ errorMessage?: string;
525
+ }
526
+ export declare namespace StagingArea {
181
527
  /**
182
528
  * @internal
183
529
  */
184
- constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
530
+ const filterSensitiveLog: (obj: StagingArea) => any;
185
531
  }
186
- export interface ReplicationConfigurationTemplate {
532
+ export interface SourceServer {
187
533
  /**
188
- * <p>The Replication Configuration Template ID.</p>
534
+ * <p>The ID of the Source Server.</p>
189
535
  */
190
- replicationConfigurationTemplateID: string | undefined;
536
+ sourceServerID?: string;
191
537
  /**
192
- * <p>The Replication Configuration Template ARN.</p>
538
+ * <p>The ARN of the Source Server.</p>
193
539
  */
194
540
  arn?: string;
195
541
  /**
196
- * <p>The subnet to be used by the replication staging area.</p>
542
+ * <p>The tags associated with the Source Server.</p>
197
543
  */
198
- stagingAreaSubnetId?: string;
544
+ tags?: Record<string, string>;
199
545
  /**
200
- * <p>Whether to associate the default Elastic Disaster Recovery Security group with the Replication Configuration Template.</p>
546
+ * <p>The ID of the Recovery Instance associated with this Source Server.</p>
201
547
  */
202
- associateDefaultSecurityGroup?: boolean;
548
+ recoveryInstanceId?: string;
203
549
  /**
204
- * <p>The security group IDs that will be used by the replication server.</p>
550
+ * <p>The status of the last recovery launch of this Source Server.</p>
205
551
  */
206
- replicationServersSecurityGroupsIDs?: string[];
552
+ lastLaunchResult?: LastLaunchResult | string;
207
553
  /**
208
- * <p>The instance type to be used for the replication server.</p>
554
+ * <p>The Data Replication Info of the Source Server.</p>
209
555
  */
210
- replicationServerInstanceType?: string;
556
+ dataReplicationInfo?: DataReplicationInfo;
211
557
  /**
212
- * <p>Whether to use a dedicated Replication Server in the replication staging area.</p>
558
+ * <p>The lifecycle information of this Source Server.</p>
213
559
  */
214
- useDedicatedReplicationServer?: boolean;
560
+ lifeCycle?: LifeCycle;
215
561
  /**
216
- * <p>The Staging Disk EBS volume type to be used during replication.</p>
562
+ * <p>The source properties of the Source Server.</p>
217
563
  */
218
- defaultLargeStagingDiskType?: ReplicationConfigurationDefaultLargeStagingDiskType | string;
564
+ sourceProperties?: SourceProperties;
219
565
  /**
220
- * <p>The type of EBS encryption to be used during replication.</p>
566
+ * <p>The staging area of the source server.</p>
221
567
  */
222
- ebsEncryption?: ReplicationConfigurationEbsEncryption | string;
568
+ stagingArea?: StagingArea;
569
+ }
570
+ export declare namespace SourceServer {
223
571
  /**
224
- * <p>The ARN of the EBS encryption key to be used during replication.</p>
572
+ * @internal
225
573
  */
226
- ebsEncryptionKeyArn?: string;
574
+ const filterSensitiveLog: (obj: SourceServer) => any;
575
+ }
576
+ export interface CreateExtendedSourceServerResponse {
227
577
  /**
228
- * <p>Configure bandwidth throttling for the outbound data transfer rate of the Source Server in Mbps.</p>
578
+ * <p>Created extended source server.</p>
229
579
  */
230
- bandwidthThrottling?: number;
580
+ sourceServer?: SourceServer;
581
+ }
582
+ export declare namespace CreateExtendedSourceServerResponse {
231
583
  /**
232
- * <p>The data plane routing mechanism that will be used for replication.</p>
584
+ * @internal
233
585
  */
234
- dataPlaneRouting?: ReplicationConfigurationDataPlaneRouting | string;
586
+ const filterSensitiveLog: (obj: CreateExtendedSourceServerResponse) => any;
587
+ }
588
+ /**
589
+ * <p>The request processing has failed because of an unknown error, exception or failure.</p>
590
+ */
591
+ export declare class InternalServerException extends __BaseException {
592
+ readonly name: "InternalServerException";
593
+ readonly $fault: "server";
235
594
  /**
236
- * <p>Whether to create a Public IP for the Recovery Instance by default.</p>
595
+ * <p>The number of seconds after which the request should be safe to retry.</p>
237
596
  */
238
- createPublicIP?: boolean;
597
+ retryAfterSeconds?: number;
239
598
  /**
240
- * <p>A set of tags to be associated with all resources created in the replication staging area: EC2 replication server, EBS volumes, EBS snapshots, etc.</p>
599
+ * @internal
241
600
  */
242
- stagingAreaTags?: {
243
- [key: string]: string;
244
- };
601
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
602
+ }
603
+ /**
604
+ * <p>The resource for this operation was not found.</p>
605
+ */
606
+ export declare class ResourceNotFoundException extends __BaseException {
607
+ readonly name: "ResourceNotFoundException";
608
+ readonly $fault: "client";
609
+ code?: string;
245
610
  /**
246
- * <p>A set of tags to be associated with the Replication Configuration Template resource.</p>
611
+ * <p>The ID of the resource.</p>
247
612
  */
248
- tags?: {
249
- [key: string]: string;
250
- };
613
+ resourceId?: string;
251
614
  /**
252
- * <p>The Point in time (PIT) policy to manage snapshots taken during replication.</p>
615
+ * <p>The type of the resource.</p>
253
616
  */
254
- pitPolicy?: PITPolicyRule[];
255
- }
256
- export declare namespace ReplicationConfigurationTemplate {
617
+ resourceType?: string;
257
618
  /**
258
619
  * @internal
259
620
  */
260
- const filterSensitiveLog: (obj: ReplicationConfigurationTemplate) => any;
621
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
261
622
  }
262
623
  /**
263
624
  * <p>The request could not be completed because its exceeded the service quota.</p>
@@ -367,180 +728,190 @@ export declare class ValidationException extends __BaseException {
367
728
  */
368
729
  constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
369
730
  }
370
- export declare enum DataReplicationErrorString {
371
- AGENT_NOT_SEEN = "AGENT_NOT_SEEN",
372
- FAILED_TO_ATTACH_STAGING_DISKS = "FAILED_TO_ATTACH_STAGING_DISKS",
373
- FAILED_TO_AUTHENTICATE_WITH_SERVICE = "FAILED_TO_AUTHENTICATE_WITH_SERVICE",
374
- FAILED_TO_BOOT_REPLICATION_SERVER = "FAILED_TO_BOOT_REPLICATION_SERVER",
375
- FAILED_TO_CONNECT_AGENT_TO_REPLICATION_SERVER = "FAILED_TO_CONNECT_AGENT_TO_REPLICATION_SERVER",
376
- FAILED_TO_CREATE_SECURITY_GROUP = "FAILED_TO_CREATE_SECURITY_GROUP",
377
- FAILED_TO_CREATE_STAGING_DISKS = "FAILED_TO_CREATE_STAGING_DISKS",
378
- FAILED_TO_DOWNLOAD_REPLICATION_SOFTWARE = "FAILED_TO_DOWNLOAD_REPLICATION_SOFTWARE",
379
- FAILED_TO_LAUNCH_REPLICATION_SERVER = "FAILED_TO_LAUNCH_REPLICATION_SERVER",
380
- FAILED_TO_PAIR_REPLICATION_SERVER_WITH_AGENT = "FAILED_TO_PAIR_REPLICATION_SERVER_WITH_AGENT",
381
- FAILED_TO_START_DATA_TRANSFER = "FAILED_TO_START_DATA_TRANSFER",
382
- NOT_CONVERGING = "NOT_CONVERGING",
383
- SNAPSHOTS_FAILURE = "SNAPSHOTS_FAILURE",
384
- UNSTABLE_NETWORK = "UNSTABLE_NETWORK"
731
+ export declare enum ReplicationConfigurationDataPlaneRouting {
732
+ PRIVATE_IP = "PRIVATE_IP",
733
+ PUBLIC_IP = "PUBLIC_IP"
734
+ }
735
+ export declare enum ReplicationConfigurationDefaultLargeStagingDiskType {
736
+ GP2 = "GP2",
737
+ GP3 = "GP3",
738
+ ST1 = "ST1"
739
+ }
740
+ export declare enum ReplicationConfigurationEbsEncryption {
741
+ CUSTOM = "CUSTOM",
742
+ DEFAULT = "DEFAULT"
743
+ }
744
+ export declare enum PITPolicyRuleUnits {
745
+ DAY = "DAY",
746
+ HOUR = "HOUR",
747
+ MINUTE = "MINUTE"
385
748
  }
386
749
  /**
387
- * <p>Error in data replication.</p>
750
+ * <p>A rule in the Point in Time (PIT) policy representing when to take snapshots and how long to retain them for.</p>
388
751
  */
389
- export interface DataReplicationError {
752
+ export interface PITPolicyRule {
753
+ /**
754
+ * <p>The ID of the rule.</p>
755
+ */
756
+ ruleID?: number;
757
+ /**
758
+ * <p>The units used to measure the interval and retentionDuration.</p>
759
+ */
760
+ units: PITPolicyRuleUnits | string | undefined;
761
+ /**
762
+ * <p>How often, in the chosen units, a snapshot should be taken.</p>
763
+ */
764
+ interval: number | undefined;
765
+ /**
766
+ * <p>The duration to retain a snapshot for, in the chosen units.</p>
767
+ */
768
+ retentionDuration: number | undefined;
769
+ /**
770
+ * <p>Whether this rule is enabled or not.</p>
771
+ */
772
+ enabled?: boolean;
773
+ }
774
+ export declare namespace PITPolicyRule {
775
+ /**
776
+ * @internal
777
+ */
778
+ const filterSensitiveLog: (obj: PITPolicyRule) => any;
779
+ }
780
+ export interface CreateReplicationConfigurationTemplateRequest {
781
+ /**
782
+ * <p>The subnet to be used by the replication staging area.</p>
783
+ */
784
+ stagingAreaSubnetId: string | undefined;
785
+ /**
786
+ * <p>Whether to associate the default Elastic Disaster Recovery Security group with the Replication Configuration Template.</p>
787
+ */
788
+ associateDefaultSecurityGroup: boolean | undefined;
789
+ /**
790
+ * <p>The security group IDs that will be used by the replication server.</p>
791
+ */
792
+ replicationServersSecurityGroupsIDs: string[] | undefined;
793
+ /**
794
+ * <p>The instance type to be used for the replication server.</p>
795
+ */
796
+ replicationServerInstanceType: string | undefined;
390
797
  /**
391
- * <p>Error in data replication.</p>
798
+ * <p>Whether to use a dedicated Replication Server in the replication staging area.</p>
392
799
  */
393
- error?: DataReplicationErrorString | string;
800
+ useDedicatedReplicationServer: boolean | undefined;
394
801
  /**
395
- * <p>Error in data replication.</p>
802
+ * <p>The Staging Disk EBS volume type to be used during replication.</p>
396
803
  */
397
- rawError?: string;
398
- }
399
- export declare namespace DataReplicationError {
804
+ defaultLargeStagingDiskType: ReplicationConfigurationDefaultLargeStagingDiskType | string | undefined;
400
805
  /**
401
- * @internal
806
+ * <p>The type of EBS encryption to be used during replication.</p>
402
807
  */
403
- const filterSensitiveLog: (obj: DataReplicationError) => any;
404
- }
405
- export declare enum DataReplicationInitiationStepName {
406
- ATTACH_STAGING_DISKS = "ATTACH_STAGING_DISKS",
407
- AUTHENTICATE_WITH_SERVICE = "AUTHENTICATE_WITH_SERVICE",
408
- BOOT_REPLICATION_SERVER = "BOOT_REPLICATION_SERVER",
409
- CONNECT_AGENT_TO_REPLICATION_SERVER = "CONNECT_AGENT_TO_REPLICATION_SERVER",
410
- CREATE_SECURITY_GROUP = "CREATE_SECURITY_GROUP",
411
- CREATE_STAGING_DISKS = "CREATE_STAGING_DISKS",
412
- DOWNLOAD_REPLICATION_SOFTWARE = "DOWNLOAD_REPLICATION_SOFTWARE",
413
- LAUNCH_REPLICATION_SERVER = "LAUNCH_REPLICATION_SERVER",
414
- PAIR_REPLICATION_SERVER_WITH_AGENT = "PAIR_REPLICATION_SERVER_WITH_AGENT",
415
- START_DATA_TRANSFER = "START_DATA_TRANSFER",
416
- WAIT = "WAIT"
417
- }
418
- export declare enum DataReplicationInitiationStepStatus {
419
- FAILED = "FAILED",
420
- IN_PROGRESS = "IN_PROGRESS",
421
- NOT_STARTED = "NOT_STARTED",
422
- SKIPPED = "SKIPPED",
423
- SUCCEEDED = "SUCCEEDED"
424
- }
425
- /**
426
- * <p>Data replication initiation step.</p>
427
- */
428
- export interface DataReplicationInitiationStep {
808
+ ebsEncryption: ReplicationConfigurationEbsEncryption | string | undefined;
429
809
  /**
430
- * <p>The name of the step.</p>
810
+ * <p>The ARN of the EBS encryption key to be used during replication.</p>
431
811
  */
432
- name?: DataReplicationInitiationStepName | string;
812
+ ebsEncryptionKeyArn?: string;
433
813
  /**
434
- * <p>The status of the step.</p>
814
+ * <p>Configure bandwidth throttling for the outbound data transfer rate of the Source Server in Mbps.</p>
435
815
  */
436
- status?: DataReplicationInitiationStepStatus | string;
437
- }
438
- export declare namespace DataReplicationInitiationStep {
816
+ bandwidthThrottling: number | undefined;
439
817
  /**
440
- * @internal
818
+ * <p>The data plane routing mechanism that will be used for replication.</p>
441
819
  */
442
- const filterSensitiveLog: (obj: DataReplicationInitiationStep) => any;
443
- }
444
- /**
445
- * <p>Data replication initiation.</p>
446
- */
447
- export interface DataReplicationInitiation {
820
+ dataPlaneRouting: ReplicationConfigurationDataPlaneRouting | string | undefined;
448
821
  /**
449
- * <p>The date and time of the current attempt to initiate data replication.</p>
822
+ * <p>Whether to create a Public IP for the Recovery Instance by default.</p>
450
823
  */
451
- startDateTime?: string;
824
+ createPublicIP: boolean | undefined;
452
825
  /**
453
- * <p>The date and time of the next attempt to initiate data replication.</p>
826
+ * <p>A set of tags to be associated with all resources created in the replication staging area: EC2 replication server, EBS volumes, EBS snapshots, etc.</p>
454
827
  */
455
- nextAttemptDateTime?: string;
828
+ stagingAreaTags: Record<string, string> | undefined;
456
829
  /**
457
- * <p>The steps of the current attempt to initiate data replication.</p>
830
+ * <p>The Point in time (PIT) policy to manage snapshots taken during replication.</p>
458
831
  */
459
- steps?: DataReplicationInitiationStep[];
832
+ pitPolicy: PITPolicyRule[] | undefined;
833
+ /**
834
+ * <p>A set of tags to be associated with the Replication Configuration Template resource.</p>
835
+ */
836
+ tags?: Record<string, string>;
460
837
  }
461
- export declare namespace DataReplicationInitiation {
838
+ export declare namespace CreateReplicationConfigurationTemplateRequest {
462
839
  /**
463
840
  * @internal
464
841
  */
465
- const filterSensitiveLog: (obj: DataReplicationInitiation) => any;
466
- }
467
- export declare enum DataReplicationState {
468
- BACKLOG = "BACKLOG",
469
- CONTINUOUS = "CONTINUOUS",
470
- CREATING_SNAPSHOT = "CREATING_SNAPSHOT",
471
- DISCONNECTED = "DISCONNECTED",
472
- INITIAL_SYNC = "INITIAL_SYNC",
473
- INITIATING = "INITIATING",
474
- PAUSED = "PAUSED",
475
- RESCAN = "RESCAN",
476
- STALLED = "STALLED",
477
- STOPPED = "STOPPED"
842
+ const filterSensitiveLog: (obj: CreateReplicationConfigurationTemplateRequest) => any;
478
843
  }
479
- /**
480
- * <p>A disk that should be replicated.</p>
481
- */
482
- export interface DataReplicationInfoReplicatedDisk {
844
+ export interface ReplicationConfigurationTemplate {
483
845
  /**
484
- * <p>The name of the device.</p>
846
+ * <p>The Replication Configuration Template ID.</p>
485
847
  */
486
- deviceName?: string;
848
+ replicationConfigurationTemplateID: string | undefined;
487
849
  /**
488
- * <p>The total amount of data to be replicated in bytes.</p>
850
+ * <p>The Replication Configuration Template ARN.</p>
489
851
  */
490
- totalStorageBytes?: number;
852
+ arn?: string;
491
853
  /**
492
- * <p>The amount of data replicated so far in bytes.</p>
854
+ * <p>The subnet to be used by the replication staging area.</p>
493
855
  */
494
- replicatedStorageBytes?: number;
856
+ stagingAreaSubnetId?: string;
495
857
  /**
496
- * <p>The amount of data to be rescanned in bytes.</p>
858
+ * <p>Whether to associate the default Elastic Disaster Recovery Security group with the Replication Configuration Template.</p>
497
859
  */
498
- rescannedStorageBytes?: number;
860
+ associateDefaultSecurityGroup?: boolean;
499
861
  /**
500
- * <p>The size of the replication backlog in bytes.</p>
862
+ * <p>The security group IDs that will be used by the replication server.</p>
501
863
  */
502
- backloggedStorageBytes?: number;
503
- }
504
- export declare namespace DataReplicationInfoReplicatedDisk {
864
+ replicationServersSecurityGroupsIDs?: string[];
505
865
  /**
506
- * @internal
866
+ * <p>The instance type to be used for the replication server.</p>
507
867
  */
508
- const filterSensitiveLog: (obj: DataReplicationInfoReplicatedDisk) => any;
509
- }
510
- /**
511
- * <p>Information about Data Replication</p>
512
- */
513
- export interface DataReplicationInfo {
868
+ replicationServerInstanceType?: string;
514
869
  /**
515
- * <p>Data replication lag duration.</p>
870
+ * <p>Whether to use a dedicated Replication Server in the replication staging area.</p>
516
871
  */
517
- lagDuration?: string;
872
+ useDedicatedReplicationServer?: boolean;
518
873
  /**
519
- * <p>An estimate of when the data replication will be completed.</p>
874
+ * <p>The Staging Disk EBS volume type to be used during replication.</p>
520
875
  */
521
- etaDateTime?: string;
876
+ defaultLargeStagingDiskType?: ReplicationConfigurationDefaultLargeStagingDiskType | string;
522
877
  /**
523
- * <p>The disks that should be replicated.</p>
878
+ * <p>The type of EBS encryption to be used during replication.</p>
524
879
  */
525
- replicatedDisks?: DataReplicationInfoReplicatedDisk[];
880
+ ebsEncryption?: ReplicationConfigurationEbsEncryption | string;
526
881
  /**
527
- * <p>The state of the data replication.</p>
882
+ * <p>The ARN of the EBS encryption key to be used during replication.</p>
528
883
  */
529
- dataReplicationState?: DataReplicationState | string;
884
+ ebsEncryptionKeyArn?: string;
530
885
  /**
531
- * <p>Information about whether the data replication has been initiated.</p>
886
+ * <p>Configure bandwidth throttling for the outbound data transfer rate of the Source Server in Mbps.</p>
532
887
  */
533
- dataReplicationInitiation?: DataReplicationInitiation;
888
+ bandwidthThrottling?: number;
534
889
  /**
535
- * <p>Error in data replication.</p>
890
+ * <p>The data plane routing mechanism that will be used for replication.</p>
536
891
  */
537
- dataReplicationError?: DataReplicationError;
892
+ dataPlaneRouting?: ReplicationConfigurationDataPlaneRouting | string;
893
+ /**
894
+ * <p>Whether to create a Public IP for the Recovery Instance by default.</p>
895
+ */
896
+ createPublicIP?: boolean;
897
+ /**
898
+ * <p>A set of tags to be associated with all resources created in the replication staging area: EC2 replication server, EBS volumes, EBS snapshots, etc.</p>
899
+ */
900
+ stagingAreaTags?: Record<string, string>;
901
+ /**
902
+ * <p>A set of tags to be associated with the Replication Configuration Template resource.</p>
903
+ */
904
+ tags?: Record<string, string>;
905
+ /**
906
+ * <p>The Point in time (PIT) policy to manage snapshots taken during replication.</p>
907
+ */
908
+ pitPolicy?: PITPolicyRule[];
538
909
  }
539
- export declare namespace DataReplicationInfo {
910
+ export declare namespace ReplicationConfigurationTemplate {
540
911
  /**
541
912
  * @internal
542
913
  */
543
- const filterSensitiveLog: (obj: DataReplicationInfo) => any;
914
+ const filterSensitiveLog: (obj: ReplicationConfigurationTemplate) => any;
544
915
  }
545
916
  export interface DeleteJobRequest {
546
917
  /**
@@ -562,26 +933,6 @@ export declare namespace DeleteJobResponse {
562
933
  */
563
934
  const filterSensitiveLog: (obj: DeleteJobResponse) => any;
564
935
  }
565
- /**
566
- * <p>The resource for this operation was not found.</p>
567
- */
568
- export declare class ResourceNotFoundException extends __BaseException {
569
- readonly name: "ResourceNotFoundException";
570
- readonly $fault: "client";
571
- code?: string;
572
- /**
573
- * <p>The ID of the resource.</p>
574
- */
575
- resourceId?: string;
576
- /**
577
- * <p>The type of the resource.</p>
578
- */
579
- resourceType?: string;
580
- /**
581
- * @internal
582
- */
583
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
584
- }
585
936
  export interface DeleteRecoveryInstanceRequest {
586
937
  /**
587
938
  * <p>RThe ID of the Recovery Instance to be deleted.</p>
@@ -693,6 +1044,10 @@ export interface JobLogEventData {
693
1044
  * <p>A string representing a job error.</p>
694
1045
  */
695
1046
  rawError?: string;
1047
+ /**
1048
+ * <p>Properties of a conversion job</p>
1049
+ */
1050
+ conversionProperties?: ConversionProperties;
696
1051
  }
697
1052
  export declare namespace JobLogEventData {
698
1053
  /**
@@ -766,7 +1121,7 @@ export interface DescribeJobsRequest {
766
1121
  /**
767
1122
  * <p>A set of filters by which to return Jobs.</p>
768
1123
  */
769
- filters: DescribeJobsRequestFilters | undefined;
1124
+ filters?: DescribeJobsRequestFilters;
770
1125
  /**
771
1126
  * <p>Maximum number of Jobs to retrieve.</p>
772
1127
  */
@@ -787,6 +1142,7 @@ export declare enum InitiatedBy {
787
1142
  FAILBACK = "FAILBACK",
788
1143
  START_DRILL = "START_DRILL",
789
1144
  START_RECOVERY = "START_RECOVERY",
1145
+ TARGET_ACCOUNT = "TARGET_ACCOUNT",
790
1146
  TERMINATE_RECOVERY_INSTANCES = "TERMINATE_RECOVERY_INSTANCES"
791
1147
  }
792
1148
  export declare enum LaunchStatus {
@@ -825,6 +1181,7 @@ export declare enum JobStatus {
825
1181
  STARTED = "STARTED"
826
1182
  }
827
1183
  export declare enum JobType {
1184
+ CREATE_CONVERTED_SNAPSHOT = "CREATE_CONVERTED_SNAPSHOT",
828
1185
  LAUNCH = "LAUNCH",
829
1186
  TERMINATE = "TERMINATE"
830
1187
  }
@@ -867,9 +1224,7 @@ export interface Job {
867
1224
  /**
868
1225
  * <p>A list of tags associated with the Job.</p>
869
1226
  */
870
- tags?: {
871
- [key: string]: string;
872
- };
1227
+ tags?: Record<string, string>;
873
1228
  }
874
1229
  export declare namespace Job {
875
1230
  /**
@@ -916,7 +1271,7 @@ export interface DescribeRecoveryInstancesRequest {
916
1271
  /**
917
1272
  * <p>A set of filters by which to return Recovery Instances.</p>
918
1273
  */
919
- filters: DescribeRecoveryInstancesRequestFilters | undefined;
1274
+ filters?: DescribeRecoveryInstancesRequestFilters;
920
1275
  /**
921
1276
  * <p>Maximum number of Recovery Instances to retrieve.</p>
922
1277
  */
@@ -1119,131 +1474,66 @@ export interface RecoveryInstanceFailback {
1119
1474
  */
1120
1475
  failbackClientID?: string;
1121
1476
  /**
1122
- * <p>The Job ID of the last failback log for this Recovery Instance.</p>
1123
- */
1124
- failbackJobID?: string;
1125
- /**
1126
- * <p>The date and time that the failback initiation started.</p>
1127
- */
1128
- failbackInitiationTime?: string;
1129
- /**
1130
- * <p>The state of the failback process that this Recovery Instance is in.</p>
1131
- */
1132
- state?: FailbackState | string;
1133
- /**
1134
- * <p>The date and time the agent on the Recovery Instance was last seen by the service.</p>
1135
- */
1136
- agentLastSeenByServiceDateTime?: string;
1137
- /**
1138
- * <p>The date and time that the failback client was last seen by the service.</p>
1139
- */
1140
- failbackClientLastSeenByServiceDateTime?: string;
1141
- /**
1142
- * <p>Whether we are failing back to the original Source Server for this Recovery Instance.</p>
1143
- */
1144
- failbackToOriginalServer?: boolean;
1145
- /**
1146
- * <p>The date and time of the first byte that was replicated from the Recovery Instance.</p>
1147
- */
1148
- firstByteDateTime?: string;
1149
- /**
1150
- * <p>The amount of time that the Recovery Instance has been replicating for.</p>
1151
- */
1152
- elapsedReplicationDuration?: string;
1153
- }
1154
- export declare namespace RecoveryInstanceFailback {
1155
- /**
1156
- * @internal
1157
- */
1158
- const filterSensitiveLog: (obj: RecoveryInstanceFailback) => any;
1159
- }
1160
- /**
1161
- * <p>An object representing a block storage device on the Recovery Instance.</p>
1162
- */
1163
- export interface RecoveryInstanceDisk {
1164
- /**
1165
- * <p>The internal device name of this disk. This is the name that is visible on the machine itself and not from the EC2 console.</p>
1166
- */
1167
- internalDeviceName?: string;
1168
- /**
1169
- * <p>The amount of storage on the disk in bytes.</p>
1170
- */
1171
- bytes?: number;
1172
- /**
1173
- * <p>The EBS Volume ID of this disk.</p>
1174
- */
1175
- ebsVolumeID?: string;
1176
- }
1177
- export declare namespace RecoveryInstanceDisk {
1178
- /**
1179
- * @internal
1180
- */
1181
- const filterSensitiveLog: (obj: RecoveryInstanceDisk) => any;
1182
- }
1183
- /**
1184
- * <p>Hints used to uniquely identify a machine.</p>
1185
- */
1186
- export interface IdentificationHints {
1187
- /**
1188
- * <p>Fully Qualified Domain Name identification hint.</p>
1477
+ * <p>The Job ID of the last failback log for this Recovery Instance.</p>
1189
1478
  */
1190
- fqdn?: string;
1479
+ failbackJobID?: string;
1191
1480
  /**
1192
- * <p>Hostname identification hint.</p>
1481
+ * <p>The date and time that the failback initiation started.</p>
1193
1482
  */
1194
- hostname?: string;
1483
+ failbackInitiationTime?: string;
1195
1484
  /**
1196
- * <p>vCenter VM path identification hint.</p>
1485
+ * <p>The state of the failback process that this Recovery Instance is in.</p>
1197
1486
  */
1198
- vmWareUuid?: string;
1487
+ state?: FailbackState | string;
1199
1488
  /**
1200
- * <p>AWS Instance ID identification hint.</p>
1489
+ * <p>The date and time the agent on the Recovery Instance was last seen by the service.</p>
1201
1490
  */
1202
- awsInstanceID?: string;
1203
- }
1204
- export declare namespace IdentificationHints {
1491
+ agentLastSeenByServiceDateTime?: string;
1205
1492
  /**
1206
- * @internal
1493
+ * <p>The date and time that the failback client was last seen by the service.</p>
1207
1494
  */
1208
- const filterSensitiveLog: (obj: IdentificationHints) => any;
1209
- }
1210
- /**
1211
- * <p>Network interface.</p>
1212
- */
1213
- export interface NetworkInterface {
1495
+ failbackClientLastSeenByServiceDateTime?: string;
1214
1496
  /**
1215
- * <p>The MAC address of the network interface.</p>
1497
+ * <p>Whether we are failing back to the original Source Server for this Recovery Instance.</p>
1216
1498
  */
1217
- macAddress?: string;
1499
+ failbackToOriginalServer?: boolean;
1218
1500
  /**
1219
- * <p>Network interface IPs.</p>
1501
+ * <p>The date and time of the first byte that was replicated from the Recovery Instance.</p>
1220
1502
  */
1221
- ips?: string[];
1503
+ firstByteDateTime?: string;
1222
1504
  /**
1223
- * <p>Whether this is the primary network interface.</p>
1505
+ * <p>The amount of time that the Recovery Instance has been replicating for.</p>
1224
1506
  */
1225
- isPrimary?: boolean;
1507
+ elapsedReplicationDuration?: string;
1226
1508
  }
1227
- export declare namespace NetworkInterface {
1509
+ export declare namespace RecoveryInstanceFailback {
1228
1510
  /**
1229
1511
  * @internal
1230
1512
  */
1231
- const filterSensitiveLog: (obj: NetworkInterface) => any;
1513
+ const filterSensitiveLog: (obj: RecoveryInstanceFailback) => any;
1232
1514
  }
1233
1515
  /**
1234
- * <p>Operating System.</p>
1516
+ * <p>An object representing a block storage device on the Recovery Instance.</p>
1235
1517
  */
1236
- export interface OS {
1518
+ export interface RecoveryInstanceDisk {
1237
1519
  /**
1238
- * <p>The long name of the Operating System.</p>
1520
+ * <p>The internal device name of this disk. This is the name that is visible on the machine itself and not from the EC2 console.</p>
1239
1521
  */
1240
- fullString?: string;
1522
+ internalDeviceName?: string;
1523
+ /**
1524
+ * <p>The amount of storage on the disk in bytes.</p>
1525
+ */
1526
+ bytes?: number;
1527
+ /**
1528
+ * <p>The EBS Volume ID of this disk.</p>
1529
+ */
1530
+ ebsVolumeID?: string;
1241
1531
  }
1242
- export declare namespace OS {
1532
+ export declare namespace RecoveryInstanceDisk {
1243
1533
  /**
1244
1534
  * @internal
1245
1535
  */
1246
- const filterSensitiveLog: (obj: OS) => any;
1536
+ const filterSensitiveLog: (obj: RecoveryInstanceDisk) => any;
1247
1537
  }
1248
1538
  /**
1249
1539
  * <p>Properties of the Recovery Instance machine.</p>
@@ -1315,9 +1605,7 @@ export interface RecoveryInstance {
1315
1605
  /**
1316
1606
  * <p>An array of tags that are associated with the Recovery Instance.</p>
1317
1607
  */
1318
- tags?: {
1319
- [key: string]: string;
1320
- };
1608
+ tags?: Record<string, string>;
1321
1609
  /**
1322
1610
  * <p>An object representing failback related information of the Recovery Instance.</p>
1323
1611
  */
@@ -1463,7 +1751,7 @@ export interface DescribeReplicationConfigurationTemplatesRequest {
1463
1751
  /**
1464
1752
  * <p>The IDs of the Replication Configuration Templates to retrieve. An empty list means all Replication Configuration Templates.</p>
1465
1753
  */
1466
- replicationConfigurationTemplateIDs: string[] | undefined;
1754
+ replicationConfigurationTemplateIDs?: string[];
1467
1755
  /**
1468
1756
  * <p>Maximum number of Replication Configuration Templates to retrieve.</p>
1469
1757
  */
@@ -1507,6 +1795,10 @@ export interface DescribeSourceServersRequestFilters {
1507
1795
  * <p>An ID that describes the hardware of the Source Server. This is either an EC2 instance id, a VMware uuid or a mac address.</p>
1508
1796
  */
1509
1797
  hardwareId?: string;
1798
+ /**
1799
+ * <p>An array of staging account IDs that extended source servers belong to. An empty array means all source servers will be shown.</p>
1800
+ */
1801
+ stagingAccountIDs?: string[];
1510
1802
  }
1511
1803
  export declare namespace DescribeSourceServersRequestFilters {
1512
1804
  /**
@@ -1518,7 +1810,7 @@ export interface DescribeSourceServersRequest {
1518
1810
  /**
1519
1811
  * <p>A set of filters by which to return Source Servers.</p>
1520
1812
  */
1521
- filters: DescribeSourceServersRequestFilters | undefined;
1813
+ filters?: DescribeSourceServersRequestFilters;
1522
1814
  /**
1523
1815
  * <p>Maximum number of Source Servers to retrieve.</p>
1524
1816
  */
@@ -1534,244 +1826,152 @@ export declare namespace DescribeSourceServersRequest {
1534
1826
  */
1535
1827
  const filterSensitiveLog: (obj: DescribeSourceServersRequest) => any;
1536
1828
  }
1537
- export declare enum LastLaunchResult {
1538
- FAILED = "FAILED",
1539
- NOT_STARTED = "NOT_STARTED",
1540
- PENDING = "PENDING",
1541
- SUCCEEDED = "SUCCEEDED"
1542
- }
1543
- export declare enum LastLaunchType {
1544
- DRILL = "DRILL",
1545
- RECOVERY = "RECOVERY"
1546
- }
1547
- /**
1548
- * <p>An object containing information regarding the initiation of the last launch of a Source Server.</p>
1549
- */
1550
- export interface LifeCycleLastLaunchInitiated {
1551
- /**
1552
- * <p>The date and time the last Source Server launch was initiated.</p>
1553
- */
1554
- apiCallDateTime?: string;
1829
+ export interface DescribeSourceServersResponse {
1555
1830
  /**
1556
- * <p>The ID of the Job that was used to last launch the Source Server.</p>
1831
+ * <p>An array of Source Servers.</p>
1557
1832
  */
1558
- jobID?: string;
1833
+ items?: SourceServer[];
1559
1834
  /**
1560
- * <p>The Job type that was used to last launch the Source Server.</p>
1835
+ * <p>The token of the next Source Server to retrieve.</p>
1561
1836
  */
1562
- type?: LastLaunchType | string;
1837
+ nextToken?: string;
1563
1838
  }
1564
- export declare namespace LifeCycleLastLaunchInitiated {
1839
+ export declare namespace DescribeSourceServersResponse {
1565
1840
  /**
1566
1841
  * @internal
1567
1842
  */
1568
- const filterSensitiveLog: (obj: LifeCycleLastLaunchInitiated) => any;
1843
+ const filterSensitiveLog: (obj: DescribeSourceServersResponse) => any;
1569
1844
  }
1570
- /**
1571
- * <p>An object containing information regarding the last launch of a Source Server.</p>
1572
- */
1573
- export interface LifeCycleLastLaunch {
1845
+ export interface DisconnectRecoveryInstanceRequest {
1574
1846
  /**
1575
- * <p>An object containing information regarding the initiation of the last launch of a Source Server.</p>
1847
+ * <p>The ID of the Recovery Instance to disconnect.</p>
1576
1848
  */
1577
- initiated?: LifeCycleLastLaunchInitiated;
1849
+ recoveryInstanceID: string | undefined;
1578
1850
  }
1579
- export declare namespace LifeCycleLastLaunch {
1851
+ export declare namespace DisconnectRecoveryInstanceRequest {
1580
1852
  /**
1581
1853
  * @internal
1582
1854
  */
1583
- const filterSensitiveLog: (obj: LifeCycleLastLaunch) => any;
1855
+ const filterSensitiveLog: (obj: DisconnectRecoveryInstanceRequest) => any;
1584
1856
  }
1585
- /**
1586
- * <p>An object representing the Source Server Lifecycle.</p>
1587
- */
1588
- export interface LifeCycle {
1589
- /**
1590
- * <p>The date and time of when the Source Server was added to the service.</p>
1591
- */
1592
- addedToServiceDateTime?: string;
1593
- /**
1594
- * <p>The date and time of the first byte that was replicated from the Source Server.</p>
1595
- */
1596
- firstByteDateTime?: string;
1597
- /**
1598
- * <p>The amount of time that the Source Server has been replicating for.</p>
1599
- */
1600
- elapsedReplicationDuration?: string;
1601
- /**
1602
- * <p>The date and time this Source Server was last seen by the service.</p>
1603
- */
1604
- lastSeenByServiceDateTime?: string;
1857
+ export interface DisconnectSourceServerRequest {
1605
1858
  /**
1606
- * <p>An object containing information regarding the last launch of the Source Server.</p>
1859
+ * <p>The ID of the Source Server to disconnect.</p>
1607
1860
  */
1608
- lastLaunch?: LifeCycleLastLaunch;
1861
+ sourceServerID: string | undefined;
1609
1862
  }
1610
- export declare namespace LifeCycle {
1863
+ export declare namespace DisconnectSourceServerRequest {
1611
1864
  /**
1612
1865
  * @internal
1613
1866
  */
1614
- const filterSensitiveLog: (obj: LifeCycle) => any;
1867
+ const filterSensitiveLog: (obj: DisconnectSourceServerRequest) => any;
1615
1868
  }
1616
- /**
1617
- * <p>An object representing a data storage device on a server.</p>
1618
- */
1619
- export interface Disk {
1620
- /**
1621
- * <p>The disk or device name.</p>
1622
- */
1623
- deviceName?: string;
1624
- /**
1625
- * <p>The amount of storage on the disk in bytes.</p>
1626
- */
1627
- bytes?: number;
1869
+ export interface InitializeServiceRequest {
1628
1870
  }
1629
- export declare namespace Disk {
1871
+ export declare namespace InitializeServiceRequest {
1630
1872
  /**
1631
1873
  * @internal
1632
1874
  */
1633
- const filterSensitiveLog: (obj: Disk) => any;
1875
+ const filterSensitiveLog: (obj: InitializeServiceRequest) => any;
1634
1876
  }
1635
- /**
1636
- * <p>Properties of the Source Server machine.</p>
1637
- */
1638
- export interface SourceProperties {
1639
- /**
1640
- * <p>The date and time the Source Properties were last updated on.</p>
1641
- */
1642
- lastUpdatedDateTime?: string;
1643
- /**
1644
- * <p>The recommended EC2 instance type that will be used when recovering the Source Server.</p>
1645
- */
1646
- recommendedInstanceType?: string;
1647
- /**
1648
- * <p>Hints used to uniquely identify a machine.</p>
1649
- */
1650
- identificationHints?: IdentificationHints;
1651
- /**
1652
- * <p>An array of network interfaces.</p>
1653
- */
1654
- networkInterfaces?: NetworkInterface[];
1877
+ export interface InitializeServiceResponse {
1878
+ }
1879
+ export declare namespace InitializeServiceResponse {
1655
1880
  /**
1656
- * <p>An array of disks.</p>
1881
+ * @internal
1657
1882
  */
1658
- disks?: Disk[];
1883
+ const filterSensitiveLog: (obj: InitializeServiceResponse) => any;
1884
+ }
1885
+ export interface ListExtensibleSourceServersRequest {
1659
1886
  /**
1660
- * <p>An array of CPUs.</p>
1887
+ * <p>The Id of the staging Account to retrieve extensible source servers from.</p>
1661
1888
  */
1662
- cpus?: CPU[];
1889
+ stagingAccountID: string | undefined;
1663
1890
  /**
1664
- * <p>The amount of RAM in bytes.</p>
1891
+ * <p>The maximum number of extensible source servers to retrieve.</p>
1665
1892
  */
1666
- ramBytes?: number;
1893
+ maxResults?: number;
1667
1894
  /**
1668
- * <p>Operating system.</p>
1895
+ * <p>The token of the next extensible source server to retrieve.</p>
1669
1896
  */
1670
- os?: OS;
1897
+ nextToken?: string;
1671
1898
  }
1672
- export declare namespace SourceProperties {
1899
+ export declare namespace ListExtensibleSourceServersRequest {
1673
1900
  /**
1674
1901
  * @internal
1675
1902
  */
1676
- const filterSensitiveLog: (obj: SourceProperties) => any;
1903
+ const filterSensitiveLog: (obj: ListExtensibleSourceServersRequest) => any;
1677
1904
  }
1678
- export interface SourceServer {
1905
+ /**
1906
+ * <p>Source server in staging account that extended source server connected to.</p>
1907
+ */
1908
+ export interface StagingSourceServer {
1679
1909
  /**
1680
- * <p>The ID of the Source Server.</p>
1910
+ * <p>Hostname of staging source server.</p>
1681
1911
  */
1682
- sourceServerID?: string;
1912
+ hostname?: string;
1683
1913
  /**
1684
- * <p>The ARN of the Source Server.</p>
1914
+ * <p>The ARN of the source server.</p>
1685
1915
  */
1686
1916
  arn?: string;
1687
1917
  /**
1688
- * <p>The tags associated with the Source Server.</p>
1689
- */
1690
- tags?: {
1691
- [key: string]: string;
1692
- };
1693
- /**
1694
- * <p>The ID of the Recovery Instance associated with this Source Server.</p>
1695
- */
1696
- recoveryInstanceId?: string;
1697
- /**
1698
- * <p>The status of the last recovery launch of this Source Server.</p>
1699
- */
1700
- lastLaunchResult?: LastLaunchResult | string;
1701
- /**
1702
- * <p>The Data Replication Info of the Source Server.</p>
1703
- */
1704
- dataReplicationInfo?: DataReplicationInfo;
1705
- /**
1706
- * <p>The lifecycle information of this Source Server.</p>
1707
- */
1708
- lifeCycle?: LifeCycle;
1709
- /**
1710
- * <p>The source properties of the Source Server.</p>
1918
+ * <p>A list of tags associated with the staging source server.</p>
1711
1919
  */
1712
- sourceProperties?: SourceProperties;
1920
+ tags?: Record<string, string>;
1713
1921
  }
1714
- export declare namespace SourceServer {
1922
+ export declare namespace StagingSourceServer {
1715
1923
  /**
1716
1924
  * @internal
1717
1925
  */
1718
- const filterSensitiveLog: (obj: SourceServer) => any;
1926
+ const filterSensitiveLog: (obj: StagingSourceServer) => any;
1719
1927
  }
1720
- export interface DescribeSourceServersResponse {
1928
+ export interface ListExtensibleSourceServersResponse {
1721
1929
  /**
1722
- * <p>An array of Source Servers.</p>
1930
+ * <p>A list of source servers on a staging Account that are extensible.</p>
1723
1931
  */
1724
- items?: SourceServer[];
1932
+ items?: StagingSourceServer[];
1725
1933
  /**
1726
- * <p>The token of the next Source Server to retrieve.</p>
1934
+ * <p>The token of the next extensible source server to retrieve.</p>
1727
1935
  */
1728
1936
  nextToken?: string;
1729
1937
  }
1730
- export declare namespace DescribeSourceServersResponse {
1938
+ export declare namespace ListExtensibleSourceServersResponse {
1731
1939
  /**
1732
1940
  * @internal
1733
1941
  */
1734
- const filterSensitiveLog: (obj: DescribeSourceServersResponse) => any;
1942
+ const filterSensitiveLog: (obj: ListExtensibleSourceServersResponse) => any;
1735
1943
  }
1736
- export interface DisconnectRecoveryInstanceRequest {
1944
+ export interface ListStagingAccountsRequest {
1737
1945
  /**
1738
- * <p>The ID of the Recovery Instance to disconnect.</p>
1946
+ * <p>The maximum number of staging Accounts to retrieve.</p>
1739
1947
  */
1740
- recoveryInstanceID: string | undefined;
1741
- }
1742
- export declare namespace DisconnectRecoveryInstanceRequest {
1948
+ maxResults?: number;
1743
1949
  /**
1744
- * @internal
1950
+ * <p>The token of the next staging Account to retrieve.</p>
1745
1951
  */
1746
- const filterSensitiveLog: (obj: DisconnectRecoveryInstanceRequest) => any;
1952
+ nextToken?: string;
1747
1953
  }
1748
- export interface DisconnectSourceServerRequest {
1954
+ export declare namespace ListStagingAccountsRequest {
1749
1955
  /**
1750
- * <p>The ID of the Source Server to disconnect.</p>
1956
+ * @internal
1751
1957
  */
1752
- sourceServerID: string | undefined;
1958
+ const filterSensitiveLog: (obj: ListStagingAccountsRequest) => any;
1753
1959
  }
1754
- export declare namespace DisconnectSourceServerRequest {
1960
+ export interface ListStagingAccountsResponse {
1755
1961
  /**
1756
- * @internal
1962
+ * <p>An array of staging AWS Accounts.</p>
1757
1963
  */
1758
- const filterSensitiveLog: (obj: DisconnectSourceServerRequest) => any;
1759
- }
1760
- export interface InitializeServiceRequest {
1761
- }
1762
- export declare namespace InitializeServiceRequest {
1964
+ accounts?: Account[];
1763
1965
  /**
1764
- * @internal
1966
+ * <p>The token of the next staging Account to retrieve.</p>
1765
1967
  */
1766
- const filterSensitiveLog: (obj: InitializeServiceRequest) => any;
1767
- }
1768
- export interface InitializeServiceResponse {
1968
+ nextToken?: string;
1769
1969
  }
1770
- export declare namespace InitializeServiceResponse {
1970
+ export declare namespace ListStagingAccountsResponse {
1771
1971
  /**
1772
1972
  * @internal
1773
1973
  */
1774
- const filterSensitiveLog: (obj: InitializeServiceResponse) => any;
1974
+ const filterSensitiveLog: (obj: ListStagingAccountsResponse) => any;
1775
1975
  }
1776
1976
  export interface ListTagsForResourceRequest {
1777
1977
  /**
@@ -1789,9 +1989,7 @@ export interface ListTagsForResourceResponse {
1789
1989
  /**
1790
1990
  * <p>The tags of the requested resource.</p>
1791
1991
  */
1792
- tags?: {
1793
- [key: string]: string;
1794
- };
1992
+ tags?: Record<string, string>;
1795
1993
  }
1796
1994
  export declare namespace ListTagsForResourceResponse {
1797
1995
  /**
@@ -1843,9 +2041,7 @@ export interface StartFailbackLaunchRequest {
1843
2041
  /**
1844
2042
  * <p>The tags to be associated with the failback launch Job.</p>
1845
2043
  */
1846
- tags?: {
1847
- [key: string]: string;
1848
- };
2044
+ tags?: Record<string, string>;
1849
2045
  }
1850
2046
  export declare namespace StartFailbackLaunchRequest {
1851
2047
  /**
@@ -1981,9 +2177,7 @@ export interface UpdateReplicationConfigurationTemplateRequest {
1981
2177
  /**
1982
2178
  * <p>A set of tags to be associated with all resources created in the replication staging area: EC2 replication server, EBS volumes, EBS snapshots, etc.</p>
1983
2179
  */
1984
- stagingAreaTags?: {
1985
- [key: string]: string;
1986
- };
2180
+ stagingAreaTags?: Record<string, string>;
1987
2181
  /**
1988
2182
  * <p>The Point in time (PIT) policy to manage snapshots taken during replication.</p>
1989
2183
  */
@@ -2182,9 +2376,7 @@ export interface ReplicationConfiguration {
2182
2376
  /**
2183
2377
  * <p>A set of tags to be associated with all resources created in the replication staging area: EC2 replication server, EBS volumes, EBS snapshots, etc.</p>
2184
2378
  */
2185
- stagingAreaTags?: {
2186
- [key: string]: string;
2187
- };
2379
+ stagingAreaTags?: Record<string, string>;
2188
2380
  /**
2189
2381
  * <p>The Point in time (PIT) policy to manage snapshots taken during replication.</p>
2190
2382
  */
@@ -2239,9 +2431,7 @@ export interface StartRecoveryRequest {
2239
2431
  /**
2240
2432
  * <p>The tags to be associated with the Recovery Job.</p>
2241
2433
  */
2242
- tags?: {
2243
- [key: string]: string;
2244
- };
2434
+ tags?: Record<string, string>;
2245
2435
  }
2246
2436
  export declare namespace StartRecoveryRequest {
2247
2437
  /**
@@ -2357,9 +2547,7 @@ export interface UpdateReplicationConfigurationRequest {
2357
2547
  /**
2358
2548
  * <p>A set of tags to be associated with all resources created in the replication staging area: EC2 replication server, EBS volumes, EBS snapshots, etc.</p>
2359
2549
  */
2360
- stagingAreaTags?: {
2361
- [key: string]: string;
2362
- };
2550
+ stagingAreaTags?: Record<string, string>;
2363
2551
  /**
2364
2552
  * <p>The Point in time (PIT) policy to manage snapshots taken during replication.</p>
2365
2553
  */
@@ -2379,9 +2567,7 @@ export interface TagResourceRequest {
2379
2567
  /**
2380
2568
  * <p>Array of tags to be added or updated.</p>
2381
2569
  */
2382
- tags: {
2383
- [key: string]: string;
2384
- } | undefined;
2570
+ tags: Record<string, string> | undefined;
2385
2571
  }
2386
2572
  export declare namespace TagResourceRequest {
2387
2573
  /**