@aws-sdk/client-drs 3.381.0 → 3.382.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/models/models_0.d.ts +467 -0
- package/package.json +5 -5
|
@@ -19,6 +19,7 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
19
19
|
*/
|
|
20
20
|
export interface Account {
|
|
21
21
|
/**
|
|
22
|
+
* @public
|
|
22
23
|
* <p>Account ID of AWS account.</p>
|
|
23
24
|
*/
|
|
24
25
|
accountID?: string;
|
|
@@ -28,10 +29,12 @@ export interface Account {
|
|
|
28
29
|
*/
|
|
29
30
|
export interface AssociateSourceNetworkStackRequest {
|
|
30
31
|
/**
|
|
32
|
+
* @public
|
|
31
33
|
* <p>The Source Network ID to associate with CloudFormation template.</p>
|
|
32
34
|
*/
|
|
33
35
|
sourceNetworkID: string | undefined;
|
|
34
36
|
/**
|
|
37
|
+
* @public
|
|
35
38
|
* <p>CloudFormation template to associate with a Source Network.</p>
|
|
36
39
|
*/
|
|
37
40
|
cfnStackName: string | undefined;
|
|
@@ -80,12 +83,16 @@ export type ParticipatingResourceID = ParticipatingResourceID.SourceNetworkIDMem
|
|
|
80
83
|
*/
|
|
81
84
|
export declare namespace ParticipatingResourceID {
|
|
82
85
|
/**
|
|
86
|
+
* @public
|
|
83
87
|
* <p>Source Network ID.</p>
|
|
84
88
|
*/
|
|
85
89
|
interface SourceNetworkIDMember {
|
|
86
90
|
sourceNetworkID: string;
|
|
87
91
|
$unknown?: never;
|
|
88
92
|
}
|
|
93
|
+
/**
|
|
94
|
+
* @public
|
|
95
|
+
*/
|
|
89
96
|
interface $UnknownMember {
|
|
90
97
|
sourceNetworkID?: never;
|
|
91
98
|
$unknown: [string, any];
|
|
@@ -102,10 +109,12 @@ export declare namespace ParticipatingResourceID {
|
|
|
102
109
|
*/
|
|
103
110
|
export interface ParticipatingResource {
|
|
104
111
|
/**
|
|
112
|
+
* @public
|
|
105
113
|
* <p>The ID of a participating resource.</p>
|
|
106
114
|
*/
|
|
107
115
|
participatingResourceID?: ParticipatingResourceID;
|
|
108
116
|
/**
|
|
117
|
+
* @public
|
|
109
118
|
* <p>The launch status of a participating resource.</p>
|
|
110
119
|
*/
|
|
111
120
|
launchStatus?: LaunchStatus | string;
|
|
@@ -116,14 +125,17 @@ export interface ParticipatingResource {
|
|
|
116
125
|
*/
|
|
117
126
|
export interface ParticipatingServer {
|
|
118
127
|
/**
|
|
128
|
+
* @public
|
|
119
129
|
* <p>The Source Server ID of a participating server.</p>
|
|
120
130
|
*/
|
|
121
131
|
sourceServerID?: string;
|
|
122
132
|
/**
|
|
133
|
+
* @public
|
|
123
134
|
* <p>The Recovery Instance ID of a participating server.</p>
|
|
124
135
|
*/
|
|
125
136
|
recoveryInstanceID?: string;
|
|
126
137
|
/**
|
|
138
|
+
* @public
|
|
127
139
|
* <p>The launch status of a participating server.</p>
|
|
128
140
|
*/
|
|
129
141
|
launchStatus?: LaunchStatus | string;
|
|
@@ -160,42 +172,52 @@ export type JobType = (typeof JobType)[keyof typeof JobType];
|
|
|
160
172
|
*/
|
|
161
173
|
export interface Job {
|
|
162
174
|
/**
|
|
175
|
+
* @public
|
|
163
176
|
* <p>The ID of the Job.</p>
|
|
164
177
|
*/
|
|
165
178
|
jobID: string | undefined;
|
|
166
179
|
/**
|
|
180
|
+
* @public
|
|
167
181
|
* <p>The ARN of a Job.</p>
|
|
168
182
|
*/
|
|
169
183
|
arn?: string;
|
|
170
184
|
/**
|
|
185
|
+
* @public
|
|
171
186
|
* <p>The type of the Job.</p>
|
|
172
187
|
*/
|
|
173
188
|
type?: JobType | string;
|
|
174
189
|
/**
|
|
190
|
+
* @public
|
|
175
191
|
* <p>A string representing who initiated the Job.</p>
|
|
176
192
|
*/
|
|
177
193
|
initiatedBy?: InitiatedBy | string;
|
|
178
194
|
/**
|
|
195
|
+
* @public
|
|
179
196
|
* <p>The date and time of when the Job was created.</p>
|
|
180
197
|
*/
|
|
181
198
|
creationDateTime?: string;
|
|
182
199
|
/**
|
|
200
|
+
* @public
|
|
183
201
|
* <p>The date and time of when the Job ended.</p>
|
|
184
202
|
*/
|
|
185
203
|
endDateTime?: string;
|
|
186
204
|
/**
|
|
205
|
+
* @public
|
|
187
206
|
* <p>The status of the Job.</p>
|
|
188
207
|
*/
|
|
189
208
|
status?: JobStatus | string;
|
|
190
209
|
/**
|
|
210
|
+
* @public
|
|
191
211
|
* <p>A list of servers that the Job is acting upon.</p>
|
|
192
212
|
*/
|
|
193
213
|
participatingServers?: ParticipatingServer[];
|
|
194
214
|
/**
|
|
215
|
+
* @public
|
|
195
216
|
* <p>A list of tags associated with the Job.</p>
|
|
196
217
|
*/
|
|
197
218
|
tags?: Record<string, string>;
|
|
198
219
|
/**
|
|
220
|
+
* @public
|
|
199
221
|
* <p>A list of resources that the Job is acting upon.</p>
|
|
200
222
|
*/
|
|
201
223
|
participatingResources?: ParticipatingResource[];
|
|
@@ -205,6 +227,7 @@ export interface Job {
|
|
|
205
227
|
*/
|
|
206
228
|
export interface AssociateSourceNetworkStackResponse {
|
|
207
229
|
/**
|
|
230
|
+
* @public
|
|
208
231
|
* <p>The Source Network association Job.</p>
|
|
209
232
|
*/
|
|
210
233
|
job?: Job;
|
|
@@ -218,10 +241,12 @@ export declare class ConflictException extends __BaseException {
|
|
|
218
241
|
readonly $fault: "client";
|
|
219
242
|
code?: string;
|
|
220
243
|
/**
|
|
244
|
+
* @public
|
|
221
245
|
* <p>The ID of the resource.</p>
|
|
222
246
|
*/
|
|
223
247
|
resourceId?: string;
|
|
224
248
|
/**
|
|
249
|
+
* @public
|
|
225
250
|
* <p>The type of the resource.</p>
|
|
226
251
|
*/
|
|
227
252
|
resourceType?: string;
|
|
@@ -238,6 +263,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
238
263
|
readonly name: "InternalServerException";
|
|
239
264
|
readonly $fault: "server";
|
|
240
265
|
/**
|
|
266
|
+
* @public
|
|
241
267
|
* <p>The number of seconds after which the request should be safe to retry.</p>
|
|
242
268
|
*/
|
|
243
269
|
retryAfterSeconds?: number;
|
|
@@ -255,10 +281,12 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
255
281
|
readonly $fault: "client";
|
|
256
282
|
code?: string;
|
|
257
283
|
/**
|
|
284
|
+
* @public
|
|
258
285
|
* <p>The ID of the resource.</p>
|
|
259
286
|
*/
|
|
260
287
|
resourceId?: string;
|
|
261
288
|
/**
|
|
289
|
+
* @public
|
|
262
290
|
* <p>The type of the resource.</p>
|
|
263
291
|
*/
|
|
264
292
|
resourceType?: string;
|
|
@@ -276,18 +304,22 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
276
304
|
readonly $fault: "client";
|
|
277
305
|
code?: string;
|
|
278
306
|
/**
|
|
307
|
+
* @public
|
|
279
308
|
* <p>The ID of the resource.</p>
|
|
280
309
|
*/
|
|
281
310
|
resourceId?: string;
|
|
282
311
|
/**
|
|
312
|
+
* @public
|
|
283
313
|
* <p>The type of the resource.</p>
|
|
284
314
|
*/
|
|
285
315
|
resourceType?: string;
|
|
286
316
|
/**
|
|
317
|
+
* @public
|
|
287
318
|
* <p>Service code.</p>
|
|
288
319
|
*/
|
|
289
320
|
serviceCode?: string;
|
|
290
321
|
/**
|
|
322
|
+
* @public
|
|
291
323
|
* <p>Quota code.</p>
|
|
292
324
|
*/
|
|
293
325
|
quotaCode?: string;
|
|
@@ -304,14 +336,17 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
304
336
|
readonly name: "ThrottlingException";
|
|
305
337
|
readonly $fault: "client";
|
|
306
338
|
/**
|
|
339
|
+
* @public
|
|
307
340
|
* <p>Service code.</p>
|
|
308
341
|
*/
|
|
309
342
|
serviceCode?: string;
|
|
310
343
|
/**
|
|
344
|
+
* @public
|
|
311
345
|
* <p>Quota code.</p>
|
|
312
346
|
*/
|
|
313
347
|
quotaCode?: string;
|
|
314
348
|
/**
|
|
349
|
+
* @public
|
|
315
350
|
* <p>The number of seconds after which the request should be safe to retry.</p>
|
|
316
351
|
*/
|
|
317
352
|
retryAfterSeconds?: string;
|
|
@@ -339,10 +374,12 @@ export declare class UninitializedAccountException extends __BaseException {
|
|
|
339
374
|
*/
|
|
340
375
|
export interface ValidationExceptionField {
|
|
341
376
|
/**
|
|
377
|
+
* @public
|
|
342
378
|
* <p>Validate exception field name.</p>
|
|
343
379
|
*/
|
|
344
380
|
name?: string;
|
|
345
381
|
/**
|
|
382
|
+
* @public
|
|
346
383
|
* <p>Validate exception field message.</p>
|
|
347
384
|
*/
|
|
348
385
|
message?: string;
|
|
@@ -370,10 +407,12 @@ export declare class ValidationException extends __BaseException {
|
|
|
370
407
|
readonly $fault: "client";
|
|
371
408
|
code?: string;
|
|
372
409
|
/**
|
|
410
|
+
* @public
|
|
373
411
|
* <p>Validation exception reason.</p>
|
|
374
412
|
*/
|
|
375
413
|
reason?: ValidationExceptionReason | string;
|
|
376
414
|
/**
|
|
415
|
+
* @public
|
|
377
416
|
* <p>A list of fields that failed validation.</p>
|
|
378
417
|
*/
|
|
379
418
|
fieldList?: ValidationExceptionField[];
|
|
@@ -388,22 +427,27 @@ export declare class ValidationException extends __BaseException {
|
|
|
388
427
|
*/
|
|
389
428
|
export interface ConversionProperties {
|
|
390
429
|
/**
|
|
430
|
+
* @public
|
|
391
431
|
* <p>A mapping between the volumes being converted and the converted snapshot ids</p>
|
|
392
432
|
*/
|
|
393
433
|
volumeToConversionMap?: Record<string, Record<string, string>>;
|
|
394
434
|
/**
|
|
435
|
+
* @public
|
|
395
436
|
* <p>The root volume name of a conversion job</p>
|
|
396
437
|
*/
|
|
397
438
|
rootVolumeName?: string;
|
|
398
439
|
/**
|
|
440
|
+
* @public
|
|
399
441
|
* <p>Whether the volume being converted uses UEFI or not</p>
|
|
400
442
|
*/
|
|
401
443
|
forceUefi?: boolean;
|
|
402
444
|
/**
|
|
445
|
+
* @public
|
|
403
446
|
* <p>The timestamp of when the snapshot being converted was taken</p>
|
|
404
447
|
*/
|
|
405
448
|
dataTimestamp?: string;
|
|
406
449
|
/**
|
|
450
|
+
* @public
|
|
407
451
|
* <p>A mapping between the volumes and their sizes</p>
|
|
408
452
|
*/
|
|
409
453
|
volumeToVolumeSize?: Record<string, number>;
|
|
@@ -414,10 +458,12 @@ export interface ConversionProperties {
|
|
|
414
458
|
*/
|
|
415
459
|
export interface CPU {
|
|
416
460
|
/**
|
|
461
|
+
* @public
|
|
417
462
|
* <p>The number of CPU cores.</p>
|
|
418
463
|
*/
|
|
419
464
|
cores?: number;
|
|
420
465
|
/**
|
|
466
|
+
* @public
|
|
421
467
|
* <p>The model name of the CPU.</p>
|
|
422
468
|
*/
|
|
423
469
|
modelName?: string;
|
|
@@ -427,10 +473,12 @@ export interface CPU {
|
|
|
427
473
|
*/
|
|
428
474
|
export interface CreateExtendedSourceServerRequest {
|
|
429
475
|
/**
|
|
476
|
+
* @public
|
|
430
477
|
* <p>This defines the ARN of the source server in staging Account based on which you want to create an extended source server.</p>
|
|
431
478
|
*/
|
|
432
479
|
sourceServerArn: string | undefined;
|
|
433
480
|
/**
|
|
481
|
+
* @public
|
|
434
482
|
* <p>A list of tags associated with the extended source server.</p>
|
|
435
483
|
*/
|
|
436
484
|
tags?: Record<string, string>;
|
|
@@ -465,10 +513,12 @@ export type DataReplicationErrorString = (typeof DataReplicationErrorString)[key
|
|
|
465
513
|
*/
|
|
466
514
|
export interface DataReplicationError {
|
|
467
515
|
/**
|
|
516
|
+
* @public
|
|
468
517
|
* <p>Error in data replication.</p>
|
|
469
518
|
*/
|
|
470
519
|
error?: DataReplicationErrorString | string;
|
|
471
520
|
/**
|
|
521
|
+
* @public
|
|
472
522
|
* <p>Error in data replication.</p>
|
|
473
523
|
*/
|
|
474
524
|
rawError?: string;
|
|
@@ -515,10 +565,12 @@ export type DataReplicationInitiationStepStatus = (typeof DataReplicationInitiat
|
|
|
515
565
|
*/
|
|
516
566
|
export interface DataReplicationInitiationStep {
|
|
517
567
|
/**
|
|
568
|
+
* @public
|
|
518
569
|
* <p>The name of the step.</p>
|
|
519
570
|
*/
|
|
520
571
|
name?: DataReplicationInitiationStepName | string;
|
|
521
572
|
/**
|
|
573
|
+
* @public
|
|
522
574
|
* <p>The status of the step.</p>
|
|
523
575
|
*/
|
|
524
576
|
status?: DataReplicationInitiationStepStatus | string;
|
|
@@ -529,14 +581,17 @@ export interface DataReplicationInitiationStep {
|
|
|
529
581
|
*/
|
|
530
582
|
export interface DataReplicationInitiation {
|
|
531
583
|
/**
|
|
584
|
+
* @public
|
|
532
585
|
* <p>The date and time of the current attempt to initiate data replication.</p>
|
|
533
586
|
*/
|
|
534
587
|
startDateTime?: string;
|
|
535
588
|
/**
|
|
589
|
+
* @public
|
|
536
590
|
* <p>The date and time of the next attempt to initiate data replication.</p>
|
|
537
591
|
*/
|
|
538
592
|
nextAttemptDateTime?: string;
|
|
539
593
|
/**
|
|
594
|
+
* @public
|
|
540
595
|
* <p>The steps of the current attempt to initiate data replication.</p>
|
|
541
596
|
*/
|
|
542
597
|
steps?: DataReplicationInitiationStep[];
|
|
@@ -567,22 +622,27 @@ export type DataReplicationState = (typeof DataReplicationState)[keyof typeof Da
|
|
|
567
622
|
*/
|
|
568
623
|
export interface DataReplicationInfoReplicatedDisk {
|
|
569
624
|
/**
|
|
625
|
+
* @public
|
|
570
626
|
* <p>The name of the device.</p>
|
|
571
627
|
*/
|
|
572
628
|
deviceName?: string;
|
|
573
629
|
/**
|
|
630
|
+
* @public
|
|
574
631
|
* <p>The total amount of data to be replicated in bytes.</p>
|
|
575
632
|
*/
|
|
576
633
|
totalStorageBytes?: number;
|
|
577
634
|
/**
|
|
635
|
+
* @public
|
|
578
636
|
* <p>The amount of data replicated so far in bytes.</p>
|
|
579
637
|
*/
|
|
580
638
|
replicatedStorageBytes?: number;
|
|
581
639
|
/**
|
|
640
|
+
* @public
|
|
582
641
|
* <p>The amount of data to be rescanned in bytes.</p>
|
|
583
642
|
*/
|
|
584
643
|
rescannedStorageBytes?: number;
|
|
585
644
|
/**
|
|
645
|
+
* @public
|
|
586
646
|
* <p>The size of the replication backlog in bytes.</p>
|
|
587
647
|
*/
|
|
588
648
|
backloggedStorageBytes?: number;
|
|
@@ -593,30 +653,37 @@ export interface DataReplicationInfoReplicatedDisk {
|
|
|
593
653
|
*/
|
|
594
654
|
export interface DataReplicationInfo {
|
|
595
655
|
/**
|
|
656
|
+
* @public
|
|
596
657
|
* <p>Data replication lag duration.</p>
|
|
597
658
|
*/
|
|
598
659
|
lagDuration?: string;
|
|
599
660
|
/**
|
|
661
|
+
* @public
|
|
600
662
|
* <p>An estimate of when the data replication will be completed.</p>
|
|
601
663
|
*/
|
|
602
664
|
etaDateTime?: string;
|
|
603
665
|
/**
|
|
666
|
+
* @public
|
|
604
667
|
* <p>The disks that should be replicated.</p>
|
|
605
668
|
*/
|
|
606
669
|
replicatedDisks?: DataReplicationInfoReplicatedDisk[];
|
|
607
670
|
/**
|
|
671
|
+
* @public
|
|
608
672
|
* <p>The state of the data replication.</p>
|
|
609
673
|
*/
|
|
610
674
|
dataReplicationState?: DataReplicationState | string;
|
|
611
675
|
/**
|
|
676
|
+
* @public
|
|
612
677
|
* <p>Information about whether the data replication has been initiated.</p>
|
|
613
678
|
*/
|
|
614
679
|
dataReplicationInitiation?: DataReplicationInitiation;
|
|
615
680
|
/**
|
|
681
|
+
* @public
|
|
616
682
|
* <p>Error in data replication.</p>
|
|
617
683
|
*/
|
|
618
684
|
dataReplicationError?: DataReplicationError;
|
|
619
685
|
/**
|
|
686
|
+
* @public
|
|
620
687
|
* <p>AWS Availability zone into which data is being replicated.</p>
|
|
621
688
|
*/
|
|
622
689
|
stagingAvailabilityZone?: string;
|
|
@@ -653,14 +720,17 @@ export type LastLaunchType = (typeof LastLaunchType)[keyof typeof LastLaunchType
|
|
|
653
720
|
*/
|
|
654
721
|
export interface LifeCycleLastLaunchInitiated {
|
|
655
722
|
/**
|
|
723
|
+
* @public
|
|
656
724
|
* <p>The date and time the last Source Server launch was initiated.</p>
|
|
657
725
|
*/
|
|
658
726
|
apiCallDateTime?: string;
|
|
659
727
|
/**
|
|
728
|
+
* @public
|
|
660
729
|
* <p>The ID of the Job that was used to last launch the Source Server.</p>
|
|
661
730
|
*/
|
|
662
731
|
jobID?: string;
|
|
663
732
|
/**
|
|
733
|
+
* @public
|
|
664
734
|
* <p>The Job type that was used to last launch the Source Server.</p>
|
|
665
735
|
*/
|
|
666
736
|
type?: LastLaunchType | string;
|
|
@@ -671,10 +741,12 @@ export interface LifeCycleLastLaunchInitiated {
|
|
|
671
741
|
*/
|
|
672
742
|
export interface LifeCycleLastLaunch {
|
|
673
743
|
/**
|
|
744
|
+
* @public
|
|
674
745
|
* <p>An object containing information regarding the initiation of the last launch of a Source Server.</p>
|
|
675
746
|
*/
|
|
676
747
|
initiated?: LifeCycleLastLaunchInitiated;
|
|
677
748
|
/**
|
|
749
|
+
* @public
|
|
678
750
|
* <p>Status of Source Server's last launch.</p>
|
|
679
751
|
*/
|
|
680
752
|
status?: LaunchStatus | string;
|
|
@@ -685,22 +757,27 @@ export interface LifeCycleLastLaunch {
|
|
|
685
757
|
*/
|
|
686
758
|
export interface LifeCycle {
|
|
687
759
|
/**
|
|
760
|
+
* @public
|
|
688
761
|
* <p>The date and time of when the Source Server was added to the service.</p>
|
|
689
762
|
*/
|
|
690
763
|
addedToServiceDateTime?: string;
|
|
691
764
|
/**
|
|
765
|
+
* @public
|
|
692
766
|
* <p>The date and time of the first byte that was replicated from the Source Server.</p>
|
|
693
767
|
*/
|
|
694
768
|
firstByteDateTime?: string;
|
|
695
769
|
/**
|
|
770
|
+
* @public
|
|
696
771
|
* <p>The amount of time that the Source Server has been replicating for.</p>
|
|
697
772
|
*/
|
|
698
773
|
elapsedReplicationDuration?: string;
|
|
699
774
|
/**
|
|
775
|
+
* @public
|
|
700
776
|
* <p>The date and time this Source Server was last seen by the service.</p>
|
|
701
777
|
*/
|
|
702
778
|
lastSeenByServiceDateTime?: string;
|
|
703
779
|
/**
|
|
780
|
+
* @public
|
|
704
781
|
* <p>An object containing information regarding the last launch of the Source Server.</p>
|
|
705
782
|
*/
|
|
706
783
|
lastLaunch?: LifeCycleLastLaunch;
|
|
@@ -723,14 +800,17 @@ export type ReplicationDirection = (typeof ReplicationDirection)[keyof typeof Re
|
|
|
723
800
|
*/
|
|
724
801
|
export interface SourceCloudProperties {
|
|
725
802
|
/**
|
|
803
|
+
* @public
|
|
726
804
|
* <p>AWS Account ID for an EC2-originated Source Server.</p>
|
|
727
805
|
*/
|
|
728
806
|
originAccountID?: string;
|
|
729
807
|
/**
|
|
808
|
+
* @public
|
|
730
809
|
* <p>AWS Region for an EC2-originated Source Server.</p>
|
|
731
810
|
*/
|
|
732
811
|
originRegion?: string;
|
|
733
812
|
/**
|
|
813
|
+
* @public
|
|
734
814
|
* <p>AWS Availability Zone for an EC2-originated Source Server.</p>
|
|
735
815
|
*/
|
|
736
816
|
originAvailabilityZone?: string;
|
|
@@ -741,10 +821,12 @@ export interface SourceCloudProperties {
|
|
|
741
821
|
*/
|
|
742
822
|
export interface Disk {
|
|
743
823
|
/**
|
|
824
|
+
* @public
|
|
744
825
|
* <p>The disk or device name.</p>
|
|
745
826
|
*/
|
|
746
827
|
deviceName?: string;
|
|
747
828
|
/**
|
|
829
|
+
* @public
|
|
748
830
|
* <p>The amount of storage on the disk in bytes.</p>
|
|
749
831
|
*/
|
|
750
832
|
bytes?: number;
|
|
@@ -755,18 +837,22 @@ export interface Disk {
|
|
|
755
837
|
*/
|
|
756
838
|
export interface IdentificationHints {
|
|
757
839
|
/**
|
|
840
|
+
* @public
|
|
758
841
|
* <p>Fully Qualified Domain Name identification hint.</p>
|
|
759
842
|
*/
|
|
760
843
|
fqdn?: string;
|
|
761
844
|
/**
|
|
845
|
+
* @public
|
|
762
846
|
* <p>Hostname identification hint.</p>
|
|
763
847
|
*/
|
|
764
848
|
hostname?: string;
|
|
765
849
|
/**
|
|
850
|
+
* @public
|
|
766
851
|
* <p>vCenter VM path identification hint.</p>
|
|
767
852
|
*/
|
|
768
853
|
vmWareUuid?: string;
|
|
769
854
|
/**
|
|
855
|
+
* @public
|
|
770
856
|
* <p>AWS Instance ID identification hint.</p>
|
|
771
857
|
*/
|
|
772
858
|
awsInstanceID?: string;
|
|
@@ -777,14 +863,17 @@ export interface IdentificationHints {
|
|
|
777
863
|
*/
|
|
778
864
|
export interface NetworkInterface {
|
|
779
865
|
/**
|
|
866
|
+
* @public
|
|
780
867
|
* <p>The MAC address of the network interface.</p>
|
|
781
868
|
*/
|
|
782
869
|
macAddress?: string;
|
|
783
870
|
/**
|
|
871
|
+
* @public
|
|
784
872
|
* <p>Network interface IPs.</p>
|
|
785
873
|
*/
|
|
786
874
|
ips?: string[];
|
|
787
875
|
/**
|
|
876
|
+
* @public
|
|
788
877
|
* <p>Whether this is the primary network interface.</p>
|
|
789
878
|
*/
|
|
790
879
|
isPrimary?: boolean;
|
|
@@ -795,6 +884,7 @@ export interface NetworkInterface {
|
|
|
795
884
|
*/
|
|
796
885
|
export interface OS {
|
|
797
886
|
/**
|
|
887
|
+
* @public
|
|
798
888
|
* <p>The long name of the Operating System.</p>
|
|
799
889
|
*/
|
|
800
890
|
fullString?: string;
|
|
@@ -805,38 +895,47 @@ export interface OS {
|
|
|
805
895
|
*/
|
|
806
896
|
export interface SourceProperties {
|
|
807
897
|
/**
|
|
898
|
+
* @public
|
|
808
899
|
* <p>The date and time the Source Properties were last updated on.</p>
|
|
809
900
|
*/
|
|
810
901
|
lastUpdatedDateTime?: string;
|
|
811
902
|
/**
|
|
903
|
+
* @public
|
|
812
904
|
* <p>The recommended EC2 instance type that will be used when recovering the Source Server.</p>
|
|
813
905
|
*/
|
|
814
906
|
recommendedInstanceType?: string;
|
|
815
907
|
/**
|
|
908
|
+
* @public
|
|
816
909
|
* <p>Hints used to uniquely identify a machine.</p>
|
|
817
910
|
*/
|
|
818
911
|
identificationHints?: IdentificationHints;
|
|
819
912
|
/**
|
|
913
|
+
* @public
|
|
820
914
|
* <p>An array of network interfaces.</p>
|
|
821
915
|
*/
|
|
822
916
|
networkInterfaces?: NetworkInterface[];
|
|
823
917
|
/**
|
|
918
|
+
* @public
|
|
824
919
|
* <p>An array of disks.</p>
|
|
825
920
|
*/
|
|
826
921
|
disks?: Disk[];
|
|
827
922
|
/**
|
|
923
|
+
* @public
|
|
828
924
|
* <p>An array of CPUs.</p>
|
|
829
925
|
*/
|
|
830
926
|
cpus?: CPU[];
|
|
831
927
|
/**
|
|
928
|
+
* @public
|
|
832
929
|
* <p>The amount of RAM in bytes.</p>
|
|
833
930
|
*/
|
|
834
931
|
ramBytes?: number;
|
|
835
932
|
/**
|
|
933
|
+
* @public
|
|
836
934
|
* <p>Operating system.</p>
|
|
837
935
|
*/
|
|
838
936
|
os?: OS;
|
|
839
937
|
/**
|
|
938
|
+
* @public
|
|
840
939
|
* <p>Are EC2 nitro instance types supported when recovering the Source Server.</p>
|
|
841
940
|
*/
|
|
842
941
|
supportsNitroInstances?: boolean;
|
|
@@ -860,6 +959,7 @@ export type ExtensionStatus = (typeof ExtensionStatus)[keyof typeof ExtensionSta
|
|
|
860
959
|
*/
|
|
861
960
|
export interface StagingArea {
|
|
862
961
|
/**
|
|
962
|
+
* @public
|
|
863
963
|
* <p>Status of Source server extension. Possible values:
|
|
864
964
|
* (a) NOT_EXTENDED - This is a source server that is replicating in the current account.
|
|
865
965
|
* (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.
|
|
@@ -867,14 +967,17 @@ export interface StagingArea {
|
|
|
867
967
|
*/
|
|
868
968
|
status?: ExtensionStatus | string;
|
|
869
969
|
/**
|
|
970
|
+
* @public
|
|
870
971
|
* <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>
|
|
871
972
|
*/
|
|
872
973
|
stagingAccountID?: string;
|
|
873
974
|
/**
|
|
975
|
+
* @public
|
|
874
976
|
* <p>Arn of the staging source server if this source server is extended</p>
|
|
875
977
|
*/
|
|
876
978
|
stagingSourceServerArn?: string;
|
|
877
979
|
/**
|
|
980
|
+
* @public
|
|
878
981
|
* <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>
|
|
879
982
|
*/
|
|
880
983
|
errorMessage?: string;
|
|
@@ -884,54 +987,67 @@ export interface StagingArea {
|
|
|
884
987
|
*/
|
|
885
988
|
export interface SourceServer {
|
|
886
989
|
/**
|
|
990
|
+
* @public
|
|
887
991
|
* <p>The ID of the Source Server.</p>
|
|
888
992
|
*/
|
|
889
993
|
sourceServerID?: string;
|
|
890
994
|
/**
|
|
995
|
+
* @public
|
|
891
996
|
* <p>The ARN of the Source Server.</p>
|
|
892
997
|
*/
|
|
893
998
|
arn?: string;
|
|
894
999
|
/**
|
|
1000
|
+
* @public
|
|
895
1001
|
* <p>The tags associated with the Source Server.</p>
|
|
896
1002
|
*/
|
|
897
1003
|
tags?: Record<string, string>;
|
|
898
1004
|
/**
|
|
1005
|
+
* @public
|
|
899
1006
|
* <p>The ID of the Recovery Instance associated with this Source Server.</p>
|
|
900
1007
|
*/
|
|
901
1008
|
recoveryInstanceId?: string;
|
|
902
1009
|
/**
|
|
1010
|
+
* @public
|
|
903
1011
|
* <p>The status of the last recovery launch of this Source Server.</p>
|
|
904
1012
|
*/
|
|
905
1013
|
lastLaunchResult?: LastLaunchResult | string;
|
|
906
1014
|
/**
|
|
1015
|
+
* @public
|
|
907
1016
|
* <p>The Data Replication Info of the Source Server.</p>
|
|
908
1017
|
*/
|
|
909
1018
|
dataReplicationInfo?: DataReplicationInfo;
|
|
910
1019
|
/**
|
|
1020
|
+
* @public
|
|
911
1021
|
* <p>The lifecycle information of this Source Server.</p>
|
|
912
1022
|
*/
|
|
913
1023
|
lifeCycle?: LifeCycle;
|
|
914
1024
|
/**
|
|
1025
|
+
* @public
|
|
915
1026
|
* <p>The source properties of the Source Server.</p>
|
|
916
1027
|
*/
|
|
917
1028
|
sourceProperties?: SourceProperties;
|
|
918
1029
|
/**
|
|
1030
|
+
* @public
|
|
919
1031
|
* <p>The staging area of the source server.</p>
|
|
920
1032
|
*/
|
|
921
1033
|
stagingArea?: StagingArea;
|
|
922
1034
|
/**
|
|
1035
|
+
* @public
|
|
923
1036
|
* <p>Source cloud properties of the Source Server.</p>
|
|
924
1037
|
*/
|
|
925
1038
|
sourceCloudProperties?: SourceCloudProperties;
|
|
926
1039
|
/**
|
|
1040
|
+
* @public
|
|
927
1041
|
* <p>Replication direction of the Source Server.</p>
|
|
928
1042
|
*/
|
|
929
1043
|
replicationDirection?: ReplicationDirection | string;
|
|
930
1044
|
/**
|
|
1045
|
+
* @public
|
|
931
1046
|
* <p>For EC2-originated Source Servers which have been failed over and then failed back, this value will mean the ARN of the Source Server on the opposite replication direction.</p>
|
|
932
1047
|
*/
|
|
933
1048
|
reversedDirectionSourceServerArn?: string;
|
|
934
1049
|
/**
|
|
1050
|
+
* @public
|
|
935
1051
|
* <p>ID of the Source Network which is protecting this Source Server's network.</p>
|
|
936
1052
|
*/
|
|
937
1053
|
sourceNetworkID?: string;
|
|
@@ -941,6 +1057,7 @@ export interface SourceServer {
|
|
|
941
1057
|
*/
|
|
942
1058
|
export interface CreateExtendedSourceServerResponse {
|
|
943
1059
|
/**
|
|
1060
|
+
* @public
|
|
944
1061
|
* <p>Created extended source server.</p>
|
|
945
1062
|
*/
|
|
946
1063
|
sourceServer?: SourceServer;
|
|
@@ -963,6 +1080,7 @@ export type LaunchDisposition = (typeof LaunchDisposition)[keyof typeof LaunchDi
|
|
|
963
1080
|
*/
|
|
964
1081
|
export interface Licensing {
|
|
965
1082
|
/**
|
|
1083
|
+
* @public
|
|
966
1084
|
* <p>Whether to enable "Bring your own license" or not.</p>
|
|
967
1085
|
*/
|
|
968
1086
|
osByol?: boolean;
|
|
@@ -985,30 +1103,37 @@ export type TargetInstanceTypeRightSizingMethod = (typeof TargetInstanceTypeRigh
|
|
|
985
1103
|
*/
|
|
986
1104
|
export interface CreateLaunchConfigurationTemplateRequest {
|
|
987
1105
|
/**
|
|
1106
|
+
* @public
|
|
988
1107
|
* <p>Request to associate tags during creation of a Launch Configuration Template.</p>
|
|
989
1108
|
*/
|
|
990
1109
|
tags?: Record<string, string>;
|
|
991
1110
|
/**
|
|
1111
|
+
* @public
|
|
992
1112
|
* <p>Launch disposition.</p>
|
|
993
1113
|
*/
|
|
994
1114
|
launchDisposition?: LaunchDisposition | string;
|
|
995
1115
|
/**
|
|
1116
|
+
* @public
|
|
996
1117
|
* <p>Target instance type right-sizing method.</p>
|
|
997
1118
|
*/
|
|
998
1119
|
targetInstanceTypeRightSizingMethod?: TargetInstanceTypeRightSizingMethod | string;
|
|
999
1120
|
/**
|
|
1121
|
+
* @public
|
|
1000
1122
|
* <p>Copy private IP.</p>
|
|
1001
1123
|
*/
|
|
1002
1124
|
copyPrivateIp?: boolean;
|
|
1003
1125
|
/**
|
|
1126
|
+
* @public
|
|
1004
1127
|
* <p>Copy tags.</p>
|
|
1005
1128
|
*/
|
|
1006
1129
|
copyTags?: boolean;
|
|
1007
1130
|
/**
|
|
1131
|
+
* @public
|
|
1008
1132
|
* <p>Licensing.</p>
|
|
1009
1133
|
*/
|
|
1010
1134
|
licensing?: Licensing;
|
|
1011
1135
|
/**
|
|
1136
|
+
* @public
|
|
1012
1137
|
* <p>S3 bucket ARN to export Source Network templates.</p>
|
|
1013
1138
|
*/
|
|
1014
1139
|
exportBucketArn?: string;
|
|
@@ -1019,38 +1144,47 @@ export interface CreateLaunchConfigurationTemplateRequest {
|
|
|
1019
1144
|
*/
|
|
1020
1145
|
export interface LaunchConfigurationTemplate {
|
|
1021
1146
|
/**
|
|
1147
|
+
* @public
|
|
1022
1148
|
* <p>ID of the Launch Configuration Template.</p>
|
|
1023
1149
|
*/
|
|
1024
1150
|
launchConfigurationTemplateID?: string;
|
|
1025
1151
|
/**
|
|
1152
|
+
* @public
|
|
1026
1153
|
* <p>ARN of the Launch Configuration Template.</p>
|
|
1027
1154
|
*/
|
|
1028
1155
|
arn?: string;
|
|
1029
1156
|
/**
|
|
1157
|
+
* @public
|
|
1030
1158
|
* <p>Tags of the Launch Configuration Template.</p>
|
|
1031
1159
|
*/
|
|
1032
1160
|
tags?: Record<string, string>;
|
|
1033
1161
|
/**
|
|
1162
|
+
* @public
|
|
1034
1163
|
* <p>Launch disposition.</p>
|
|
1035
1164
|
*/
|
|
1036
1165
|
launchDisposition?: LaunchDisposition | string;
|
|
1037
1166
|
/**
|
|
1167
|
+
* @public
|
|
1038
1168
|
* <p>Target instance type right-sizing method.</p>
|
|
1039
1169
|
*/
|
|
1040
1170
|
targetInstanceTypeRightSizingMethod?: TargetInstanceTypeRightSizingMethod | string;
|
|
1041
1171
|
/**
|
|
1172
|
+
* @public
|
|
1042
1173
|
* <p>Copy private IP.</p>
|
|
1043
1174
|
*/
|
|
1044
1175
|
copyPrivateIp?: boolean;
|
|
1045
1176
|
/**
|
|
1177
|
+
* @public
|
|
1046
1178
|
* <p>Copy tags.</p>
|
|
1047
1179
|
*/
|
|
1048
1180
|
copyTags?: boolean;
|
|
1049
1181
|
/**
|
|
1182
|
+
* @public
|
|
1050
1183
|
* <p>Licensing.</p>
|
|
1051
1184
|
*/
|
|
1052
1185
|
licensing?: Licensing;
|
|
1053
1186
|
/**
|
|
1187
|
+
* @public
|
|
1054
1188
|
* <p>S3 bucket ARN to export Source Network templates.</p>
|
|
1055
1189
|
*/
|
|
1056
1190
|
exportBucketArn?: string;
|
|
@@ -1060,6 +1194,7 @@ export interface LaunchConfigurationTemplate {
|
|
|
1060
1194
|
*/
|
|
1061
1195
|
export interface CreateLaunchConfigurationTemplateResponse {
|
|
1062
1196
|
/**
|
|
1197
|
+
* @public
|
|
1063
1198
|
* <p>Created Launch Configuration Template.</p>
|
|
1064
1199
|
*/
|
|
1065
1200
|
launchConfigurationTemplate?: LaunchConfigurationTemplate;
|
|
@@ -1122,22 +1257,27 @@ export type PITPolicyRuleUnits = (typeof PITPolicyRuleUnits)[keyof typeof PITPol
|
|
|
1122
1257
|
*/
|
|
1123
1258
|
export interface PITPolicyRule {
|
|
1124
1259
|
/**
|
|
1260
|
+
* @public
|
|
1125
1261
|
* <p>The ID of the rule.</p>
|
|
1126
1262
|
*/
|
|
1127
1263
|
ruleID?: number;
|
|
1128
1264
|
/**
|
|
1265
|
+
* @public
|
|
1129
1266
|
* <p>The units used to measure the interval and retentionDuration.</p>
|
|
1130
1267
|
*/
|
|
1131
1268
|
units: PITPolicyRuleUnits | string | undefined;
|
|
1132
1269
|
/**
|
|
1270
|
+
* @public
|
|
1133
1271
|
* <p>How often, in the chosen units, a snapshot should be taken.</p>
|
|
1134
1272
|
*/
|
|
1135
1273
|
interval: number | undefined;
|
|
1136
1274
|
/**
|
|
1275
|
+
* @public
|
|
1137
1276
|
* <p>The duration to retain a snapshot for, in the chosen units.</p>
|
|
1138
1277
|
*/
|
|
1139
1278
|
retentionDuration: number | undefined;
|
|
1140
1279
|
/**
|
|
1280
|
+
* @public
|
|
1141
1281
|
* <p>Whether this rule is enabled or not.</p>
|
|
1142
1282
|
*/
|
|
1143
1283
|
enabled?: boolean;
|
|
@@ -1147,62 +1287,77 @@ export interface PITPolicyRule {
|
|
|
1147
1287
|
*/
|
|
1148
1288
|
export interface CreateReplicationConfigurationTemplateRequest {
|
|
1149
1289
|
/**
|
|
1290
|
+
* @public
|
|
1150
1291
|
* <p>The subnet to be used by the replication staging area.</p>
|
|
1151
1292
|
*/
|
|
1152
1293
|
stagingAreaSubnetId: string | undefined;
|
|
1153
1294
|
/**
|
|
1295
|
+
* @public
|
|
1154
1296
|
* <p>Whether to associate the default Elastic Disaster Recovery Security group with the Replication Configuration Template.</p>
|
|
1155
1297
|
*/
|
|
1156
1298
|
associateDefaultSecurityGroup: boolean | undefined;
|
|
1157
1299
|
/**
|
|
1300
|
+
* @public
|
|
1158
1301
|
* <p>The security group IDs that will be used by the replication server.</p>
|
|
1159
1302
|
*/
|
|
1160
1303
|
replicationServersSecurityGroupsIDs: string[] | undefined;
|
|
1161
1304
|
/**
|
|
1305
|
+
* @public
|
|
1162
1306
|
* <p>The instance type to be used for the replication server.</p>
|
|
1163
1307
|
*/
|
|
1164
1308
|
replicationServerInstanceType: string | undefined;
|
|
1165
1309
|
/**
|
|
1310
|
+
* @public
|
|
1166
1311
|
* <p>Whether to use a dedicated Replication Server in the replication staging area.</p>
|
|
1167
1312
|
*/
|
|
1168
1313
|
useDedicatedReplicationServer: boolean | undefined;
|
|
1169
1314
|
/**
|
|
1315
|
+
* @public
|
|
1170
1316
|
* <p>The Staging Disk EBS volume type to be used during replication.</p>
|
|
1171
1317
|
*/
|
|
1172
1318
|
defaultLargeStagingDiskType: ReplicationConfigurationDefaultLargeStagingDiskType | string | undefined;
|
|
1173
1319
|
/**
|
|
1320
|
+
* @public
|
|
1174
1321
|
* <p>The type of EBS encryption to be used during replication.</p>
|
|
1175
1322
|
*/
|
|
1176
1323
|
ebsEncryption: ReplicationConfigurationEbsEncryption | string | undefined;
|
|
1177
1324
|
/**
|
|
1325
|
+
* @public
|
|
1178
1326
|
* <p>The ARN of the EBS encryption key to be used during replication.</p>
|
|
1179
1327
|
*/
|
|
1180
1328
|
ebsEncryptionKeyArn?: string;
|
|
1181
1329
|
/**
|
|
1330
|
+
* @public
|
|
1182
1331
|
* <p>Configure bandwidth throttling for the outbound data transfer rate of the Source Server in Mbps.</p>
|
|
1183
1332
|
*/
|
|
1184
1333
|
bandwidthThrottling: number | undefined;
|
|
1185
1334
|
/**
|
|
1335
|
+
* @public
|
|
1186
1336
|
* <p>The data plane routing mechanism that will be used for replication.</p>
|
|
1187
1337
|
*/
|
|
1188
1338
|
dataPlaneRouting: ReplicationConfigurationDataPlaneRouting | string | undefined;
|
|
1189
1339
|
/**
|
|
1340
|
+
* @public
|
|
1190
1341
|
* <p>Whether to create a Public IP for the Recovery Instance by default.</p>
|
|
1191
1342
|
*/
|
|
1192
1343
|
createPublicIP: boolean | undefined;
|
|
1193
1344
|
/**
|
|
1345
|
+
* @public
|
|
1194
1346
|
* <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>
|
|
1195
1347
|
*/
|
|
1196
1348
|
stagingAreaTags: Record<string, string> | undefined;
|
|
1197
1349
|
/**
|
|
1350
|
+
* @public
|
|
1198
1351
|
* <p>The Point in time (PIT) policy to manage snapshots taken during replication.</p>
|
|
1199
1352
|
*/
|
|
1200
1353
|
pitPolicy: PITPolicyRule[] | undefined;
|
|
1201
1354
|
/**
|
|
1355
|
+
* @public
|
|
1202
1356
|
* <p>A set of tags to be associated with the Replication Configuration Template resource.</p>
|
|
1203
1357
|
*/
|
|
1204
1358
|
tags?: Record<string, string>;
|
|
1205
1359
|
/**
|
|
1360
|
+
* @public
|
|
1206
1361
|
* <p>Whether to allow the AWS replication agent to automatically replicate newly added disks.</p>
|
|
1207
1362
|
*/
|
|
1208
1363
|
autoReplicateNewDisks?: boolean;
|
|
@@ -1212,70 +1367,87 @@ export interface CreateReplicationConfigurationTemplateRequest {
|
|
|
1212
1367
|
*/
|
|
1213
1368
|
export interface ReplicationConfigurationTemplate {
|
|
1214
1369
|
/**
|
|
1370
|
+
* @public
|
|
1215
1371
|
* <p>The Replication Configuration Template ID.</p>
|
|
1216
1372
|
*/
|
|
1217
1373
|
replicationConfigurationTemplateID: string | undefined;
|
|
1218
1374
|
/**
|
|
1375
|
+
* @public
|
|
1219
1376
|
* <p>The Replication Configuration Template ARN.</p>
|
|
1220
1377
|
*/
|
|
1221
1378
|
arn?: string;
|
|
1222
1379
|
/**
|
|
1380
|
+
* @public
|
|
1223
1381
|
* <p>The subnet to be used by the replication staging area.</p>
|
|
1224
1382
|
*/
|
|
1225
1383
|
stagingAreaSubnetId?: string;
|
|
1226
1384
|
/**
|
|
1385
|
+
* @public
|
|
1227
1386
|
* <p>Whether to associate the default Elastic Disaster Recovery Security group with the Replication Configuration Template.</p>
|
|
1228
1387
|
*/
|
|
1229
1388
|
associateDefaultSecurityGroup?: boolean;
|
|
1230
1389
|
/**
|
|
1390
|
+
* @public
|
|
1231
1391
|
* <p>The security group IDs that will be used by the replication server.</p>
|
|
1232
1392
|
*/
|
|
1233
1393
|
replicationServersSecurityGroupsIDs?: string[];
|
|
1234
1394
|
/**
|
|
1395
|
+
* @public
|
|
1235
1396
|
* <p>The instance type to be used for the replication server.</p>
|
|
1236
1397
|
*/
|
|
1237
1398
|
replicationServerInstanceType?: string;
|
|
1238
1399
|
/**
|
|
1400
|
+
* @public
|
|
1239
1401
|
* <p>Whether to use a dedicated Replication Server in the replication staging area.</p>
|
|
1240
1402
|
*/
|
|
1241
1403
|
useDedicatedReplicationServer?: boolean;
|
|
1242
1404
|
/**
|
|
1405
|
+
* @public
|
|
1243
1406
|
* <p>The Staging Disk EBS volume type to be used during replication.</p>
|
|
1244
1407
|
*/
|
|
1245
1408
|
defaultLargeStagingDiskType?: ReplicationConfigurationDefaultLargeStagingDiskType | string;
|
|
1246
1409
|
/**
|
|
1410
|
+
* @public
|
|
1247
1411
|
* <p>The type of EBS encryption to be used during replication.</p>
|
|
1248
1412
|
*/
|
|
1249
1413
|
ebsEncryption?: ReplicationConfigurationEbsEncryption | string;
|
|
1250
1414
|
/**
|
|
1415
|
+
* @public
|
|
1251
1416
|
* <p>The ARN of the EBS encryption key to be used during replication.</p>
|
|
1252
1417
|
*/
|
|
1253
1418
|
ebsEncryptionKeyArn?: string;
|
|
1254
1419
|
/**
|
|
1420
|
+
* @public
|
|
1255
1421
|
* <p>Configure bandwidth throttling for the outbound data transfer rate of the Source Server in Mbps.</p>
|
|
1256
1422
|
*/
|
|
1257
1423
|
bandwidthThrottling?: number;
|
|
1258
1424
|
/**
|
|
1425
|
+
* @public
|
|
1259
1426
|
* <p>The data plane routing mechanism that will be used for replication.</p>
|
|
1260
1427
|
*/
|
|
1261
1428
|
dataPlaneRouting?: ReplicationConfigurationDataPlaneRouting | string;
|
|
1262
1429
|
/**
|
|
1430
|
+
* @public
|
|
1263
1431
|
* <p>Whether to create a Public IP for the Recovery Instance by default.</p>
|
|
1264
1432
|
*/
|
|
1265
1433
|
createPublicIP?: boolean;
|
|
1266
1434
|
/**
|
|
1435
|
+
* @public
|
|
1267
1436
|
* <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>
|
|
1268
1437
|
*/
|
|
1269
1438
|
stagingAreaTags?: Record<string, string>;
|
|
1270
1439
|
/**
|
|
1440
|
+
* @public
|
|
1271
1441
|
* <p>A set of tags to be associated with the Replication Configuration Template resource.</p>
|
|
1272
1442
|
*/
|
|
1273
1443
|
tags?: Record<string, string>;
|
|
1274
1444
|
/**
|
|
1445
|
+
* @public
|
|
1275
1446
|
* <p>The Point in time (PIT) policy to manage snapshots taken during replication.</p>
|
|
1276
1447
|
*/
|
|
1277
1448
|
pitPolicy?: PITPolicyRule[];
|
|
1278
1449
|
/**
|
|
1450
|
+
* @public
|
|
1279
1451
|
* <p>Whether to allow the AWS replication agent to automatically replicate newly added disks.</p>
|
|
1280
1452
|
*/
|
|
1281
1453
|
autoReplicateNewDisks?: boolean;
|
|
@@ -1285,18 +1457,22 @@ export interface ReplicationConfigurationTemplate {
|
|
|
1285
1457
|
*/
|
|
1286
1458
|
export interface CreateSourceNetworkRequest {
|
|
1287
1459
|
/**
|
|
1460
|
+
* @public
|
|
1288
1461
|
* <p>Which VPC ID to protect.</p>
|
|
1289
1462
|
*/
|
|
1290
1463
|
vpcID: string | undefined;
|
|
1291
1464
|
/**
|
|
1465
|
+
* @public
|
|
1292
1466
|
* <p>Account containing the VPC to protect.</p>
|
|
1293
1467
|
*/
|
|
1294
1468
|
originAccountID: string | undefined;
|
|
1295
1469
|
/**
|
|
1470
|
+
* @public
|
|
1296
1471
|
* <p>Region containing the VPC to protect.</p>
|
|
1297
1472
|
*/
|
|
1298
1473
|
originRegion: string | undefined;
|
|
1299
1474
|
/**
|
|
1475
|
+
* @public
|
|
1300
1476
|
* <p>A set of tags to be associated with the Source Network resource.</p>
|
|
1301
1477
|
*/
|
|
1302
1478
|
tags?: Record<string, string>;
|
|
@@ -1306,6 +1482,7 @@ export interface CreateSourceNetworkRequest {
|
|
|
1306
1482
|
*/
|
|
1307
1483
|
export interface CreateSourceNetworkResponse {
|
|
1308
1484
|
/**
|
|
1485
|
+
* @public
|
|
1309
1486
|
* <p>ID of the created Source Network.</p>
|
|
1310
1487
|
*/
|
|
1311
1488
|
sourceNetworkID?: string;
|
|
@@ -1315,6 +1492,7 @@ export interface CreateSourceNetworkResponse {
|
|
|
1315
1492
|
*/
|
|
1316
1493
|
export interface DeleteJobRequest {
|
|
1317
1494
|
/**
|
|
1495
|
+
* @public
|
|
1318
1496
|
* <p>The ID of the Job to be deleted.</p>
|
|
1319
1497
|
*/
|
|
1320
1498
|
jobID: string | undefined;
|
|
@@ -1329,6 +1507,7 @@ export interface DeleteJobResponse {
|
|
|
1329
1507
|
*/
|
|
1330
1508
|
export interface DeleteLaunchConfigurationTemplateRequest {
|
|
1331
1509
|
/**
|
|
1510
|
+
* @public
|
|
1332
1511
|
* <p>The ID of the Launch Configuration Template to be deleted.</p>
|
|
1333
1512
|
*/
|
|
1334
1513
|
launchConfigurationTemplateID: string | undefined;
|
|
@@ -1343,6 +1522,7 @@ export interface DeleteLaunchConfigurationTemplateResponse {
|
|
|
1343
1522
|
*/
|
|
1344
1523
|
export interface DeleteRecoveryInstanceRequest {
|
|
1345
1524
|
/**
|
|
1525
|
+
* @public
|
|
1346
1526
|
* <p>The ID of the Recovery Instance to be deleted.</p>
|
|
1347
1527
|
*/
|
|
1348
1528
|
recoveryInstanceID: string | undefined;
|
|
@@ -1352,6 +1532,7 @@ export interface DeleteRecoveryInstanceRequest {
|
|
|
1352
1532
|
*/
|
|
1353
1533
|
export interface DeleteReplicationConfigurationTemplateRequest {
|
|
1354
1534
|
/**
|
|
1535
|
+
* @public
|
|
1355
1536
|
* <p>The ID of the Replication Configuration Template to be deleted.</p>
|
|
1356
1537
|
*/
|
|
1357
1538
|
replicationConfigurationTemplateID: string | undefined;
|
|
@@ -1366,6 +1547,7 @@ export interface DeleteReplicationConfigurationTemplateResponse {
|
|
|
1366
1547
|
*/
|
|
1367
1548
|
export interface DeleteSourceNetworkRequest {
|
|
1368
1549
|
/**
|
|
1550
|
+
* @public
|
|
1369
1551
|
* <p>ID of the Source Network to delete.</p>
|
|
1370
1552
|
*/
|
|
1371
1553
|
sourceNetworkID: string | undefined;
|
|
@@ -1380,6 +1562,7 @@ export interface DeleteSourceNetworkResponse {
|
|
|
1380
1562
|
*/
|
|
1381
1563
|
export interface DeleteSourceServerRequest {
|
|
1382
1564
|
/**
|
|
1565
|
+
* @public
|
|
1383
1566
|
* <p>The ID of the Source Server to be deleted.</p>
|
|
1384
1567
|
*/
|
|
1385
1568
|
sourceServerID: string | undefined;
|
|
@@ -1394,14 +1577,17 @@ export interface DeleteSourceServerResponse {
|
|
|
1394
1577
|
*/
|
|
1395
1578
|
export interface DescribeJobLogItemsRequest {
|
|
1396
1579
|
/**
|
|
1580
|
+
* @public
|
|
1397
1581
|
* <p>The ID of the Job for which Job log items will be retrieved.</p>
|
|
1398
1582
|
*/
|
|
1399
1583
|
jobID: string | undefined;
|
|
1400
1584
|
/**
|
|
1585
|
+
* @public
|
|
1401
1586
|
* <p>Maximum number of Job log items to retrieve.</p>
|
|
1402
1587
|
*/
|
|
1403
1588
|
maxResults?: number;
|
|
1404
1589
|
/**
|
|
1590
|
+
* @public
|
|
1405
1591
|
* <p>The token of the next Job log items to retrieve.</p>
|
|
1406
1592
|
*/
|
|
1407
1593
|
nextToken?: string;
|
|
@@ -1449,18 +1635,22 @@ export type JobLogEvent = (typeof JobLogEvent)[keyof typeof JobLogEvent];
|
|
|
1449
1635
|
*/
|
|
1450
1636
|
export interface SourceNetworkData {
|
|
1451
1637
|
/**
|
|
1638
|
+
* @public
|
|
1452
1639
|
* <p>Source Network ID.</p>
|
|
1453
1640
|
*/
|
|
1454
1641
|
sourceNetworkID?: string;
|
|
1455
1642
|
/**
|
|
1643
|
+
* @public
|
|
1456
1644
|
* <p>VPC ID protected by the Source Network.</p>
|
|
1457
1645
|
*/
|
|
1458
1646
|
sourceVpc?: string;
|
|
1459
1647
|
/**
|
|
1648
|
+
* @public
|
|
1460
1649
|
* <p>ID of the recovered VPC following Source Network recovery.</p>
|
|
1461
1650
|
*/
|
|
1462
1651
|
targetVpc?: string;
|
|
1463
1652
|
/**
|
|
1653
|
+
* @public
|
|
1464
1654
|
* <p>CloudFormation stack name that was deployed for recovering the Source Network.</p>
|
|
1465
1655
|
*/
|
|
1466
1656
|
stackName?: string;
|
|
@@ -1475,12 +1665,16 @@ export type EventResourceData = EventResourceData.SourceNetworkDataMember | Even
|
|
|
1475
1665
|
*/
|
|
1476
1666
|
export declare namespace EventResourceData {
|
|
1477
1667
|
/**
|
|
1668
|
+
* @public
|
|
1478
1669
|
* <p>Source Network properties.</p>
|
|
1479
1670
|
*/
|
|
1480
1671
|
interface SourceNetworkDataMember {
|
|
1481
1672
|
sourceNetworkData: SourceNetworkData;
|
|
1482
1673
|
$unknown?: never;
|
|
1483
1674
|
}
|
|
1675
|
+
/**
|
|
1676
|
+
* @public
|
|
1677
|
+
*/
|
|
1484
1678
|
interface $UnknownMember {
|
|
1485
1679
|
sourceNetworkData?: never;
|
|
1486
1680
|
$unknown: [string, any];
|
|
@@ -1497,26 +1691,32 @@ export declare namespace EventResourceData {
|
|
|
1497
1691
|
*/
|
|
1498
1692
|
export interface JobLogEventData {
|
|
1499
1693
|
/**
|
|
1694
|
+
* @public
|
|
1500
1695
|
* <p>The ID of a Source Server.</p>
|
|
1501
1696
|
*/
|
|
1502
1697
|
sourceServerID?: string;
|
|
1503
1698
|
/**
|
|
1699
|
+
* @public
|
|
1504
1700
|
* <p>The ID of a conversion server.</p>
|
|
1505
1701
|
*/
|
|
1506
1702
|
conversionServerID?: string;
|
|
1507
1703
|
/**
|
|
1704
|
+
* @public
|
|
1508
1705
|
* <p>The ID of a Recovery Instance.</p>
|
|
1509
1706
|
*/
|
|
1510
1707
|
targetInstanceID?: string;
|
|
1511
1708
|
/**
|
|
1709
|
+
* @public
|
|
1512
1710
|
* <p>A string representing a job error.</p>
|
|
1513
1711
|
*/
|
|
1514
1712
|
rawError?: string;
|
|
1515
1713
|
/**
|
|
1714
|
+
* @public
|
|
1516
1715
|
* <p>Properties of a conversion job</p>
|
|
1517
1716
|
*/
|
|
1518
1717
|
conversionProperties?: ConversionProperties;
|
|
1519
1718
|
/**
|
|
1719
|
+
* @public
|
|
1520
1720
|
* <p>Properties of resource related to a job event.</p>
|
|
1521
1721
|
*/
|
|
1522
1722
|
eventResourceData?: EventResourceData;
|
|
@@ -1527,14 +1727,17 @@ export interface JobLogEventData {
|
|
|
1527
1727
|
*/
|
|
1528
1728
|
export interface JobLog {
|
|
1529
1729
|
/**
|
|
1730
|
+
* @public
|
|
1530
1731
|
* <p>The date and time the log was taken.</p>
|
|
1531
1732
|
*/
|
|
1532
1733
|
logDateTime?: string;
|
|
1533
1734
|
/**
|
|
1735
|
+
* @public
|
|
1534
1736
|
* <p>The event represents the type of a log.</p>
|
|
1535
1737
|
*/
|
|
1536
1738
|
event?: JobLogEvent | string;
|
|
1537
1739
|
/**
|
|
1740
|
+
* @public
|
|
1538
1741
|
* <p>Metadata associated with a Job log.</p>
|
|
1539
1742
|
*/
|
|
1540
1743
|
eventData?: JobLogEventData;
|
|
@@ -1544,10 +1747,12 @@ export interface JobLog {
|
|
|
1544
1747
|
*/
|
|
1545
1748
|
export interface DescribeJobLogItemsResponse {
|
|
1546
1749
|
/**
|
|
1750
|
+
* @public
|
|
1547
1751
|
* <p>An array of Job log items.</p>
|
|
1548
1752
|
*/
|
|
1549
1753
|
items?: JobLog[];
|
|
1550
1754
|
/**
|
|
1755
|
+
* @public
|
|
1551
1756
|
* <p>The token of the next Job log items to retrieve.</p>
|
|
1552
1757
|
*/
|
|
1553
1758
|
nextToken?: string;
|
|
@@ -1558,14 +1763,17 @@ export interface DescribeJobLogItemsResponse {
|
|
|
1558
1763
|
*/
|
|
1559
1764
|
export interface DescribeJobsRequestFilters {
|
|
1560
1765
|
/**
|
|
1766
|
+
* @public
|
|
1561
1767
|
* <p>An array of Job IDs that should be returned. An empty array means all jobs.</p>
|
|
1562
1768
|
*/
|
|
1563
1769
|
jobIDs?: string[];
|
|
1564
1770
|
/**
|
|
1771
|
+
* @public
|
|
1565
1772
|
* <p>The start date in a date range query.</p>
|
|
1566
1773
|
*/
|
|
1567
1774
|
fromDate?: string;
|
|
1568
1775
|
/**
|
|
1776
|
+
* @public
|
|
1569
1777
|
* <p>The end date in a date range query.</p>
|
|
1570
1778
|
*/
|
|
1571
1779
|
toDate?: string;
|
|
@@ -1575,14 +1783,17 @@ export interface DescribeJobsRequestFilters {
|
|
|
1575
1783
|
*/
|
|
1576
1784
|
export interface DescribeJobsRequest {
|
|
1577
1785
|
/**
|
|
1786
|
+
* @public
|
|
1578
1787
|
* <p>A set of filters by which to return Jobs.</p>
|
|
1579
1788
|
*/
|
|
1580
1789
|
filters?: DescribeJobsRequestFilters;
|
|
1581
1790
|
/**
|
|
1791
|
+
* @public
|
|
1582
1792
|
* <p>Maximum number of Jobs to retrieve.</p>
|
|
1583
1793
|
*/
|
|
1584
1794
|
maxResults?: number;
|
|
1585
1795
|
/**
|
|
1796
|
+
* @public
|
|
1586
1797
|
* <p>The token of the next Job to retrieve.</p>
|
|
1587
1798
|
*/
|
|
1588
1799
|
nextToken?: string;
|
|
@@ -1592,10 +1803,12 @@ export interface DescribeJobsRequest {
|
|
|
1592
1803
|
*/
|
|
1593
1804
|
export interface DescribeJobsResponse {
|
|
1594
1805
|
/**
|
|
1806
|
+
* @public
|
|
1595
1807
|
* <p>An array of Jobs.</p>
|
|
1596
1808
|
*/
|
|
1597
1809
|
items?: Job[];
|
|
1598
1810
|
/**
|
|
1811
|
+
* @public
|
|
1599
1812
|
* <p>The token of the next Job to retrieve.</p>
|
|
1600
1813
|
*/
|
|
1601
1814
|
nextToken?: string;
|
|
@@ -1605,14 +1818,17 @@ export interface DescribeJobsResponse {
|
|
|
1605
1818
|
*/
|
|
1606
1819
|
export interface DescribeLaunchConfigurationTemplatesRequest {
|
|
1607
1820
|
/**
|
|
1821
|
+
* @public
|
|
1608
1822
|
* <p>Request to filter Launch Configuration Templates list by Launch Configuration Template ID.</p>
|
|
1609
1823
|
*/
|
|
1610
1824
|
launchConfigurationTemplateIDs?: string[];
|
|
1611
1825
|
/**
|
|
1826
|
+
* @public
|
|
1612
1827
|
* <p>Maximum results to be returned in DescribeLaunchConfigurationTemplates.</p>
|
|
1613
1828
|
*/
|
|
1614
1829
|
maxResults?: number;
|
|
1615
1830
|
/**
|
|
1831
|
+
* @public
|
|
1616
1832
|
* <p>The token of the next Launch Configuration Template to retrieve.</p>
|
|
1617
1833
|
*/
|
|
1618
1834
|
nextToken?: string;
|
|
@@ -1622,10 +1838,12 @@ export interface DescribeLaunchConfigurationTemplatesRequest {
|
|
|
1622
1838
|
*/
|
|
1623
1839
|
export interface DescribeLaunchConfigurationTemplatesResponse {
|
|
1624
1840
|
/**
|
|
1841
|
+
* @public
|
|
1625
1842
|
* <p>List of items returned by DescribeLaunchConfigurationTemplates.</p>
|
|
1626
1843
|
*/
|
|
1627
1844
|
items?: LaunchConfigurationTemplate[];
|
|
1628
1845
|
/**
|
|
1846
|
+
* @public
|
|
1629
1847
|
* <p>The token of the next Launch Configuration Template to retrieve.</p>
|
|
1630
1848
|
*/
|
|
1631
1849
|
nextToken?: string;
|
|
@@ -1636,10 +1854,12 @@ export interface DescribeLaunchConfigurationTemplatesResponse {
|
|
|
1636
1854
|
*/
|
|
1637
1855
|
export interface DescribeRecoveryInstancesRequestFilters {
|
|
1638
1856
|
/**
|
|
1857
|
+
* @public
|
|
1639
1858
|
* <p>An array of Recovery Instance IDs that should be returned. An empty array means all Recovery Instances.</p>
|
|
1640
1859
|
*/
|
|
1641
1860
|
recoveryInstanceIDs?: string[];
|
|
1642
1861
|
/**
|
|
1862
|
+
* @public
|
|
1643
1863
|
* <p>An array of Source Server IDs for which associated Recovery Instances should be returned.</p>
|
|
1644
1864
|
*/
|
|
1645
1865
|
sourceServerIDs?: string[];
|
|
@@ -1649,14 +1869,17 @@ export interface DescribeRecoveryInstancesRequestFilters {
|
|
|
1649
1869
|
*/
|
|
1650
1870
|
export interface DescribeRecoveryInstancesRequest {
|
|
1651
1871
|
/**
|
|
1872
|
+
* @public
|
|
1652
1873
|
* <p>A set of filters by which to return Recovery Instances.</p>
|
|
1653
1874
|
*/
|
|
1654
1875
|
filters?: DescribeRecoveryInstancesRequestFilters;
|
|
1655
1876
|
/**
|
|
1877
|
+
* @public
|
|
1656
1878
|
* <p>Maximum number of Recovery Instances to retrieve.</p>
|
|
1657
1879
|
*/
|
|
1658
1880
|
maxResults?: number;
|
|
1659
1881
|
/**
|
|
1882
|
+
* @public
|
|
1660
1883
|
* <p>The token of the next Recovery Instance to retrieve.</p>
|
|
1661
1884
|
*/
|
|
1662
1885
|
nextToken?: string;
|
|
@@ -1698,10 +1921,12 @@ export type FailbackReplicationError = (typeof FailbackReplicationError)[keyof t
|
|
|
1698
1921
|
*/
|
|
1699
1922
|
export interface RecoveryInstanceDataReplicationError {
|
|
1700
1923
|
/**
|
|
1924
|
+
* @public
|
|
1701
1925
|
* <p>Error in data replication.</p>
|
|
1702
1926
|
*/
|
|
1703
1927
|
error?: FailbackReplicationError | string;
|
|
1704
1928
|
/**
|
|
1929
|
+
* @public
|
|
1705
1930
|
* <p>Error in data replication.</p>
|
|
1706
1931
|
*/
|
|
1707
1932
|
rawError?: string;
|
|
@@ -1755,10 +1980,12 @@ export type RecoveryInstanceDataReplicationInitiationStepStatus = (typeof Recove
|
|
|
1755
1980
|
*/
|
|
1756
1981
|
export interface RecoveryInstanceDataReplicationInitiationStep {
|
|
1757
1982
|
/**
|
|
1983
|
+
* @public
|
|
1758
1984
|
* <p>The name of the step.</p>
|
|
1759
1985
|
*/
|
|
1760
1986
|
name?: RecoveryInstanceDataReplicationInitiationStepName | string;
|
|
1761
1987
|
/**
|
|
1988
|
+
* @public
|
|
1762
1989
|
* <p>The status of the step.</p>
|
|
1763
1990
|
*/
|
|
1764
1991
|
status?: RecoveryInstanceDataReplicationInitiationStepStatus | string;
|
|
@@ -1769,10 +1996,12 @@ export interface RecoveryInstanceDataReplicationInitiationStep {
|
|
|
1769
1996
|
*/
|
|
1770
1997
|
export interface RecoveryInstanceDataReplicationInitiation {
|
|
1771
1998
|
/**
|
|
1999
|
+
* @public
|
|
1772
2000
|
* <p>The date and time of the current attempt to initiate data replication.</p>
|
|
1773
2001
|
*/
|
|
1774
2002
|
startDateTime?: string;
|
|
1775
2003
|
/**
|
|
2004
|
+
* @public
|
|
1776
2005
|
* <p>The steps of the current attempt to initiate data replication.</p>
|
|
1777
2006
|
*/
|
|
1778
2007
|
steps?: RecoveryInstanceDataReplicationInitiationStep[];
|
|
@@ -1805,22 +2034,27 @@ export type RecoveryInstanceDataReplicationState = (typeof RecoveryInstanceDataR
|
|
|
1805
2034
|
*/
|
|
1806
2035
|
export interface RecoveryInstanceDataReplicationInfoReplicatedDisk {
|
|
1807
2036
|
/**
|
|
2037
|
+
* @public
|
|
1808
2038
|
* <p>The name of the device.</p>
|
|
1809
2039
|
*/
|
|
1810
2040
|
deviceName?: string;
|
|
1811
2041
|
/**
|
|
2042
|
+
* @public
|
|
1812
2043
|
* <p>The total amount of data to be replicated in bytes.</p>
|
|
1813
2044
|
*/
|
|
1814
2045
|
totalStorageBytes?: number;
|
|
1815
2046
|
/**
|
|
2047
|
+
* @public
|
|
1816
2048
|
* <p>The amount of data replicated so far in bytes.</p>
|
|
1817
2049
|
*/
|
|
1818
2050
|
replicatedStorageBytes?: number;
|
|
1819
2051
|
/**
|
|
2052
|
+
* @public
|
|
1820
2053
|
* <p>The amount of data to be rescanned in bytes.</p>
|
|
1821
2054
|
*/
|
|
1822
2055
|
rescannedStorageBytes?: number;
|
|
1823
2056
|
/**
|
|
2057
|
+
* @public
|
|
1824
2058
|
* <p>The size of the replication backlog in bytes.</p>
|
|
1825
2059
|
*/
|
|
1826
2060
|
backloggedStorageBytes?: number;
|
|
@@ -1831,30 +2065,37 @@ export interface RecoveryInstanceDataReplicationInfoReplicatedDisk {
|
|
|
1831
2065
|
*/
|
|
1832
2066
|
export interface RecoveryInstanceDataReplicationInfo {
|
|
1833
2067
|
/**
|
|
2068
|
+
* @public
|
|
1834
2069
|
* <p>Data replication lag duration.</p>
|
|
1835
2070
|
*/
|
|
1836
2071
|
lagDuration?: string;
|
|
1837
2072
|
/**
|
|
2073
|
+
* @public
|
|
1838
2074
|
* <p>An estimate of when the data replication will be completed.</p>
|
|
1839
2075
|
*/
|
|
1840
2076
|
etaDateTime?: string;
|
|
1841
2077
|
/**
|
|
2078
|
+
* @public
|
|
1842
2079
|
* <p>The disks that should be replicated.</p>
|
|
1843
2080
|
*/
|
|
1844
2081
|
replicatedDisks?: RecoveryInstanceDataReplicationInfoReplicatedDisk[];
|
|
1845
2082
|
/**
|
|
2083
|
+
* @public
|
|
1846
2084
|
* <p>The state of the data replication.</p>
|
|
1847
2085
|
*/
|
|
1848
2086
|
dataReplicationState?: RecoveryInstanceDataReplicationState | string;
|
|
1849
2087
|
/**
|
|
2088
|
+
* @public
|
|
1850
2089
|
* <p>Information about whether the data replication has been initiated.</p>
|
|
1851
2090
|
*/
|
|
1852
2091
|
dataReplicationInitiation?: RecoveryInstanceDataReplicationInitiation;
|
|
1853
2092
|
/**
|
|
2093
|
+
* @public
|
|
1854
2094
|
* <p>Information about Data Replication</p>
|
|
1855
2095
|
*/
|
|
1856
2096
|
dataReplicationError?: RecoveryInstanceDataReplicationError;
|
|
1857
2097
|
/**
|
|
2098
|
+
* @public
|
|
1858
2099
|
* <p>AWS Availability zone into which data is being replicated.</p>
|
|
1859
2100
|
*/
|
|
1860
2101
|
stagingAvailabilityZone?: string;
|
|
@@ -1911,42 +2152,52 @@ export type FailbackState = (typeof FailbackState)[keyof typeof FailbackState];
|
|
|
1911
2152
|
*/
|
|
1912
2153
|
export interface RecoveryInstanceFailback {
|
|
1913
2154
|
/**
|
|
2155
|
+
* @public
|
|
1914
2156
|
* <p>The ID of the failback client that this Recovery Instance is associated with.</p>
|
|
1915
2157
|
*/
|
|
1916
2158
|
failbackClientID?: string;
|
|
1917
2159
|
/**
|
|
2160
|
+
* @public
|
|
1918
2161
|
* <p>The Job ID of the last failback log for this Recovery Instance.</p>
|
|
1919
2162
|
*/
|
|
1920
2163
|
failbackJobID?: string;
|
|
1921
2164
|
/**
|
|
2165
|
+
* @public
|
|
1922
2166
|
* <p>The date and time that the failback initiation started.</p>
|
|
1923
2167
|
*/
|
|
1924
2168
|
failbackInitiationTime?: string;
|
|
1925
2169
|
/**
|
|
2170
|
+
* @public
|
|
1926
2171
|
* <p>The state of the failback process that this Recovery Instance is in.</p>
|
|
1927
2172
|
*/
|
|
1928
2173
|
state?: FailbackState | string;
|
|
1929
2174
|
/**
|
|
2175
|
+
* @public
|
|
1930
2176
|
* <p>The date and time the agent on the Recovery Instance was last seen by the service.</p>
|
|
1931
2177
|
*/
|
|
1932
2178
|
agentLastSeenByServiceDateTime?: string;
|
|
1933
2179
|
/**
|
|
2180
|
+
* @public
|
|
1934
2181
|
* <p>The date and time that the failback client was last seen by the service.</p>
|
|
1935
2182
|
*/
|
|
1936
2183
|
failbackClientLastSeenByServiceDateTime?: string;
|
|
1937
2184
|
/**
|
|
2185
|
+
* @public
|
|
1938
2186
|
* <p>Whether we are failing back to the original Source Server for this Recovery Instance.</p>
|
|
1939
2187
|
*/
|
|
1940
2188
|
failbackToOriginalServer?: boolean;
|
|
1941
2189
|
/**
|
|
2190
|
+
* @public
|
|
1942
2191
|
* <p>The date and time of the first byte that was replicated from the Recovery Instance.</p>
|
|
1943
2192
|
*/
|
|
1944
2193
|
firstByteDateTime?: string;
|
|
1945
2194
|
/**
|
|
2195
|
+
* @public
|
|
1946
2196
|
* <p>The amount of time that the Recovery Instance has been replicating for.</p>
|
|
1947
2197
|
*/
|
|
1948
2198
|
elapsedReplicationDuration?: string;
|
|
1949
2199
|
/**
|
|
2200
|
+
* @public
|
|
1950
2201
|
* <p>The launch type (Recovery / Drill) of the last launch for the failback replication of this recovery instance.</p>
|
|
1951
2202
|
*/
|
|
1952
2203
|
failbackLaunchType?: FailbackLaunchType | string;
|
|
@@ -1969,14 +2220,17 @@ export type OriginEnvironment = (typeof OriginEnvironment)[keyof typeof OriginEn
|
|
|
1969
2220
|
*/
|
|
1970
2221
|
export interface RecoveryInstanceDisk {
|
|
1971
2222
|
/**
|
|
2223
|
+
* @public
|
|
1972
2224
|
* <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>
|
|
1973
2225
|
*/
|
|
1974
2226
|
internalDeviceName?: string;
|
|
1975
2227
|
/**
|
|
2228
|
+
* @public
|
|
1976
2229
|
* <p>The amount of storage on the disk in bytes.</p>
|
|
1977
2230
|
*/
|
|
1978
2231
|
bytes?: number;
|
|
1979
2232
|
/**
|
|
2233
|
+
* @public
|
|
1980
2234
|
* <p>The EBS Volume ID of this disk.</p>
|
|
1981
2235
|
*/
|
|
1982
2236
|
ebsVolumeID?: string;
|
|
@@ -1987,30 +2241,37 @@ export interface RecoveryInstanceDisk {
|
|
|
1987
2241
|
*/
|
|
1988
2242
|
export interface RecoveryInstanceProperties {
|
|
1989
2243
|
/**
|
|
2244
|
+
* @public
|
|
1990
2245
|
* <p>The date and time the Recovery Instance properties were last updated on.</p>
|
|
1991
2246
|
*/
|
|
1992
2247
|
lastUpdatedDateTime?: string;
|
|
1993
2248
|
/**
|
|
2249
|
+
* @public
|
|
1994
2250
|
* <p>Hints used to uniquely identify a machine.</p>
|
|
1995
2251
|
*/
|
|
1996
2252
|
identificationHints?: IdentificationHints;
|
|
1997
2253
|
/**
|
|
2254
|
+
* @public
|
|
1998
2255
|
* <p>An array of network interfaces.</p>
|
|
1999
2256
|
*/
|
|
2000
2257
|
networkInterfaces?: NetworkInterface[];
|
|
2001
2258
|
/**
|
|
2259
|
+
* @public
|
|
2002
2260
|
* <p>An array of disks.</p>
|
|
2003
2261
|
*/
|
|
2004
2262
|
disks?: RecoveryInstanceDisk[];
|
|
2005
2263
|
/**
|
|
2264
|
+
* @public
|
|
2006
2265
|
* <p>An array of CPUs.</p>
|
|
2007
2266
|
*/
|
|
2008
2267
|
cpus?: CPU[];
|
|
2009
2268
|
/**
|
|
2269
|
+
* @public
|
|
2010
2270
|
* <p>The amount of RAM in bytes.</p>
|
|
2011
2271
|
*/
|
|
2012
2272
|
ramBytes?: number;
|
|
2013
2273
|
/**
|
|
2274
|
+
* @public
|
|
2014
2275
|
* <p>Operating system.</p>
|
|
2015
2276
|
*/
|
|
2016
2277
|
os?: OS;
|
|
@@ -2021,58 +2282,72 @@ export interface RecoveryInstanceProperties {
|
|
|
2021
2282
|
*/
|
|
2022
2283
|
export interface RecoveryInstance {
|
|
2023
2284
|
/**
|
|
2285
|
+
* @public
|
|
2024
2286
|
* <p>The EC2 instance ID of the Recovery Instance.</p>
|
|
2025
2287
|
*/
|
|
2026
2288
|
ec2InstanceID?: string;
|
|
2027
2289
|
/**
|
|
2290
|
+
* @public
|
|
2028
2291
|
* <p>The state of the EC2 instance for this Recovery Instance.</p>
|
|
2029
2292
|
*/
|
|
2030
2293
|
ec2InstanceState?: EC2InstanceState | string;
|
|
2031
2294
|
/**
|
|
2295
|
+
* @public
|
|
2032
2296
|
* <p>The ID of the Job that created the Recovery Instance.</p>
|
|
2033
2297
|
*/
|
|
2034
2298
|
jobID?: string;
|
|
2035
2299
|
/**
|
|
2300
|
+
* @public
|
|
2036
2301
|
* <p>The ID of the Recovery Instance.</p>
|
|
2037
2302
|
*/
|
|
2038
2303
|
recoveryInstanceID?: string;
|
|
2039
2304
|
/**
|
|
2305
|
+
* @public
|
|
2040
2306
|
* <p>The Source Server ID that this Recovery Instance is associated with.</p>
|
|
2041
2307
|
*/
|
|
2042
2308
|
sourceServerID?: string;
|
|
2043
2309
|
/**
|
|
2310
|
+
* @public
|
|
2044
2311
|
* <p>The ARN of the Recovery Instance.</p>
|
|
2045
2312
|
*/
|
|
2046
2313
|
arn?: string;
|
|
2047
2314
|
/**
|
|
2315
|
+
* @public
|
|
2048
2316
|
* <p>An array of tags that are associated with the Recovery Instance.</p>
|
|
2049
2317
|
*/
|
|
2050
2318
|
tags?: Record<string, string>;
|
|
2051
2319
|
/**
|
|
2320
|
+
* @public
|
|
2052
2321
|
* <p>An object representing failback related information of the Recovery Instance.</p>
|
|
2053
2322
|
*/
|
|
2054
2323
|
failback?: RecoveryInstanceFailback;
|
|
2055
2324
|
/**
|
|
2325
|
+
* @public
|
|
2056
2326
|
* <p>The Data Replication Info of the Recovery Instance.</p>
|
|
2057
2327
|
*/
|
|
2058
2328
|
dataReplicationInfo?: RecoveryInstanceDataReplicationInfo;
|
|
2059
2329
|
/**
|
|
2330
|
+
* @public
|
|
2060
2331
|
* <p>Properties of the Recovery Instance machine.</p>
|
|
2061
2332
|
*/
|
|
2062
2333
|
recoveryInstanceProperties?: RecoveryInstanceProperties;
|
|
2063
2334
|
/**
|
|
2335
|
+
* @public
|
|
2064
2336
|
* <p>The date and time of the Point in Time (PIT) snapshot that this Recovery Instance was launched from.</p>
|
|
2065
2337
|
*/
|
|
2066
2338
|
pointInTimeSnapshotDateTime?: string;
|
|
2067
2339
|
/**
|
|
2340
|
+
* @public
|
|
2068
2341
|
* <p>Whether this Recovery Instance was created for a drill or for an actual Recovery event.</p>
|
|
2069
2342
|
*/
|
|
2070
2343
|
isDrill?: boolean;
|
|
2071
2344
|
/**
|
|
2345
|
+
* @public
|
|
2072
2346
|
* <p>Environment (On Premises / AWS) of the instance that the recovery instance originated from.</p>
|
|
2073
2347
|
*/
|
|
2074
2348
|
originEnvironment?: OriginEnvironment | string;
|
|
2075
2349
|
/**
|
|
2350
|
+
* @public
|
|
2076
2351
|
* <p>AWS availability zone associated with the recovery instance.</p>
|
|
2077
2352
|
*/
|
|
2078
2353
|
originAvailabilityZone?: string;
|
|
@@ -2082,10 +2357,12 @@ export interface RecoveryInstance {
|
|
|
2082
2357
|
*/
|
|
2083
2358
|
export interface DescribeRecoveryInstancesResponse {
|
|
2084
2359
|
/**
|
|
2360
|
+
* @public
|
|
2085
2361
|
* <p>The token of the next Recovery Instance to retrieve.</p>
|
|
2086
2362
|
*/
|
|
2087
2363
|
nextToken?: string;
|
|
2088
2364
|
/**
|
|
2365
|
+
* @public
|
|
2089
2366
|
* <p>An array of Recovery Instances.</p>
|
|
2090
2367
|
*/
|
|
2091
2368
|
items?: RecoveryInstance[];
|
|
@@ -2096,10 +2373,12 @@ export interface DescribeRecoveryInstancesResponse {
|
|
|
2096
2373
|
*/
|
|
2097
2374
|
export interface DescribeRecoverySnapshotsRequestFilters {
|
|
2098
2375
|
/**
|
|
2376
|
+
* @public
|
|
2099
2377
|
* <p>The start date in a date range query.</p>
|
|
2100
2378
|
*/
|
|
2101
2379
|
fromDateTime?: string;
|
|
2102
2380
|
/**
|
|
2381
|
+
* @public
|
|
2103
2382
|
* <p>The end date in a date range query.</p>
|
|
2104
2383
|
*/
|
|
2105
2384
|
toDateTime?: string;
|
|
@@ -2121,22 +2400,27 @@ export type RecoverySnapshotsOrder = (typeof RecoverySnapshotsOrder)[keyof typeo
|
|
|
2121
2400
|
*/
|
|
2122
2401
|
export interface DescribeRecoverySnapshotsRequest {
|
|
2123
2402
|
/**
|
|
2403
|
+
* @public
|
|
2124
2404
|
* <p>Filter Recovery Snapshots by Source Server ID.</p>
|
|
2125
2405
|
*/
|
|
2126
2406
|
sourceServerID: string | undefined;
|
|
2127
2407
|
/**
|
|
2408
|
+
* @public
|
|
2128
2409
|
* <p>A set of filters by which to return Recovery Snapshots.</p>
|
|
2129
2410
|
*/
|
|
2130
2411
|
filters?: DescribeRecoverySnapshotsRequestFilters;
|
|
2131
2412
|
/**
|
|
2413
|
+
* @public
|
|
2132
2414
|
* <p>The sorted ordering by which to return Recovery Snapshots.</p>
|
|
2133
2415
|
*/
|
|
2134
2416
|
order?: RecoverySnapshotsOrder | string;
|
|
2135
2417
|
/**
|
|
2418
|
+
* @public
|
|
2136
2419
|
* <p>Maximum number of Recovery Snapshots to retrieve.</p>
|
|
2137
2420
|
*/
|
|
2138
2421
|
maxResults?: number;
|
|
2139
2422
|
/**
|
|
2423
|
+
* @public
|
|
2140
2424
|
* <p>The token of the next Recovery Snapshot to retrieve.</p>
|
|
2141
2425
|
*/
|
|
2142
2426
|
nextToken?: string;
|
|
@@ -2147,22 +2431,27 @@ export interface DescribeRecoverySnapshotsRequest {
|
|
|
2147
2431
|
*/
|
|
2148
2432
|
export interface RecoverySnapshot {
|
|
2149
2433
|
/**
|
|
2434
|
+
* @public
|
|
2150
2435
|
* <p>The ID of the Recovery Snapshot.</p>
|
|
2151
2436
|
*/
|
|
2152
2437
|
snapshotID: string | undefined;
|
|
2153
2438
|
/**
|
|
2439
|
+
* @public
|
|
2154
2440
|
* <p>The ID of the Source Server that the snapshot was taken for.</p>
|
|
2155
2441
|
*/
|
|
2156
2442
|
sourceServerID: string | undefined;
|
|
2157
2443
|
/**
|
|
2444
|
+
* @public
|
|
2158
2445
|
* <p>The timestamp of when we expect the snapshot to be taken.</p>
|
|
2159
2446
|
*/
|
|
2160
2447
|
expectedTimestamp: string | undefined;
|
|
2161
2448
|
/**
|
|
2449
|
+
* @public
|
|
2162
2450
|
* <p>The actual timestamp that the snapshot was taken.</p>
|
|
2163
2451
|
*/
|
|
2164
2452
|
timestamp?: string;
|
|
2165
2453
|
/**
|
|
2454
|
+
* @public
|
|
2166
2455
|
* <p>A list of EBS snapshots.</p>
|
|
2167
2456
|
*/
|
|
2168
2457
|
ebsSnapshots?: string[];
|
|
@@ -2172,10 +2461,12 @@ export interface RecoverySnapshot {
|
|
|
2172
2461
|
*/
|
|
2173
2462
|
export interface DescribeRecoverySnapshotsResponse {
|
|
2174
2463
|
/**
|
|
2464
|
+
* @public
|
|
2175
2465
|
* <p>An array of Recovery Snapshots.</p>
|
|
2176
2466
|
*/
|
|
2177
2467
|
items?: RecoverySnapshot[];
|
|
2178
2468
|
/**
|
|
2469
|
+
* @public
|
|
2179
2470
|
* <p>The token of the next Recovery Snapshot to retrieve.</p>
|
|
2180
2471
|
*/
|
|
2181
2472
|
nextToken?: string;
|
|
@@ -2185,14 +2476,17 @@ export interface DescribeRecoverySnapshotsResponse {
|
|
|
2185
2476
|
*/
|
|
2186
2477
|
export interface DescribeReplicationConfigurationTemplatesRequest {
|
|
2187
2478
|
/**
|
|
2479
|
+
* @public
|
|
2188
2480
|
* <p>The IDs of the Replication Configuration Templates to retrieve. An empty list means all Replication Configuration Templates.</p>
|
|
2189
2481
|
*/
|
|
2190
2482
|
replicationConfigurationTemplateIDs?: string[];
|
|
2191
2483
|
/**
|
|
2484
|
+
* @public
|
|
2192
2485
|
* <p>Maximum number of Replication Configuration Templates to retrieve.</p>
|
|
2193
2486
|
*/
|
|
2194
2487
|
maxResults?: number;
|
|
2195
2488
|
/**
|
|
2489
|
+
* @public
|
|
2196
2490
|
* <p>The token of the next Replication Configuration Template to retrieve.</p>
|
|
2197
2491
|
*/
|
|
2198
2492
|
nextToken?: string;
|
|
@@ -2202,10 +2496,12 @@ export interface DescribeReplicationConfigurationTemplatesRequest {
|
|
|
2202
2496
|
*/
|
|
2203
2497
|
export interface DescribeReplicationConfigurationTemplatesResponse {
|
|
2204
2498
|
/**
|
|
2499
|
+
* @public
|
|
2205
2500
|
* <p>An array of Replication Configuration Templates.</p>
|
|
2206
2501
|
*/
|
|
2207
2502
|
items?: ReplicationConfigurationTemplate[];
|
|
2208
2503
|
/**
|
|
2504
|
+
* @public
|
|
2209
2505
|
* <p>The token of the next Replication Configuration Template to retrieve.</p>
|
|
2210
2506
|
*/
|
|
2211
2507
|
nextToken?: string;
|
|
@@ -2216,14 +2512,17 @@ export interface DescribeReplicationConfigurationTemplatesResponse {
|
|
|
2216
2512
|
*/
|
|
2217
2513
|
export interface DescribeSourceNetworksRequestFilters {
|
|
2218
2514
|
/**
|
|
2515
|
+
* @public
|
|
2219
2516
|
* <p>An array of Source Network IDs that should be returned. An empty array means all Source Networks.</p>
|
|
2220
2517
|
*/
|
|
2221
2518
|
sourceNetworkIDs?: string[];
|
|
2222
2519
|
/**
|
|
2520
|
+
* @public
|
|
2223
2521
|
* <p>Filter Source Networks by account ID containing the protected VPCs.</p>
|
|
2224
2522
|
*/
|
|
2225
2523
|
originAccountID?: string;
|
|
2226
2524
|
/**
|
|
2525
|
+
* @public
|
|
2227
2526
|
* <p>Filter Source Networks by the region containing the protected VPCs.</p>
|
|
2228
2527
|
*/
|
|
2229
2528
|
originRegion?: string;
|
|
@@ -2233,14 +2532,17 @@ export interface DescribeSourceNetworksRequestFilters {
|
|
|
2233
2532
|
*/
|
|
2234
2533
|
export interface DescribeSourceNetworksRequest {
|
|
2235
2534
|
/**
|
|
2535
|
+
* @public
|
|
2236
2536
|
* <p>A set of filters by which to return Source Networks.</p>
|
|
2237
2537
|
*/
|
|
2238
2538
|
filters?: DescribeSourceNetworksRequestFilters;
|
|
2239
2539
|
/**
|
|
2540
|
+
* @public
|
|
2240
2541
|
* <p>Maximum number of Source Networks to retrieve.</p>
|
|
2241
2542
|
*/
|
|
2242
2543
|
maxResults?: number;
|
|
2243
2544
|
/**
|
|
2545
|
+
* @public
|
|
2244
2546
|
* <p>The token of the next Source Networks to retrieve.</p>
|
|
2245
2547
|
*/
|
|
2246
2548
|
nextToken?: string;
|
|
@@ -2268,14 +2570,17 @@ export type RecoveryResult = (typeof RecoveryResult)[keyof typeof RecoveryResult
|
|
|
2268
2570
|
*/
|
|
2269
2571
|
export interface RecoveryLifeCycle {
|
|
2270
2572
|
/**
|
|
2573
|
+
* @public
|
|
2271
2574
|
* <p>The date and time the last Source Network recovery was initiated.</p>
|
|
2272
2575
|
*/
|
|
2273
2576
|
apiCallDateTime?: Date;
|
|
2274
2577
|
/**
|
|
2578
|
+
* @public
|
|
2275
2579
|
* <p>The ID of the Job that was used to last recover the Source Network.</p>
|
|
2276
2580
|
*/
|
|
2277
2581
|
jobID?: string;
|
|
2278
2582
|
/**
|
|
2583
|
+
* @public
|
|
2279
2584
|
* <p>The status of the last recovery status of this Source Network.</p>
|
|
2280
2585
|
*/
|
|
2281
2586
|
lastRecoveryResult?: RecoveryResult | string;
|
|
@@ -2300,22 +2605,27 @@ export type ReplicationStatus = (typeof ReplicationStatus)[keyof typeof Replicat
|
|
|
2300
2605
|
*/
|
|
2301
2606
|
export interface SourceNetwork {
|
|
2302
2607
|
/**
|
|
2608
|
+
* @public
|
|
2303
2609
|
* <p>Source Network ID.</p>
|
|
2304
2610
|
*/
|
|
2305
2611
|
sourceNetworkID?: string;
|
|
2306
2612
|
/**
|
|
2613
|
+
* @public
|
|
2307
2614
|
* <p>VPC ID protected by the Source Network.</p>
|
|
2308
2615
|
*/
|
|
2309
2616
|
sourceVpcID?: string;
|
|
2310
2617
|
/**
|
|
2618
|
+
* @public
|
|
2311
2619
|
* <p>The ARN of the Source Network.</p>
|
|
2312
2620
|
*/
|
|
2313
2621
|
arn?: string;
|
|
2314
2622
|
/**
|
|
2623
|
+
* @public
|
|
2315
2624
|
* <p>A list of tags associated with the Source Network.</p>
|
|
2316
2625
|
*/
|
|
2317
2626
|
tags?: Record<string, string>;
|
|
2318
2627
|
/**
|
|
2628
|
+
* @public
|
|
2319
2629
|
* <p>Status of Source Network Replication. Possible values:
|
|
2320
2630
|
* (a) STOPPED - Source Network is not replicating.
|
|
2321
2631
|
* (b) IN_PROGRESS - Source Network is being replicated.
|
|
@@ -2324,26 +2634,32 @@ export interface SourceNetwork {
|
|
|
2324
2634
|
*/
|
|
2325
2635
|
replicationStatus?: ReplicationStatus | string;
|
|
2326
2636
|
/**
|
|
2637
|
+
* @public
|
|
2327
2638
|
* <p>Error details in case Source Network replication status is ERROR.</p>
|
|
2328
2639
|
*/
|
|
2329
2640
|
replicationStatusDetails?: string;
|
|
2330
2641
|
/**
|
|
2642
|
+
* @public
|
|
2331
2643
|
* <p>CloudFormation stack name that was deployed for recovering the Source Network.</p>
|
|
2332
2644
|
*/
|
|
2333
2645
|
cfnStackName?: string;
|
|
2334
2646
|
/**
|
|
2647
|
+
* @public
|
|
2335
2648
|
* <p>Region containing the VPC protected by the Source Network.</p>
|
|
2336
2649
|
*/
|
|
2337
2650
|
sourceRegion?: string;
|
|
2338
2651
|
/**
|
|
2652
|
+
* @public
|
|
2339
2653
|
* <p>Account ID containing the VPC protected by the Source Network.</p>
|
|
2340
2654
|
*/
|
|
2341
2655
|
sourceAccountID?: string;
|
|
2342
2656
|
/**
|
|
2657
|
+
* @public
|
|
2343
2658
|
* <p>An object containing information regarding the last recovery of the Source Network.</p>
|
|
2344
2659
|
*/
|
|
2345
2660
|
lastRecovery?: RecoveryLifeCycle;
|
|
2346
2661
|
/**
|
|
2662
|
+
* @public
|
|
2347
2663
|
* <p>ID of the recovered VPC following Source Network recovery.</p>
|
|
2348
2664
|
*/
|
|
2349
2665
|
launchedVpcID?: string;
|
|
@@ -2353,10 +2669,12 @@ export interface SourceNetwork {
|
|
|
2353
2669
|
*/
|
|
2354
2670
|
export interface DescribeSourceNetworksResponse {
|
|
2355
2671
|
/**
|
|
2672
|
+
* @public
|
|
2356
2673
|
* <p>An array of Source Networks.</p>
|
|
2357
2674
|
*/
|
|
2358
2675
|
items?: SourceNetwork[];
|
|
2359
2676
|
/**
|
|
2677
|
+
* @public
|
|
2360
2678
|
* <p>The token of the next Source Networks to retrieve.</p>
|
|
2361
2679
|
*/
|
|
2362
2680
|
nextToken?: string;
|
|
@@ -2367,14 +2685,17 @@ export interface DescribeSourceNetworksResponse {
|
|
|
2367
2685
|
*/
|
|
2368
2686
|
export interface DescribeSourceServersRequestFilters {
|
|
2369
2687
|
/**
|
|
2688
|
+
* @public
|
|
2370
2689
|
* <p>An array of Source Servers IDs that should be returned. An empty array means all Source Servers.</p>
|
|
2371
2690
|
*/
|
|
2372
2691
|
sourceServerIDs?: string[];
|
|
2373
2692
|
/**
|
|
2693
|
+
* @public
|
|
2374
2694
|
* <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>
|
|
2375
2695
|
*/
|
|
2376
2696
|
hardwareId?: string;
|
|
2377
2697
|
/**
|
|
2698
|
+
* @public
|
|
2378
2699
|
* <p>An array of staging account IDs that extended source servers belong to. An empty array means all source servers will be shown.</p>
|
|
2379
2700
|
*/
|
|
2380
2701
|
stagingAccountIDs?: string[];
|
|
@@ -2384,14 +2705,17 @@ export interface DescribeSourceServersRequestFilters {
|
|
|
2384
2705
|
*/
|
|
2385
2706
|
export interface DescribeSourceServersRequest {
|
|
2386
2707
|
/**
|
|
2708
|
+
* @public
|
|
2387
2709
|
* <p>A set of filters by which to return Source Servers.</p>
|
|
2388
2710
|
*/
|
|
2389
2711
|
filters?: DescribeSourceServersRequestFilters;
|
|
2390
2712
|
/**
|
|
2713
|
+
* @public
|
|
2391
2714
|
* <p>Maximum number of Source Servers to retrieve.</p>
|
|
2392
2715
|
*/
|
|
2393
2716
|
maxResults?: number;
|
|
2394
2717
|
/**
|
|
2718
|
+
* @public
|
|
2395
2719
|
* <p>The token of the next Source Server to retrieve.</p>
|
|
2396
2720
|
*/
|
|
2397
2721
|
nextToken?: string;
|
|
@@ -2401,10 +2725,12 @@ export interface DescribeSourceServersRequest {
|
|
|
2401
2725
|
*/
|
|
2402
2726
|
export interface DescribeSourceServersResponse {
|
|
2403
2727
|
/**
|
|
2728
|
+
* @public
|
|
2404
2729
|
* <p>An array of Source Servers.</p>
|
|
2405
2730
|
*/
|
|
2406
2731
|
items?: SourceServer[];
|
|
2407
2732
|
/**
|
|
2733
|
+
* @public
|
|
2408
2734
|
* <p>The token of the next Source Server to retrieve.</p>
|
|
2409
2735
|
*/
|
|
2410
2736
|
nextToken?: string;
|
|
@@ -2414,6 +2740,7 @@ export interface DescribeSourceServersResponse {
|
|
|
2414
2740
|
*/
|
|
2415
2741
|
export interface DisconnectRecoveryInstanceRequest {
|
|
2416
2742
|
/**
|
|
2743
|
+
* @public
|
|
2417
2744
|
* <p>The ID of the Recovery Instance to disconnect.</p>
|
|
2418
2745
|
*/
|
|
2419
2746
|
recoveryInstanceID: string | undefined;
|
|
@@ -2423,6 +2750,7 @@ export interface DisconnectRecoveryInstanceRequest {
|
|
|
2423
2750
|
*/
|
|
2424
2751
|
export interface DisconnectSourceServerRequest {
|
|
2425
2752
|
/**
|
|
2753
|
+
* @public
|
|
2426
2754
|
* <p>The ID of the Source Server to disconnect.</p>
|
|
2427
2755
|
*/
|
|
2428
2756
|
sourceServerID: string | undefined;
|
|
@@ -2442,30 +2770,37 @@ export interface InitializeServiceResponse {
|
|
|
2442
2770
|
*/
|
|
2443
2771
|
export interface UpdateLaunchConfigurationTemplateRequest {
|
|
2444
2772
|
/**
|
|
2773
|
+
* @public
|
|
2445
2774
|
* <p>Launch Configuration Template ID.</p>
|
|
2446
2775
|
*/
|
|
2447
2776
|
launchConfigurationTemplateID: string | undefined;
|
|
2448
2777
|
/**
|
|
2778
|
+
* @public
|
|
2449
2779
|
* <p>Launch disposition.</p>
|
|
2450
2780
|
*/
|
|
2451
2781
|
launchDisposition?: LaunchDisposition | string;
|
|
2452
2782
|
/**
|
|
2783
|
+
* @public
|
|
2453
2784
|
* <p>Target instance type right-sizing method.</p>
|
|
2454
2785
|
*/
|
|
2455
2786
|
targetInstanceTypeRightSizingMethod?: TargetInstanceTypeRightSizingMethod | string;
|
|
2456
2787
|
/**
|
|
2788
|
+
* @public
|
|
2457
2789
|
* <p>Copy private IP.</p>
|
|
2458
2790
|
*/
|
|
2459
2791
|
copyPrivateIp?: boolean;
|
|
2460
2792
|
/**
|
|
2793
|
+
* @public
|
|
2461
2794
|
* <p>Copy tags.</p>
|
|
2462
2795
|
*/
|
|
2463
2796
|
copyTags?: boolean;
|
|
2464
2797
|
/**
|
|
2798
|
+
* @public
|
|
2465
2799
|
* <p>Licensing.</p>
|
|
2466
2800
|
*/
|
|
2467
2801
|
licensing?: Licensing;
|
|
2468
2802
|
/**
|
|
2803
|
+
* @public
|
|
2469
2804
|
* <p>S3 bucket ARN to export Source Network templates.</p>
|
|
2470
2805
|
*/
|
|
2471
2806
|
exportBucketArn?: string;
|
|
@@ -2475,6 +2810,7 @@ export interface UpdateLaunchConfigurationTemplateRequest {
|
|
|
2475
2810
|
*/
|
|
2476
2811
|
export interface UpdateLaunchConfigurationTemplateResponse {
|
|
2477
2812
|
/**
|
|
2813
|
+
* @public
|
|
2478
2814
|
* <p>Updated Launch Configuration Template.</p>
|
|
2479
2815
|
*/
|
|
2480
2816
|
launchConfigurationTemplate?: LaunchConfigurationTemplate;
|
|
@@ -2484,14 +2820,17 @@ export interface UpdateLaunchConfigurationTemplateResponse {
|
|
|
2484
2820
|
*/
|
|
2485
2821
|
export interface ListExtensibleSourceServersRequest {
|
|
2486
2822
|
/**
|
|
2823
|
+
* @public
|
|
2487
2824
|
* <p>The Id of the staging Account to retrieve extensible source servers from.</p>
|
|
2488
2825
|
*/
|
|
2489
2826
|
stagingAccountID: string | undefined;
|
|
2490
2827
|
/**
|
|
2828
|
+
* @public
|
|
2491
2829
|
* <p>The maximum number of extensible source servers to retrieve.</p>
|
|
2492
2830
|
*/
|
|
2493
2831
|
maxResults?: number;
|
|
2494
2832
|
/**
|
|
2833
|
+
* @public
|
|
2495
2834
|
* <p>The token of the next extensible source server to retrieve.</p>
|
|
2496
2835
|
*/
|
|
2497
2836
|
nextToken?: string;
|
|
@@ -2502,14 +2841,17 @@ export interface ListExtensibleSourceServersRequest {
|
|
|
2502
2841
|
*/
|
|
2503
2842
|
export interface StagingSourceServer {
|
|
2504
2843
|
/**
|
|
2844
|
+
* @public
|
|
2505
2845
|
* <p>Hostname of staging source server.</p>
|
|
2506
2846
|
*/
|
|
2507
2847
|
hostname?: string;
|
|
2508
2848
|
/**
|
|
2849
|
+
* @public
|
|
2509
2850
|
* <p>The ARN of the source server.</p>
|
|
2510
2851
|
*/
|
|
2511
2852
|
arn?: string;
|
|
2512
2853
|
/**
|
|
2854
|
+
* @public
|
|
2513
2855
|
* <p>A list of tags associated with the staging source server.</p>
|
|
2514
2856
|
*/
|
|
2515
2857
|
tags?: Record<string, string>;
|
|
@@ -2519,10 +2861,12 @@ export interface StagingSourceServer {
|
|
|
2519
2861
|
*/
|
|
2520
2862
|
export interface ListExtensibleSourceServersResponse {
|
|
2521
2863
|
/**
|
|
2864
|
+
* @public
|
|
2522
2865
|
* <p>A list of source servers on a staging Account that are extensible.</p>
|
|
2523
2866
|
*/
|
|
2524
2867
|
items?: StagingSourceServer[];
|
|
2525
2868
|
/**
|
|
2869
|
+
* @public
|
|
2526
2870
|
* <p>The token of the next extensible source server to retrieve.</p>
|
|
2527
2871
|
*/
|
|
2528
2872
|
nextToken?: string;
|
|
@@ -2532,10 +2876,12 @@ export interface ListExtensibleSourceServersResponse {
|
|
|
2532
2876
|
*/
|
|
2533
2877
|
export interface ListStagingAccountsRequest {
|
|
2534
2878
|
/**
|
|
2879
|
+
* @public
|
|
2535
2880
|
* <p>The maximum number of staging Accounts to retrieve.</p>
|
|
2536
2881
|
*/
|
|
2537
2882
|
maxResults?: number;
|
|
2538
2883
|
/**
|
|
2884
|
+
* @public
|
|
2539
2885
|
* <p>The token of the next staging Account to retrieve.</p>
|
|
2540
2886
|
*/
|
|
2541
2887
|
nextToken?: string;
|
|
@@ -2545,10 +2891,12 @@ export interface ListStagingAccountsRequest {
|
|
|
2545
2891
|
*/
|
|
2546
2892
|
export interface ListStagingAccountsResponse {
|
|
2547
2893
|
/**
|
|
2894
|
+
* @public
|
|
2548
2895
|
* <p>An array of staging AWS Accounts.</p>
|
|
2549
2896
|
*/
|
|
2550
2897
|
accounts?: Account[];
|
|
2551
2898
|
/**
|
|
2899
|
+
* @public
|
|
2552
2900
|
* <p>The token of the next staging Account to retrieve.</p>
|
|
2553
2901
|
*/
|
|
2554
2902
|
nextToken?: string;
|
|
@@ -2558,6 +2906,7 @@ export interface ListStagingAccountsResponse {
|
|
|
2558
2906
|
*/
|
|
2559
2907
|
export interface ListTagsForResourceRequest {
|
|
2560
2908
|
/**
|
|
2909
|
+
* @public
|
|
2561
2910
|
* <p>The ARN of the resource whose tags should be returned.</p>
|
|
2562
2911
|
*/
|
|
2563
2912
|
resourceArn: string | undefined;
|
|
@@ -2567,6 +2916,7 @@ export interface ListTagsForResourceRequest {
|
|
|
2567
2916
|
*/
|
|
2568
2917
|
export interface ListTagsForResourceResponse {
|
|
2569
2918
|
/**
|
|
2919
|
+
* @public
|
|
2570
2920
|
* <p>The tags of the requested resource.</p>
|
|
2571
2921
|
*/
|
|
2572
2922
|
tags?: Record<string, string>;
|
|
@@ -2576,6 +2926,7 @@ export interface ListTagsForResourceResponse {
|
|
|
2576
2926
|
*/
|
|
2577
2927
|
export interface GetFailbackReplicationConfigurationRequest {
|
|
2578
2928
|
/**
|
|
2929
|
+
* @public
|
|
2579
2930
|
* <p>The ID of the Recovery Instance whose failback replication configuration should be returned.</p>
|
|
2580
2931
|
*/
|
|
2581
2932
|
recoveryInstanceID: string | undefined;
|
|
@@ -2585,18 +2936,22 @@ export interface GetFailbackReplicationConfigurationRequest {
|
|
|
2585
2936
|
*/
|
|
2586
2937
|
export interface GetFailbackReplicationConfigurationResponse {
|
|
2587
2938
|
/**
|
|
2939
|
+
* @public
|
|
2588
2940
|
* <p>The ID of the Recovery Instance.</p>
|
|
2589
2941
|
*/
|
|
2590
2942
|
recoveryInstanceID: string | undefined;
|
|
2591
2943
|
/**
|
|
2944
|
+
* @public
|
|
2592
2945
|
* <p>The name of the Failback Replication Configuration.</p>
|
|
2593
2946
|
*/
|
|
2594
2947
|
name?: string;
|
|
2595
2948
|
/**
|
|
2949
|
+
* @public
|
|
2596
2950
|
* <p>Configure bandwidth throttling for the outbound data transfer rate of the Recovery Instance in Mbps.</p>
|
|
2597
2951
|
*/
|
|
2598
2952
|
bandwidthThrottling?: number;
|
|
2599
2953
|
/**
|
|
2954
|
+
* @public
|
|
2600
2955
|
* <p>Whether to use Private IP for the failback replication of the Recovery Instance.</p>
|
|
2601
2956
|
*/
|
|
2602
2957
|
usePrivateIP?: boolean;
|
|
@@ -2606,6 +2961,7 @@ export interface GetFailbackReplicationConfigurationResponse {
|
|
|
2606
2961
|
*/
|
|
2607
2962
|
export interface ReverseReplicationRequest {
|
|
2608
2963
|
/**
|
|
2964
|
+
* @public
|
|
2609
2965
|
* <p>The ID of the Recovery Instance that we want to reverse the replication for.</p>
|
|
2610
2966
|
*/
|
|
2611
2967
|
recoveryInstanceID: string | undefined;
|
|
@@ -2615,6 +2971,7 @@ export interface ReverseReplicationRequest {
|
|
|
2615
2971
|
*/
|
|
2616
2972
|
export interface ReverseReplicationResponse {
|
|
2617
2973
|
/**
|
|
2974
|
+
* @public
|
|
2618
2975
|
* <p>ARN of created SourceServer.</p>
|
|
2619
2976
|
*/
|
|
2620
2977
|
reversedDirectionSourceServerArn?: string;
|
|
@@ -2624,10 +2981,12 @@ export interface ReverseReplicationResponse {
|
|
|
2624
2981
|
*/
|
|
2625
2982
|
export interface StartFailbackLaunchRequest {
|
|
2626
2983
|
/**
|
|
2984
|
+
* @public
|
|
2627
2985
|
* <p>The IDs of the Recovery Instance whose failback launch we want to request.</p>
|
|
2628
2986
|
*/
|
|
2629
2987
|
recoveryInstanceIDs: string[] | undefined;
|
|
2630
2988
|
/**
|
|
2989
|
+
* @public
|
|
2631
2990
|
* <p>The tags to be associated with the failback launch Job.</p>
|
|
2632
2991
|
*/
|
|
2633
2992
|
tags?: Record<string, string>;
|
|
@@ -2637,6 +2996,7 @@ export interface StartFailbackLaunchRequest {
|
|
|
2637
2996
|
*/
|
|
2638
2997
|
export interface StartFailbackLaunchResponse {
|
|
2639
2998
|
/**
|
|
2999
|
+
* @public
|
|
2640
3000
|
* <p>The failback launch Job.</p>
|
|
2641
3001
|
*/
|
|
2642
3002
|
job?: Job;
|
|
@@ -2646,6 +3006,7 @@ export interface StartFailbackLaunchResponse {
|
|
|
2646
3006
|
*/
|
|
2647
3007
|
export interface StopFailbackRequest {
|
|
2648
3008
|
/**
|
|
3009
|
+
* @public
|
|
2649
3010
|
* <p>The ID of the Recovery Instance we want to stop failback for.</p>
|
|
2650
3011
|
*/
|
|
2651
3012
|
recoveryInstanceID: string | undefined;
|
|
@@ -2655,6 +3016,7 @@ export interface StopFailbackRequest {
|
|
|
2655
3016
|
*/
|
|
2656
3017
|
export interface TerminateRecoveryInstancesRequest {
|
|
2657
3018
|
/**
|
|
3019
|
+
* @public
|
|
2658
3020
|
* <p>The IDs of the Recovery Instances that should be terminated.</p>
|
|
2659
3021
|
*/
|
|
2660
3022
|
recoveryInstanceIDs: string[] | undefined;
|
|
@@ -2664,6 +3026,7 @@ export interface TerminateRecoveryInstancesRequest {
|
|
|
2664
3026
|
*/
|
|
2665
3027
|
export interface TerminateRecoveryInstancesResponse {
|
|
2666
3028
|
/**
|
|
3029
|
+
* @public
|
|
2667
3030
|
* <p>The Job for terminating the Recovery Instances.</p>
|
|
2668
3031
|
*/
|
|
2669
3032
|
job?: Job;
|
|
@@ -2673,18 +3036,22 @@ export interface TerminateRecoveryInstancesResponse {
|
|
|
2673
3036
|
*/
|
|
2674
3037
|
export interface UpdateFailbackReplicationConfigurationRequest {
|
|
2675
3038
|
/**
|
|
3039
|
+
* @public
|
|
2676
3040
|
* <p>The ID of the Recovery Instance.</p>
|
|
2677
3041
|
*/
|
|
2678
3042
|
recoveryInstanceID: string | undefined;
|
|
2679
3043
|
/**
|
|
3044
|
+
* @public
|
|
2680
3045
|
* <p>The name of the Failback Replication Configuration.</p>
|
|
2681
3046
|
*/
|
|
2682
3047
|
name?: string;
|
|
2683
3048
|
/**
|
|
3049
|
+
* @public
|
|
2684
3050
|
* <p>Configure bandwidth throttling for the outbound data transfer rate of the Recovery Instance in Mbps.</p>
|
|
2685
3051
|
*/
|
|
2686
3052
|
bandwidthThrottling?: number;
|
|
2687
3053
|
/**
|
|
3054
|
+
* @public
|
|
2688
3055
|
* <p>Whether to use Private IP for the failback replication of the Recovery Instance.</p>
|
|
2689
3056
|
*/
|
|
2690
3057
|
usePrivateIP?: boolean;
|
|
@@ -2694,66 +3061,82 @@ export interface UpdateFailbackReplicationConfigurationRequest {
|
|
|
2694
3061
|
*/
|
|
2695
3062
|
export interface UpdateReplicationConfigurationTemplateRequest {
|
|
2696
3063
|
/**
|
|
3064
|
+
* @public
|
|
2697
3065
|
* <p>The Replication Configuration Template ID.</p>
|
|
2698
3066
|
*/
|
|
2699
3067
|
replicationConfigurationTemplateID: string | undefined;
|
|
2700
3068
|
/**
|
|
3069
|
+
* @public
|
|
2701
3070
|
* <p>The Replication Configuration Template ARN.</p>
|
|
2702
3071
|
*/
|
|
2703
3072
|
arn?: string;
|
|
2704
3073
|
/**
|
|
3074
|
+
* @public
|
|
2705
3075
|
* <p>The subnet to be used by the replication staging area.</p>
|
|
2706
3076
|
*/
|
|
2707
3077
|
stagingAreaSubnetId?: string;
|
|
2708
3078
|
/**
|
|
3079
|
+
* @public
|
|
2709
3080
|
* <p>Whether to associate the default Elastic Disaster Recovery Security group with the Replication Configuration Template.</p>
|
|
2710
3081
|
*/
|
|
2711
3082
|
associateDefaultSecurityGroup?: boolean;
|
|
2712
3083
|
/**
|
|
3084
|
+
* @public
|
|
2713
3085
|
* <p>The security group IDs that will be used by the replication server.</p>
|
|
2714
3086
|
*/
|
|
2715
3087
|
replicationServersSecurityGroupsIDs?: string[];
|
|
2716
3088
|
/**
|
|
3089
|
+
* @public
|
|
2717
3090
|
* <p>The instance type to be used for the replication server.</p>
|
|
2718
3091
|
*/
|
|
2719
3092
|
replicationServerInstanceType?: string;
|
|
2720
3093
|
/**
|
|
3094
|
+
* @public
|
|
2721
3095
|
* <p>Whether to use a dedicated Replication Server in the replication staging area.</p>
|
|
2722
3096
|
*/
|
|
2723
3097
|
useDedicatedReplicationServer?: boolean;
|
|
2724
3098
|
/**
|
|
3099
|
+
* @public
|
|
2725
3100
|
* <p>The Staging Disk EBS volume type to be used during replication.</p>
|
|
2726
3101
|
*/
|
|
2727
3102
|
defaultLargeStagingDiskType?: ReplicationConfigurationDefaultLargeStagingDiskType | string;
|
|
2728
3103
|
/**
|
|
3104
|
+
* @public
|
|
2729
3105
|
* <p>The type of EBS encryption to be used during replication.</p>
|
|
2730
3106
|
*/
|
|
2731
3107
|
ebsEncryption?: ReplicationConfigurationEbsEncryption | string;
|
|
2732
3108
|
/**
|
|
3109
|
+
* @public
|
|
2733
3110
|
* <p>The ARN of the EBS encryption key to be used during replication.</p>
|
|
2734
3111
|
*/
|
|
2735
3112
|
ebsEncryptionKeyArn?: string;
|
|
2736
3113
|
/**
|
|
3114
|
+
* @public
|
|
2737
3115
|
* <p>Configure bandwidth throttling for the outbound data transfer rate of the Source Server in Mbps.</p>
|
|
2738
3116
|
*/
|
|
2739
3117
|
bandwidthThrottling?: number;
|
|
2740
3118
|
/**
|
|
3119
|
+
* @public
|
|
2741
3120
|
* <p>The data plane routing mechanism that will be used for replication.</p>
|
|
2742
3121
|
*/
|
|
2743
3122
|
dataPlaneRouting?: ReplicationConfigurationDataPlaneRouting | string;
|
|
2744
3123
|
/**
|
|
3124
|
+
* @public
|
|
2745
3125
|
* <p>Whether to create a Public IP for the Recovery Instance by default.</p>
|
|
2746
3126
|
*/
|
|
2747
3127
|
createPublicIP?: boolean;
|
|
2748
3128
|
/**
|
|
3129
|
+
* @public
|
|
2749
3130
|
* <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>
|
|
2750
3131
|
*/
|
|
2751
3132
|
stagingAreaTags?: Record<string, string>;
|
|
2752
3133
|
/**
|
|
3134
|
+
* @public
|
|
2753
3135
|
* <p>The Point in time (PIT) policy to manage snapshots taken during replication.</p>
|
|
2754
3136
|
*/
|
|
2755
3137
|
pitPolicy?: PITPolicyRule[];
|
|
2756
3138
|
/**
|
|
3139
|
+
* @public
|
|
2757
3140
|
* <p>Whether to allow the AWS replication agent to automatically replicate newly added disks.</p>
|
|
2758
3141
|
*/
|
|
2759
3142
|
autoReplicateNewDisks?: boolean;
|
|
@@ -2763,6 +3146,7 @@ export interface UpdateReplicationConfigurationTemplateRequest {
|
|
|
2763
3146
|
*/
|
|
2764
3147
|
export interface ExportSourceNetworkCfnTemplateRequest {
|
|
2765
3148
|
/**
|
|
3149
|
+
* @public
|
|
2766
3150
|
* <p>The Source Network ID to export its CloudFormation template to an S3 bucket.</p>
|
|
2767
3151
|
*/
|
|
2768
3152
|
sourceNetworkID: string | undefined;
|
|
@@ -2772,6 +3156,7 @@ export interface ExportSourceNetworkCfnTemplateRequest {
|
|
|
2772
3156
|
*/
|
|
2773
3157
|
export interface ExportSourceNetworkCfnTemplateResponse {
|
|
2774
3158
|
/**
|
|
3159
|
+
* @public
|
|
2775
3160
|
* <p>S3 bucket URL where the Source Network CloudFormation template was exported to.</p>
|
|
2776
3161
|
*/
|
|
2777
3162
|
s3DestinationUrl?: string;
|
|
@@ -2782,10 +3167,12 @@ export interface ExportSourceNetworkCfnTemplateResponse {
|
|
|
2782
3167
|
*/
|
|
2783
3168
|
export interface StartSourceNetworkRecoveryRequestNetworkEntry {
|
|
2784
3169
|
/**
|
|
3170
|
+
* @public
|
|
2785
3171
|
* <p>The ID of the Source Network you want to recover.</p>
|
|
2786
3172
|
*/
|
|
2787
3173
|
sourceNetworkID: string | undefined;
|
|
2788
3174
|
/**
|
|
3175
|
+
* @public
|
|
2789
3176
|
* <p>CloudFormation stack name to be used for recovering the network.</p>
|
|
2790
3177
|
*/
|
|
2791
3178
|
cfnStackName?: string;
|
|
@@ -2795,14 +3182,17 @@ export interface StartSourceNetworkRecoveryRequestNetworkEntry {
|
|
|
2795
3182
|
*/
|
|
2796
3183
|
export interface StartSourceNetworkRecoveryRequest {
|
|
2797
3184
|
/**
|
|
3185
|
+
* @public
|
|
2798
3186
|
* <p>The Source Networks that we want to start a Recovery Job for.</p>
|
|
2799
3187
|
*/
|
|
2800
3188
|
sourceNetworks: StartSourceNetworkRecoveryRequestNetworkEntry[] | undefined;
|
|
2801
3189
|
/**
|
|
3190
|
+
* @public
|
|
2802
3191
|
* <p>Don't update existing CloudFormation Stack, recover the network using a new stack.</p>
|
|
2803
3192
|
*/
|
|
2804
3193
|
deployAsNew?: boolean;
|
|
2805
3194
|
/**
|
|
3195
|
+
* @public
|
|
2806
3196
|
* <p>The tags to be associated with the Source Network recovery Job.</p>
|
|
2807
3197
|
*/
|
|
2808
3198
|
tags?: Record<string, string>;
|
|
@@ -2812,6 +3202,7 @@ export interface StartSourceNetworkRecoveryRequest {
|
|
|
2812
3202
|
*/
|
|
2813
3203
|
export interface StartSourceNetworkRecoveryResponse {
|
|
2814
3204
|
/**
|
|
3205
|
+
* @public
|
|
2815
3206
|
* <p>The Source Network recovery Job.</p>
|
|
2816
3207
|
*/
|
|
2817
3208
|
job?: Job;
|
|
@@ -2821,6 +3212,7 @@ export interface StartSourceNetworkRecoveryResponse {
|
|
|
2821
3212
|
*/
|
|
2822
3213
|
export interface StartSourceNetworkReplicationRequest {
|
|
2823
3214
|
/**
|
|
3215
|
+
* @public
|
|
2824
3216
|
* <p>ID of the Source Network to replicate.</p>
|
|
2825
3217
|
*/
|
|
2826
3218
|
sourceNetworkID: string | undefined;
|
|
@@ -2830,6 +3222,7 @@ export interface StartSourceNetworkReplicationRequest {
|
|
|
2830
3222
|
*/
|
|
2831
3223
|
export interface StartSourceNetworkReplicationResponse {
|
|
2832
3224
|
/**
|
|
3225
|
+
* @public
|
|
2833
3226
|
* <p>Source Network which was requested for replication.</p>
|
|
2834
3227
|
*/
|
|
2835
3228
|
sourceNetwork?: SourceNetwork;
|
|
@@ -2839,6 +3232,7 @@ export interface StartSourceNetworkReplicationResponse {
|
|
|
2839
3232
|
*/
|
|
2840
3233
|
export interface StopSourceNetworkReplicationRequest {
|
|
2841
3234
|
/**
|
|
3235
|
+
* @public
|
|
2842
3236
|
* <p>ID of the Source Network to stop replication.</p>
|
|
2843
3237
|
*/
|
|
2844
3238
|
sourceNetworkID: string | undefined;
|
|
@@ -2848,6 +3242,7 @@ export interface StopSourceNetworkReplicationRequest {
|
|
|
2848
3242
|
*/
|
|
2849
3243
|
export interface StopSourceNetworkReplicationResponse {
|
|
2850
3244
|
/**
|
|
3245
|
+
* @public
|
|
2851
3246
|
* <p>Source Network which was requested to stop replication.</p>
|
|
2852
3247
|
*/
|
|
2853
3248
|
sourceNetwork?: SourceNetwork;
|
|
@@ -2857,6 +3252,7 @@ export interface StopSourceNetworkReplicationResponse {
|
|
|
2857
3252
|
*/
|
|
2858
3253
|
export interface GetLaunchConfigurationRequest {
|
|
2859
3254
|
/**
|
|
3255
|
+
* @public
|
|
2860
3256
|
* <p>The ID of the Source Server that we want to retrieve a Launch Configuration for.</p>
|
|
2861
3257
|
*/
|
|
2862
3258
|
sourceServerID: string | undefined;
|
|
@@ -2866,34 +3262,42 @@ export interface GetLaunchConfigurationRequest {
|
|
|
2866
3262
|
*/
|
|
2867
3263
|
export interface LaunchConfiguration {
|
|
2868
3264
|
/**
|
|
3265
|
+
* @public
|
|
2869
3266
|
* <p>The ID of the Source Server for this launch configuration.</p>
|
|
2870
3267
|
*/
|
|
2871
3268
|
sourceServerID?: string;
|
|
2872
3269
|
/**
|
|
3270
|
+
* @public
|
|
2873
3271
|
* <p>The name of the launch configuration.</p>
|
|
2874
3272
|
*/
|
|
2875
3273
|
name?: string;
|
|
2876
3274
|
/**
|
|
3275
|
+
* @public
|
|
2877
3276
|
* <p>The EC2 launch template ID of this launch configuration.</p>
|
|
2878
3277
|
*/
|
|
2879
3278
|
ec2LaunchTemplateID?: string;
|
|
2880
3279
|
/**
|
|
3280
|
+
* @public
|
|
2881
3281
|
* <p>The state of the Recovery Instance in EC2 after the recovery operation.</p>
|
|
2882
3282
|
*/
|
|
2883
3283
|
launchDisposition?: LaunchDisposition | string;
|
|
2884
3284
|
/**
|
|
3285
|
+
* @public
|
|
2885
3286
|
* <p>Whether Elastic Disaster Recovery should try to automatically choose the instance type that best matches the OS, CPU, and RAM of your Source Server.</p>
|
|
2886
3287
|
*/
|
|
2887
3288
|
targetInstanceTypeRightSizingMethod?: TargetInstanceTypeRightSizingMethod | string;
|
|
2888
3289
|
/**
|
|
3290
|
+
* @public
|
|
2889
3291
|
* <p>Whether we should copy the Private IP of the Source Server to the Recovery Instance.</p>
|
|
2890
3292
|
*/
|
|
2891
3293
|
copyPrivateIp?: boolean;
|
|
2892
3294
|
/**
|
|
3295
|
+
* @public
|
|
2893
3296
|
* <p>Whether we want to copy the tags of the Source Server to the EC2 machine of the Recovery Instance.</p>
|
|
2894
3297
|
*/
|
|
2895
3298
|
copyTags?: boolean;
|
|
2896
3299
|
/**
|
|
3300
|
+
* @public
|
|
2897
3301
|
* <p>The licensing configuration to be used for this launch configuration.</p>
|
|
2898
3302
|
*/
|
|
2899
3303
|
licensing?: Licensing;
|
|
@@ -2903,6 +3307,7 @@ export interface LaunchConfiguration {
|
|
|
2903
3307
|
*/
|
|
2904
3308
|
export interface GetReplicationConfigurationRequest {
|
|
2905
3309
|
/**
|
|
3310
|
+
* @public
|
|
2906
3311
|
* <p>The ID of the Source Serve for this Replication Configuration.r</p>
|
|
2907
3312
|
*/
|
|
2908
3313
|
sourceServerID: string | undefined;
|
|
@@ -2930,26 +3335,32 @@ export type ReplicationConfigurationReplicatedDiskStagingDiskType = (typeof Repl
|
|
|
2930
3335
|
*/
|
|
2931
3336
|
export interface ReplicationConfigurationReplicatedDisk {
|
|
2932
3337
|
/**
|
|
3338
|
+
* @public
|
|
2933
3339
|
* <p>The name of the device.</p>
|
|
2934
3340
|
*/
|
|
2935
3341
|
deviceName?: string;
|
|
2936
3342
|
/**
|
|
3343
|
+
* @public
|
|
2937
3344
|
* <p>Whether to boot from this disk or not.</p>
|
|
2938
3345
|
*/
|
|
2939
3346
|
isBootDisk?: boolean;
|
|
2940
3347
|
/**
|
|
3348
|
+
* @public
|
|
2941
3349
|
* <p>The Staging Disk EBS volume type to be used during replication.</p>
|
|
2942
3350
|
*/
|
|
2943
3351
|
stagingDiskType?: ReplicationConfigurationReplicatedDiskStagingDiskType | string;
|
|
2944
3352
|
/**
|
|
3353
|
+
* @public
|
|
2945
3354
|
* <p>The requested number of I/O operations per second (IOPS).</p>
|
|
2946
3355
|
*/
|
|
2947
3356
|
iops?: number;
|
|
2948
3357
|
/**
|
|
3358
|
+
* @public
|
|
2949
3359
|
* <p>The throughput to use for the EBS volume in MiB/s. This parameter is valid only for gp3 volumes.</p>
|
|
2950
3360
|
*/
|
|
2951
3361
|
throughput?: number;
|
|
2952
3362
|
/**
|
|
3363
|
+
* @public
|
|
2953
3364
|
* <p>The Staging Disk EBS volume type to be used during replication when <code>stagingDiskType</code> is set to Auto. This is a read-only field.</p>
|
|
2954
3365
|
*/
|
|
2955
3366
|
optimizedStagingDiskType?: ReplicationConfigurationReplicatedDiskStagingDiskType | string;
|
|
@@ -2959,70 +3370,87 @@ export interface ReplicationConfigurationReplicatedDisk {
|
|
|
2959
3370
|
*/
|
|
2960
3371
|
export interface ReplicationConfiguration {
|
|
2961
3372
|
/**
|
|
3373
|
+
* @public
|
|
2962
3374
|
* <p>The ID of the Source Server for this Replication Configuration.</p>
|
|
2963
3375
|
*/
|
|
2964
3376
|
sourceServerID?: string;
|
|
2965
3377
|
/**
|
|
3378
|
+
* @public
|
|
2966
3379
|
* <p>The name of the Replication Configuration.</p>
|
|
2967
3380
|
*/
|
|
2968
3381
|
name?: string;
|
|
2969
3382
|
/**
|
|
3383
|
+
* @public
|
|
2970
3384
|
* <p>The subnet to be used by the replication staging area.</p>
|
|
2971
3385
|
*/
|
|
2972
3386
|
stagingAreaSubnetId?: string;
|
|
2973
3387
|
/**
|
|
3388
|
+
* @public
|
|
2974
3389
|
* <p>Whether to associate the default Elastic Disaster Recovery Security group with the Replication Configuration.</p>
|
|
2975
3390
|
*/
|
|
2976
3391
|
associateDefaultSecurityGroup?: boolean;
|
|
2977
3392
|
/**
|
|
3393
|
+
* @public
|
|
2978
3394
|
* <p>The security group IDs that will be used by the replication server.</p>
|
|
2979
3395
|
*/
|
|
2980
3396
|
replicationServersSecurityGroupsIDs?: string[];
|
|
2981
3397
|
/**
|
|
3398
|
+
* @public
|
|
2982
3399
|
* <p>The instance type to be used for the replication server.</p>
|
|
2983
3400
|
*/
|
|
2984
3401
|
replicationServerInstanceType?: string;
|
|
2985
3402
|
/**
|
|
3403
|
+
* @public
|
|
2986
3404
|
* <p>Whether to use a dedicated Replication Server in the replication staging area.</p>
|
|
2987
3405
|
*/
|
|
2988
3406
|
useDedicatedReplicationServer?: boolean;
|
|
2989
3407
|
/**
|
|
3408
|
+
* @public
|
|
2990
3409
|
* <p>The Staging Disk EBS volume type to be used during replication.</p>
|
|
2991
3410
|
*/
|
|
2992
3411
|
defaultLargeStagingDiskType?: ReplicationConfigurationDefaultLargeStagingDiskType | string;
|
|
2993
3412
|
/**
|
|
3413
|
+
* @public
|
|
2994
3414
|
* <p>The configuration of the disks of the Source Server to be replicated.</p>
|
|
2995
3415
|
*/
|
|
2996
3416
|
replicatedDisks?: ReplicationConfigurationReplicatedDisk[];
|
|
2997
3417
|
/**
|
|
3418
|
+
* @public
|
|
2998
3419
|
* <p>The type of EBS encryption to be used during replication.</p>
|
|
2999
3420
|
*/
|
|
3000
3421
|
ebsEncryption?: ReplicationConfigurationEbsEncryption | string;
|
|
3001
3422
|
/**
|
|
3423
|
+
* @public
|
|
3002
3424
|
* <p>The ARN of the EBS encryption key to be used during replication.</p>
|
|
3003
3425
|
*/
|
|
3004
3426
|
ebsEncryptionKeyArn?: string;
|
|
3005
3427
|
/**
|
|
3428
|
+
* @public
|
|
3006
3429
|
* <p>Configure bandwidth throttling for the outbound data transfer rate of the Source Server in Mbps.</p>
|
|
3007
3430
|
*/
|
|
3008
3431
|
bandwidthThrottling?: number;
|
|
3009
3432
|
/**
|
|
3433
|
+
* @public
|
|
3010
3434
|
* <p>The data plane routing mechanism that will be used for replication.</p>
|
|
3011
3435
|
*/
|
|
3012
3436
|
dataPlaneRouting?: ReplicationConfigurationDataPlaneRouting | string;
|
|
3013
3437
|
/**
|
|
3438
|
+
* @public
|
|
3014
3439
|
* <p>Whether to create a Public IP for the Recovery Instance by default.</p>
|
|
3015
3440
|
*/
|
|
3016
3441
|
createPublicIP?: boolean;
|
|
3017
3442
|
/**
|
|
3443
|
+
* @public
|
|
3018
3444
|
* <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>
|
|
3019
3445
|
*/
|
|
3020
3446
|
stagingAreaTags?: Record<string, string>;
|
|
3021
3447
|
/**
|
|
3448
|
+
* @public
|
|
3022
3449
|
* <p>The Point in time (PIT) policy to manage snapshots taken during replication.</p>
|
|
3023
3450
|
*/
|
|
3024
3451
|
pitPolicy?: PITPolicyRule[];
|
|
3025
3452
|
/**
|
|
3453
|
+
* @public
|
|
3026
3454
|
* <p>Whether to allow the AWS replication agent to automatically replicate newly added disks.</p>
|
|
3027
3455
|
*/
|
|
3028
3456
|
autoReplicateNewDisks?: boolean;
|
|
@@ -3032,6 +3460,7 @@ export interface ReplicationConfiguration {
|
|
|
3032
3460
|
*/
|
|
3033
3461
|
export interface RetryDataReplicationRequest {
|
|
3034
3462
|
/**
|
|
3463
|
+
* @public
|
|
3035
3464
|
* <p>The ID of the Source Server whose data replication should be retried.</p>
|
|
3036
3465
|
*/
|
|
3037
3466
|
sourceServerID: string | undefined;
|
|
@@ -3042,10 +3471,12 @@ export interface RetryDataReplicationRequest {
|
|
|
3042
3471
|
*/
|
|
3043
3472
|
export interface StartRecoveryRequestSourceServer {
|
|
3044
3473
|
/**
|
|
3474
|
+
* @public
|
|
3045
3475
|
* <p>The ID of the Source Server you want to recover.</p>
|
|
3046
3476
|
*/
|
|
3047
3477
|
sourceServerID: string | undefined;
|
|
3048
3478
|
/**
|
|
3479
|
+
* @public
|
|
3049
3480
|
* <p>The ID of a Recovery Snapshot we want to recover from. Omit this field to launch from the latest data by taking an on-demand snapshot.</p>
|
|
3050
3481
|
*/
|
|
3051
3482
|
recoverySnapshotID?: string;
|
|
@@ -3055,14 +3486,17 @@ export interface StartRecoveryRequestSourceServer {
|
|
|
3055
3486
|
*/
|
|
3056
3487
|
export interface StartRecoveryRequest {
|
|
3057
3488
|
/**
|
|
3489
|
+
* @public
|
|
3058
3490
|
* <p>The Source Servers that we want to start a Recovery Job for.</p>
|
|
3059
3491
|
*/
|
|
3060
3492
|
sourceServers: StartRecoveryRequestSourceServer[] | undefined;
|
|
3061
3493
|
/**
|
|
3494
|
+
* @public
|
|
3062
3495
|
* <p>Whether this Source Server Recovery operation is a drill or not.</p>
|
|
3063
3496
|
*/
|
|
3064
3497
|
isDrill?: boolean;
|
|
3065
3498
|
/**
|
|
3499
|
+
* @public
|
|
3066
3500
|
* <p>The tags to be associated with the Recovery Job.</p>
|
|
3067
3501
|
*/
|
|
3068
3502
|
tags?: Record<string, string>;
|
|
@@ -3072,6 +3506,7 @@ export interface StartRecoveryRequest {
|
|
|
3072
3506
|
*/
|
|
3073
3507
|
export interface StartRecoveryResponse {
|
|
3074
3508
|
/**
|
|
3509
|
+
* @public
|
|
3075
3510
|
* <p>The Recovery Job.</p>
|
|
3076
3511
|
*/
|
|
3077
3512
|
job?: Job;
|
|
@@ -3081,6 +3516,7 @@ export interface StartRecoveryResponse {
|
|
|
3081
3516
|
*/
|
|
3082
3517
|
export interface StartReplicationRequest {
|
|
3083
3518
|
/**
|
|
3519
|
+
* @public
|
|
3084
3520
|
* <p>The ID of the Source Server to start replication for.</p>
|
|
3085
3521
|
*/
|
|
3086
3522
|
sourceServerID: string | undefined;
|
|
@@ -3090,6 +3526,7 @@ export interface StartReplicationRequest {
|
|
|
3090
3526
|
*/
|
|
3091
3527
|
export interface StartReplicationResponse {
|
|
3092
3528
|
/**
|
|
3529
|
+
* @public
|
|
3093
3530
|
* <p>The Source Server that this action was targeted on.</p>
|
|
3094
3531
|
*/
|
|
3095
3532
|
sourceServer?: SourceServer;
|
|
@@ -3099,6 +3536,7 @@ export interface StartReplicationResponse {
|
|
|
3099
3536
|
*/
|
|
3100
3537
|
export interface StopReplicationRequest {
|
|
3101
3538
|
/**
|
|
3539
|
+
* @public
|
|
3102
3540
|
* <p>The ID of the Source Server to stop replication for.</p>
|
|
3103
3541
|
*/
|
|
3104
3542
|
sourceServerID: string | undefined;
|
|
@@ -3108,6 +3546,7 @@ export interface StopReplicationRequest {
|
|
|
3108
3546
|
*/
|
|
3109
3547
|
export interface StopReplicationResponse {
|
|
3110
3548
|
/**
|
|
3549
|
+
* @public
|
|
3111
3550
|
* <p>The Source Server that this action was targeted on.</p>
|
|
3112
3551
|
*/
|
|
3113
3552
|
sourceServer?: SourceServer;
|
|
@@ -3117,30 +3556,37 @@ export interface StopReplicationResponse {
|
|
|
3117
3556
|
*/
|
|
3118
3557
|
export interface UpdateLaunchConfigurationRequest {
|
|
3119
3558
|
/**
|
|
3559
|
+
* @public
|
|
3120
3560
|
* <p>The ID of the Source Server that we want to retrieve a Launch Configuration for.</p>
|
|
3121
3561
|
*/
|
|
3122
3562
|
sourceServerID: string | undefined;
|
|
3123
3563
|
/**
|
|
3564
|
+
* @public
|
|
3124
3565
|
* <p>The name of the launch configuration.</p>
|
|
3125
3566
|
*/
|
|
3126
3567
|
name?: string;
|
|
3127
3568
|
/**
|
|
3569
|
+
* @public
|
|
3128
3570
|
* <p>The state of the Recovery Instance in EC2 after the recovery operation.</p>
|
|
3129
3571
|
*/
|
|
3130
3572
|
launchDisposition?: LaunchDisposition | string;
|
|
3131
3573
|
/**
|
|
3574
|
+
* @public
|
|
3132
3575
|
* <p>Whether Elastic Disaster Recovery should try to automatically choose the instance type that best matches the OS, CPU, and RAM of your Source Server.</p>
|
|
3133
3576
|
*/
|
|
3134
3577
|
targetInstanceTypeRightSizingMethod?: TargetInstanceTypeRightSizingMethod | string;
|
|
3135
3578
|
/**
|
|
3579
|
+
* @public
|
|
3136
3580
|
* <p>Whether we should copy the Private IP of the Source Server to the Recovery Instance.</p>
|
|
3137
3581
|
*/
|
|
3138
3582
|
copyPrivateIp?: boolean;
|
|
3139
3583
|
/**
|
|
3584
|
+
* @public
|
|
3140
3585
|
* <p>Whether we want to copy the tags of the Source Server to the EC2 machine of the Recovery Instance.</p>
|
|
3141
3586
|
*/
|
|
3142
3587
|
copyTags?: boolean;
|
|
3143
3588
|
/**
|
|
3589
|
+
* @public
|
|
3144
3590
|
* <p>The licensing configuration to be used for this launch configuration.</p>
|
|
3145
3591
|
*/
|
|
3146
3592
|
licensing?: Licensing;
|
|
@@ -3150,70 +3596,87 @@ export interface UpdateLaunchConfigurationRequest {
|
|
|
3150
3596
|
*/
|
|
3151
3597
|
export interface UpdateReplicationConfigurationRequest {
|
|
3152
3598
|
/**
|
|
3599
|
+
* @public
|
|
3153
3600
|
* <p>The ID of the Source Server for this Replication Configuration.</p>
|
|
3154
3601
|
*/
|
|
3155
3602
|
sourceServerID: string | undefined;
|
|
3156
3603
|
/**
|
|
3604
|
+
* @public
|
|
3157
3605
|
* <p>The name of the Replication Configuration.</p>
|
|
3158
3606
|
*/
|
|
3159
3607
|
name?: string;
|
|
3160
3608
|
/**
|
|
3609
|
+
* @public
|
|
3161
3610
|
* <p>The subnet to be used by the replication staging area.</p>
|
|
3162
3611
|
*/
|
|
3163
3612
|
stagingAreaSubnetId?: string;
|
|
3164
3613
|
/**
|
|
3614
|
+
* @public
|
|
3165
3615
|
* <p>Whether to associate the default Elastic Disaster Recovery Security group with the Replication Configuration.</p>
|
|
3166
3616
|
*/
|
|
3167
3617
|
associateDefaultSecurityGroup?: boolean;
|
|
3168
3618
|
/**
|
|
3619
|
+
* @public
|
|
3169
3620
|
* <p>The security group IDs that will be used by the replication server.</p>
|
|
3170
3621
|
*/
|
|
3171
3622
|
replicationServersSecurityGroupsIDs?: string[];
|
|
3172
3623
|
/**
|
|
3624
|
+
* @public
|
|
3173
3625
|
* <p>The instance type to be used for the replication server.</p>
|
|
3174
3626
|
*/
|
|
3175
3627
|
replicationServerInstanceType?: string;
|
|
3176
3628
|
/**
|
|
3629
|
+
* @public
|
|
3177
3630
|
* <p>Whether to use a dedicated Replication Server in the replication staging area.</p>
|
|
3178
3631
|
*/
|
|
3179
3632
|
useDedicatedReplicationServer?: boolean;
|
|
3180
3633
|
/**
|
|
3634
|
+
* @public
|
|
3181
3635
|
* <p>The Staging Disk EBS volume type to be used during replication.</p>
|
|
3182
3636
|
*/
|
|
3183
3637
|
defaultLargeStagingDiskType?: ReplicationConfigurationDefaultLargeStagingDiskType | string;
|
|
3184
3638
|
/**
|
|
3639
|
+
* @public
|
|
3185
3640
|
* <p>The configuration of the disks of the Source Server to be replicated.</p>
|
|
3186
3641
|
*/
|
|
3187
3642
|
replicatedDisks?: ReplicationConfigurationReplicatedDisk[];
|
|
3188
3643
|
/**
|
|
3644
|
+
* @public
|
|
3189
3645
|
* <p>The type of EBS encryption to be used during replication.</p>
|
|
3190
3646
|
*/
|
|
3191
3647
|
ebsEncryption?: ReplicationConfigurationEbsEncryption | string;
|
|
3192
3648
|
/**
|
|
3649
|
+
* @public
|
|
3193
3650
|
* <p>The ARN of the EBS encryption key to be used during replication.</p>
|
|
3194
3651
|
*/
|
|
3195
3652
|
ebsEncryptionKeyArn?: string;
|
|
3196
3653
|
/**
|
|
3654
|
+
* @public
|
|
3197
3655
|
* <p>Configure bandwidth throttling for the outbound data transfer rate of the Source Server in Mbps.</p>
|
|
3198
3656
|
*/
|
|
3199
3657
|
bandwidthThrottling?: number;
|
|
3200
3658
|
/**
|
|
3659
|
+
* @public
|
|
3201
3660
|
* <p>The data plane routing mechanism that will be used for replication.</p>
|
|
3202
3661
|
*/
|
|
3203
3662
|
dataPlaneRouting?: ReplicationConfigurationDataPlaneRouting | string;
|
|
3204
3663
|
/**
|
|
3664
|
+
* @public
|
|
3205
3665
|
* <p>Whether to create a Public IP for the Recovery Instance by default.</p>
|
|
3206
3666
|
*/
|
|
3207
3667
|
createPublicIP?: boolean;
|
|
3208
3668
|
/**
|
|
3669
|
+
* @public
|
|
3209
3670
|
* <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>
|
|
3210
3671
|
*/
|
|
3211
3672
|
stagingAreaTags?: Record<string, string>;
|
|
3212
3673
|
/**
|
|
3674
|
+
* @public
|
|
3213
3675
|
* <p>The Point in time (PIT) policy to manage snapshots taken during replication.</p>
|
|
3214
3676
|
*/
|
|
3215
3677
|
pitPolicy?: PITPolicyRule[];
|
|
3216
3678
|
/**
|
|
3679
|
+
* @public
|
|
3217
3680
|
* <p>Whether to allow the AWS replication agent to automatically replicate newly added disks.</p>
|
|
3218
3681
|
*/
|
|
3219
3682
|
autoReplicateNewDisks?: boolean;
|
|
@@ -3223,10 +3686,12 @@ export interface UpdateReplicationConfigurationRequest {
|
|
|
3223
3686
|
*/
|
|
3224
3687
|
export interface TagResourceRequest {
|
|
3225
3688
|
/**
|
|
3689
|
+
* @public
|
|
3226
3690
|
* <p>ARN of the resource for which tags are to be added or updated.</p>
|
|
3227
3691
|
*/
|
|
3228
3692
|
resourceArn: string | undefined;
|
|
3229
3693
|
/**
|
|
3694
|
+
* @public
|
|
3230
3695
|
* <p>Array of tags to be added or updated.</p>
|
|
3231
3696
|
*/
|
|
3232
3697
|
tags: Record<string, string> | undefined;
|
|
@@ -3236,10 +3701,12 @@ export interface TagResourceRequest {
|
|
|
3236
3701
|
*/
|
|
3237
3702
|
export interface UntagResourceRequest {
|
|
3238
3703
|
/**
|
|
3704
|
+
* @public
|
|
3239
3705
|
* <p>ARN of the resource for which tags are to be removed.</p>
|
|
3240
3706
|
*/
|
|
3241
3707
|
resourceArn: string | undefined;
|
|
3242
3708
|
/**
|
|
3709
|
+
* @public
|
|
3243
3710
|
* <p>Array of tags to be removed.</p>
|
|
3244
3711
|
*/
|
|
3245
3712
|
tagKeys: string[] | undefined;
|