@aws-sdk/client-drs 3.379.1 → 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.
@@ -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;
@@ -973,6 +1091,7 @@ export interface Licensing {
973
1091
  */
974
1092
  export declare const TargetInstanceTypeRightSizingMethod: {
975
1093
  readonly BASIC: "BASIC";
1094
+ readonly IN_AWS: "IN_AWS";
976
1095
  readonly NONE: "NONE";
977
1096
  };
978
1097
  /**
@@ -984,30 +1103,37 @@ export type TargetInstanceTypeRightSizingMethod = (typeof TargetInstanceTypeRigh
984
1103
  */
985
1104
  export interface CreateLaunchConfigurationTemplateRequest {
986
1105
  /**
1106
+ * @public
987
1107
  * <p>Request to associate tags during creation of a Launch Configuration Template.</p>
988
1108
  */
989
1109
  tags?: Record<string, string>;
990
1110
  /**
1111
+ * @public
991
1112
  * <p>Launch disposition.</p>
992
1113
  */
993
1114
  launchDisposition?: LaunchDisposition | string;
994
1115
  /**
1116
+ * @public
995
1117
  * <p>Target instance type right-sizing method.</p>
996
1118
  */
997
1119
  targetInstanceTypeRightSizingMethod?: TargetInstanceTypeRightSizingMethod | string;
998
1120
  /**
1121
+ * @public
999
1122
  * <p>Copy private IP.</p>
1000
1123
  */
1001
1124
  copyPrivateIp?: boolean;
1002
1125
  /**
1126
+ * @public
1003
1127
  * <p>Copy tags.</p>
1004
1128
  */
1005
1129
  copyTags?: boolean;
1006
1130
  /**
1131
+ * @public
1007
1132
  * <p>Licensing.</p>
1008
1133
  */
1009
1134
  licensing?: Licensing;
1010
1135
  /**
1136
+ * @public
1011
1137
  * <p>S3 bucket ARN to export Source Network templates.</p>
1012
1138
  */
1013
1139
  exportBucketArn?: string;
@@ -1018,38 +1144,47 @@ export interface CreateLaunchConfigurationTemplateRequest {
1018
1144
  */
1019
1145
  export interface LaunchConfigurationTemplate {
1020
1146
  /**
1147
+ * @public
1021
1148
  * <p>ID of the Launch Configuration Template.</p>
1022
1149
  */
1023
1150
  launchConfigurationTemplateID?: string;
1024
1151
  /**
1152
+ * @public
1025
1153
  * <p>ARN of the Launch Configuration Template.</p>
1026
1154
  */
1027
1155
  arn?: string;
1028
1156
  /**
1157
+ * @public
1029
1158
  * <p>Tags of the Launch Configuration Template.</p>
1030
1159
  */
1031
1160
  tags?: Record<string, string>;
1032
1161
  /**
1162
+ * @public
1033
1163
  * <p>Launch disposition.</p>
1034
1164
  */
1035
1165
  launchDisposition?: LaunchDisposition | string;
1036
1166
  /**
1167
+ * @public
1037
1168
  * <p>Target instance type right-sizing method.</p>
1038
1169
  */
1039
1170
  targetInstanceTypeRightSizingMethod?: TargetInstanceTypeRightSizingMethod | string;
1040
1171
  /**
1172
+ * @public
1041
1173
  * <p>Copy private IP.</p>
1042
1174
  */
1043
1175
  copyPrivateIp?: boolean;
1044
1176
  /**
1177
+ * @public
1045
1178
  * <p>Copy tags.</p>
1046
1179
  */
1047
1180
  copyTags?: boolean;
1048
1181
  /**
1182
+ * @public
1049
1183
  * <p>Licensing.</p>
1050
1184
  */
1051
1185
  licensing?: Licensing;
1052
1186
  /**
1187
+ * @public
1053
1188
  * <p>S3 bucket ARN to export Source Network templates.</p>
1054
1189
  */
1055
1190
  exportBucketArn?: string;
@@ -1059,6 +1194,7 @@ export interface LaunchConfigurationTemplate {
1059
1194
  */
1060
1195
  export interface CreateLaunchConfigurationTemplateResponse {
1061
1196
  /**
1197
+ * @public
1062
1198
  * <p>Created Launch Configuration Template.</p>
1063
1199
  */
1064
1200
  launchConfigurationTemplate?: LaunchConfigurationTemplate;
@@ -1121,22 +1257,27 @@ export type PITPolicyRuleUnits = (typeof PITPolicyRuleUnits)[keyof typeof PITPol
1121
1257
  */
1122
1258
  export interface PITPolicyRule {
1123
1259
  /**
1260
+ * @public
1124
1261
  * <p>The ID of the rule.</p>
1125
1262
  */
1126
1263
  ruleID?: number;
1127
1264
  /**
1265
+ * @public
1128
1266
  * <p>The units used to measure the interval and retentionDuration.</p>
1129
1267
  */
1130
1268
  units: PITPolicyRuleUnits | string | undefined;
1131
1269
  /**
1270
+ * @public
1132
1271
  * <p>How often, in the chosen units, a snapshot should be taken.</p>
1133
1272
  */
1134
1273
  interval: number | undefined;
1135
1274
  /**
1275
+ * @public
1136
1276
  * <p>The duration to retain a snapshot for, in the chosen units.</p>
1137
1277
  */
1138
1278
  retentionDuration: number | undefined;
1139
1279
  /**
1280
+ * @public
1140
1281
  * <p>Whether this rule is enabled or not.</p>
1141
1282
  */
1142
1283
  enabled?: boolean;
@@ -1146,62 +1287,77 @@ export interface PITPolicyRule {
1146
1287
  */
1147
1288
  export interface CreateReplicationConfigurationTemplateRequest {
1148
1289
  /**
1290
+ * @public
1149
1291
  * <p>The subnet to be used by the replication staging area.</p>
1150
1292
  */
1151
1293
  stagingAreaSubnetId: string | undefined;
1152
1294
  /**
1295
+ * @public
1153
1296
  * <p>Whether to associate the default Elastic Disaster Recovery Security group with the Replication Configuration Template.</p>
1154
1297
  */
1155
1298
  associateDefaultSecurityGroup: boolean | undefined;
1156
1299
  /**
1300
+ * @public
1157
1301
  * <p>The security group IDs that will be used by the replication server.</p>
1158
1302
  */
1159
1303
  replicationServersSecurityGroupsIDs: string[] | undefined;
1160
1304
  /**
1305
+ * @public
1161
1306
  * <p>The instance type to be used for the replication server.</p>
1162
1307
  */
1163
1308
  replicationServerInstanceType: string | undefined;
1164
1309
  /**
1310
+ * @public
1165
1311
  * <p>Whether to use a dedicated Replication Server in the replication staging area.</p>
1166
1312
  */
1167
1313
  useDedicatedReplicationServer: boolean | undefined;
1168
1314
  /**
1315
+ * @public
1169
1316
  * <p>The Staging Disk EBS volume type to be used during replication.</p>
1170
1317
  */
1171
1318
  defaultLargeStagingDiskType: ReplicationConfigurationDefaultLargeStagingDiskType | string | undefined;
1172
1319
  /**
1320
+ * @public
1173
1321
  * <p>The type of EBS encryption to be used during replication.</p>
1174
1322
  */
1175
1323
  ebsEncryption: ReplicationConfigurationEbsEncryption | string | undefined;
1176
1324
  /**
1325
+ * @public
1177
1326
  * <p>The ARN of the EBS encryption key to be used during replication.</p>
1178
1327
  */
1179
1328
  ebsEncryptionKeyArn?: string;
1180
1329
  /**
1330
+ * @public
1181
1331
  * <p>Configure bandwidth throttling for the outbound data transfer rate of the Source Server in Mbps.</p>
1182
1332
  */
1183
1333
  bandwidthThrottling: number | undefined;
1184
1334
  /**
1335
+ * @public
1185
1336
  * <p>The data plane routing mechanism that will be used for replication.</p>
1186
1337
  */
1187
1338
  dataPlaneRouting: ReplicationConfigurationDataPlaneRouting | string | undefined;
1188
1339
  /**
1340
+ * @public
1189
1341
  * <p>Whether to create a Public IP for the Recovery Instance by default.</p>
1190
1342
  */
1191
1343
  createPublicIP: boolean | undefined;
1192
1344
  /**
1345
+ * @public
1193
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>
1194
1347
  */
1195
1348
  stagingAreaTags: Record<string, string> | undefined;
1196
1349
  /**
1350
+ * @public
1197
1351
  * <p>The Point in time (PIT) policy to manage snapshots taken during replication.</p>
1198
1352
  */
1199
1353
  pitPolicy: PITPolicyRule[] | undefined;
1200
1354
  /**
1355
+ * @public
1201
1356
  * <p>A set of tags to be associated with the Replication Configuration Template resource.</p>
1202
1357
  */
1203
1358
  tags?: Record<string, string>;
1204
1359
  /**
1360
+ * @public
1205
1361
  * <p>Whether to allow the AWS replication agent to automatically replicate newly added disks.</p>
1206
1362
  */
1207
1363
  autoReplicateNewDisks?: boolean;
@@ -1211,70 +1367,87 @@ export interface CreateReplicationConfigurationTemplateRequest {
1211
1367
  */
1212
1368
  export interface ReplicationConfigurationTemplate {
1213
1369
  /**
1370
+ * @public
1214
1371
  * <p>The Replication Configuration Template ID.</p>
1215
1372
  */
1216
1373
  replicationConfigurationTemplateID: string | undefined;
1217
1374
  /**
1375
+ * @public
1218
1376
  * <p>The Replication Configuration Template ARN.</p>
1219
1377
  */
1220
1378
  arn?: string;
1221
1379
  /**
1380
+ * @public
1222
1381
  * <p>The subnet to be used by the replication staging area.</p>
1223
1382
  */
1224
1383
  stagingAreaSubnetId?: string;
1225
1384
  /**
1385
+ * @public
1226
1386
  * <p>Whether to associate the default Elastic Disaster Recovery Security group with the Replication Configuration Template.</p>
1227
1387
  */
1228
1388
  associateDefaultSecurityGroup?: boolean;
1229
1389
  /**
1390
+ * @public
1230
1391
  * <p>The security group IDs that will be used by the replication server.</p>
1231
1392
  */
1232
1393
  replicationServersSecurityGroupsIDs?: string[];
1233
1394
  /**
1395
+ * @public
1234
1396
  * <p>The instance type to be used for the replication server.</p>
1235
1397
  */
1236
1398
  replicationServerInstanceType?: string;
1237
1399
  /**
1400
+ * @public
1238
1401
  * <p>Whether to use a dedicated Replication Server in the replication staging area.</p>
1239
1402
  */
1240
1403
  useDedicatedReplicationServer?: boolean;
1241
1404
  /**
1405
+ * @public
1242
1406
  * <p>The Staging Disk EBS volume type to be used during replication.</p>
1243
1407
  */
1244
1408
  defaultLargeStagingDiskType?: ReplicationConfigurationDefaultLargeStagingDiskType | string;
1245
1409
  /**
1410
+ * @public
1246
1411
  * <p>The type of EBS encryption to be used during replication.</p>
1247
1412
  */
1248
1413
  ebsEncryption?: ReplicationConfigurationEbsEncryption | string;
1249
1414
  /**
1415
+ * @public
1250
1416
  * <p>The ARN of the EBS encryption key to be used during replication.</p>
1251
1417
  */
1252
1418
  ebsEncryptionKeyArn?: string;
1253
1419
  /**
1420
+ * @public
1254
1421
  * <p>Configure bandwidth throttling for the outbound data transfer rate of the Source Server in Mbps.</p>
1255
1422
  */
1256
1423
  bandwidthThrottling?: number;
1257
1424
  /**
1425
+ * @public
1258
1426
  * <p>The data plane routing mechanism that will be used for replication.</p>
1259
1427
  */
1260
1428
  dataPlaneRouting?: ReplicationConfigurationDataPlaneRouting | string;
1261
1429
  /**
1430
+ * @public
1262
1431
  * <p>Whether to create a Public IP for the Recovery Instance by default.</p>
1263
1432
  */
1264
1433
  createPublicIP?: boolean;
1265
1434
  /**
1435
+ * @public
1266
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>
1267
1437
  */
1268
1438
  stagingAreaTags?: Record<string, string>;
1269
1439
  /**
1440
+ * @public
1270
1441
  * <p>A set of tags to be associated with the Replication Configuration Template resource.</p>
1271
1442
  */
1272
1443
  tags?: Record<string, string>;
1273
1444
  /**
1445
+ * @public
1274
1446
  * <p>The Point in time (PIT) policy to manage snapshots taken during replication.</p>
1275
1447
  */
1276
1448
  pitPolicy?: PITPolicyRule[];
1277
1449
  /**
1450
+ * @public
1278
1451
  * <p>Whether to allow the AWS replication agent to automatically replicate newly added disks.</p>
1279
1452
  */
1280
1453
  autoReplicateNewDisks?: boolean;
@@ -1284,18 +1457,22 @@ export interface ReplicationConfigurationTemplate {
1284
1457
  */
1285
1458
  export interface CreateSourceNetworkRequest {
1286
1459
  /**
1460
+ * @public
1287
1461
  * <p>Which VPC ID to protect.</p>
1288
1462
  */
1289
1463
  vpcID: string | undefined;
1290
1464
  /**
1465
+ * @public
1291
1466
  * <p>Account containing the VPC to protect.</p>
1292
1467
  */
1293
1468
  originAccountID: string | undefined;
1294
1469
  /**
1470
+ * @public
1295
1471
  * <p>Region containing the VPC to protect.</p>
1296
1472
  */
1297
1473
  originRegion: string | undefined;
1298
1474
  /**
1475
+ * @public
1299
1476
  * <p>A set of tags to be associated with the Source Network resource.</p>
1300
1477
  */
1301
1478
  tags?: Record<string, string>;
@@ -1305,6 +1482,7 @@ export interface CreateSourceNetworkRequest {
1305
1482
  */
1306
1483
  export interface CreateSourceNetworkResponse {
1307
1484
  /**
1485
+ * @public
1308
1486
  * <p>ID of the created Source Network.</p>
1309
1487
  */
1310
1488
  sourceNetworkID?: string;
@@ -1314,6 +1492,7 @@ export interface CreateSourceNetworkResponse {
1314
1492
  */
1315
1493
  export interface DeleteJobRequest {
1316
1494
  /**
1495
+ * @public
1317
1496
  * <p>The ID of the Job to be deleted.</p>
1318
1497
  */
1319
1498
  jobID: string | undefined;
@@ -1328,6 +1507,7 @@ export interface DeleteJobResponse {
1328
1507
  */
1329
1508
  export interface DeleteLaunchConfigurationTemplateRequest {
1330
1509
  /**
1510
+ * @public
1331
1511
  * <p>The ID of the Launch Configuration Template to be deleted.</p>
1332
1512
  */
1333
1513
  launchConfigurationTemplateID: string | undefined;
@@ -1342,6 +1522,7 @@ export interface DeleteLaunchConfigurationTemplateResponse {
1342
1522
  */
1343
1523
  export interface DeleteRecoveryInstanceRequest {
1344
1524
  /**
1525
+ * @public
1345
1526
  * <p>The ID of the Recovery Instance to be deleted.</p>
1346
1527
  */
1347
1528
  recoveryInstanceID: string | undefined;
@@ -1351,6 +1532,7 @@ export interface DeleteRecoveryInstanceRequest {
1351
1532
  */
1352
1533
  export interface DeleteReplicationConfigurationTemplateRequest {
1353
1534
  /**
1535
+ * @public
1354
1536
  * <p>The ID of the Replication Configuration Template to be deleted.</p>
1355
1537
  */
1356
1538
  replicationConfigurationTemplateID: string | undefined;
@@ -1365,6 +1547,7 @@ export interface DeleteReplicationConfigurationTemplateResponse {
1365
1547
  */
1366
1548
  export interface DeleteSourceNetworkRequest {
1367
1549
  /**
1550
+ * @public
1368
1551
  * <p>ID of the Source Network to delete.</p>
1369
1552
  */
1370
1553
  sourceNetworkID: string | undefined;
@@ -1379,6 +1562,7 @@ export interface DeleteSourceNetworkResponse {
1379
1562
  */
1380
1563
  export interface DeleteSourceServerRequest {
1381
1564
  /**
1565
+ * @public
1382
1566
  * <p>The ID of the Source Server to be deleted.</p>
1383
1567
  */
1384
1568
  sourceServerID: string | undefined;
@@ -1393,14 +1577,17 @@ export interface DeleteSourceServerResponse {
1393
1577
  */
1394
1578
  export interface DescribeJobLogItemsRequest {
1395
1579
  /**
1580
+ * @public
1396
1581
  * <p>The ID of the Job for which Job log items will be retrieved.</p>
1397
1582
  */
1398
1583
  jobID: string | undefined;
1399
1584
  /**
1585
+ * @public
1400
1586
  * <p>Maximum number of Job log items to retrieve.</p>
1401
1587
  */
1402
1588
  maxResults?: number;
1403
1589
  /**
1590
+ * @public
1404
1591
  * <p>The token of the next Job log items to retrieve.</p>
1405
1592
  */
1406
1593
  nextToken?: string;
@@ -1448,18 +1635,22 @@ export type JobLogEvent = (typeof JobLogEvent)[keyof typeof JobLogEvent];
1448
1635
  */
1449
1636
  export interface SourceNetworkData {
1450
1637
  /**
1638
+ * @public
1451
1639
  * <p>Source Network ID.</p>
1452
1640
  */
1453
1641
  sourceNetworkID?: string;
1454
1642
  /**
1643
+ * @public
1455
1644
  * <p>VPC ID protected by the Source Network.</p>
1456
1645
  */
1457
1646
  sourceVpc?: string;
1458
1647
  /**
1648
+ * @public
1459
1649
  * <p>ID of the recovered VPC following Source Network recovery.</p>
1460
1650
  */
1461
1651
  targetVpc?: string;
1462
1652
  /**
1653
+ * @public
1463
1654
  * <p>CloudFormation stack name that was deployed for recovering the Source Network.</p>
1464
1655
  */
1465
1656
  stackName?: string;
@@ -1474,12 +1665,16 @@ export type EventResourceData = EventResourceData.SourceNetworkDataMember | Even
1474
1665
  */
1475
1666
  export declare namespace EventResourceData {
1476
1667
  /**
1668
+ * @public
1477
1669
  * <p>Source Network properties.</p>
1478
1670
  */
1479
1671
  interface SourceNetworkDataMember {
1480
1672
  sourceNetworkData: SourceNetworkData;
1481
1673
  $unknown?: never;
1482
1674
  }
1675
+ /**
1676
+ * @public
1677
+ */
1483
1678
  interface $UnknownMember {
1484
1679
  sourceNetworkData?: never;
1485
1680
  $unknown: [string, any];
@@ -1496,26 +1691,32 @@ export declare namespace EventResourceData {
1496
1691
  */
1497
1692
  export interface JobLogEventData {
1498
1693
  /**
1694
+ * @public
1499
1695
  * <p>The ID of a Source Server.</p>
1500
1696
  */
1501
1697
  sourceServerID?: string;
1502
1698
  /**
1699
+ * @public
1503
1700
  * <p>The ID of a conversion server.</p>
1504
1701
  */
1505
1702
  conversionServerID?: string;
1506
1703
  /**
1704
+ * @public
1507
1705
  * <p>The ID of a Recovery Instance.</p>
1508
1706
  */
1509
1707
  targetInstanceID?: string;
1510
1708
  /**
1709
+ * @public
1511
1710
  * <p>A string representing a job error.</p>
1512
1711
  */
1513
1712
  rawError?: string;
1514
1713
  /**
1714
+ * @public
1515
1715
  * <p>Properties of a conversion job</p>
1516
1716
  */
1517
1717
  conversionProperties?: ConversionProperties;
1518
1718
  /**
1719
+ * @public
1519
1720
  * <p>Properties of resource related to a job event.</p>
1520
1721
  */
1521
1722
  eventResourceData?: EventResourceData;
@@ -1526,14 +1727,17 @@ export interface JobLogEventData {
1526
1727
  */
1527
1728
  export interface JobLog {
1528
1729
  /**
1730
+ * @public
1529
1731
  * <p>The date and time the log was taken.</p>
1530
1732
  */
1531
1733
  logDateTime?: string;
1532
1734
  /**
1735
+ * @public
1533
1736
  * <p>The event represents the type of a log.</p>
1534
1737
  */
1535
1738
  event?: JobLogEvent | string;
1536
1739
  /**
1740
+ * @public
1537
1741
  * <p>Metadata associated with a Job log.</p>
1538
1742
  */
1539
1743
  eventData?: JobLogEventData;
@@ -1543,10 +1747,12 @@ export interface JobLog {
1543
1747
  */
1544
1748
  export interface DescribeJobLogItemsResponse {
1545
1749
  /**
1750
+ * @public
1546
1751
  * <p>An array of Job log items.</p>
1547
1752
  */
1548
1753
  items?: JobLog[];
1549
1754
  /**
1755
+ * @public
1550
1756
  * <p>The token of the next Job log items to retrieve.</p>
1551
1757
  */
1552
1758
  nextToken?: string;
@@ -1557,14 +1763,17 @@ export interface DescribeJobLogItemsResponse {
1557
1763
  */
1558
1764
  export interface DescribeJobsRequestFilters {
1559
1765
  /**
1766
+ * @public
1560
1767
  * <p>An array of Job IDs that should be returned. An empty array means all jobs.</p>
1561
1768
  */
1562
1769
  jobIDs?: string[];
1563
1770
  /**
1771
+ * @public
1564
1772
  * <p>The start date in a date range query.</p>
1565
1773
  */
1566
1774
  fromDate?: string;
1567
1775
  /**
1776
+ * @public
1568
1777
  * <p>The end date in a date range query.</p>
1569
1778
  */
1570
1779
  toDate?: string;
@@ -1574,14 +1783,17 @@ export interface DescribeJobsRequestFilters {
1574
1783
  */
1575
1784
  export interface DescribeJobsRequest {
1576
1785
  /**
1786
+ * @public
1577
1787
  * <p>A set of filters by which to return Jobs.</p>
1578
1788
  */
1579
1789
  filters?: DescribeJobsRequestFilters;
1580
1790
  /**
1791
+ * @public
1581
1792
  * <p>Maximum number of Jobs to retrieve.</p>
1582
1793
  */
1583
1794
  maxResults?: number;
1584
1795
  /**
1796
+ * @public
1585
1797
  * <p>The token of the next Job to retrieve.</p>
1586
1798
  */
1587
1799
  nextToken?: string;
@@ -1591,10 +1803,12 @@ export interface DescribeJobsRequest {
1591
1803
  */
1592
1804
  export interface DescribeJobsResponse {
1593
1805
  /**
1806
+ * @public
1594
1807
  * <p>An array of Jobs.</p>
1595
1808
  */
1596
1809
  items?: Job[];
1597
1810
  /**
1811
+ * @public
1598
1812
  * <p>The token of the next Job to retrieve.</p>
1599
1813
  */
1600
1814
  nextToken?: string;
@@ -1604,14 +1818,17 @@ export interface DescribeJobsResponse {
1604
1818
  */
1605
1819
  export interface DescribeLaunchConfigurationTemplatesRequest {
1606
1820
  /**
1821
+ * @public
1607
1822
  * <p>Request to filter Launch Configuration Templates list by Launch Configuration Template ID.</p>
1608
1823
  */
1609
1824
  launchConfigurationTemplateIDs?: string[];
1610
1825
  /**
1826
+ * @public
1611
1827
  * <p>Maximum results to be returned in DescribeLaunchConfigurationTemplates.</p>
1612
1828
  */
1613
1829
  maxResults?: number;
1614
1830
  /**
1831
+ * @public
1615
1832
  * <p>The token of the next Launch Configuration Template to retrieve.</p>
1616
1833
  */
1617
1834
  nextToken?: string;
@@ -1621,10 +1838,12 @@ export interface DescribeLaunchConfigurationTemplatesRequest {
1621
1838
  */
1622
1839
  export interface DescribeLaunchConfigurationTemplatesResponse {
1623
1840
  /**
1841
+ * @public
1624
1842
  * <p>List of items returned by DescribeLaunchConfigurationTemplates.</p>
1625
1843
  */
1626
1844
  items?: LaunchConfigurationTemplate[];
1627
1845
  /**
1846
+ * @public
1628
1847
  * <p>The token of the next Launch Configuration Template to retrieve.</p>
1629
1848
  */
1630
1849
  nextToken?: string;
@@ -1635,10 +1854,12 @@ export interface DescribeLaunchConfigurationTemplatesResponse {
1635
1854
  */
1636
1855
  export interface DescribeRecoveryInstancesRequestFilters {
1637
1856
  /**
1857
+ * @public
1638
1858
  * <p>An array of Recovery Instance IDs that should be returned. An empty array means all Recovery Instances.</p>
1639
1859
  */
1640
1860
  recoveryInstanceIDs?: string[];
1641
1861
  /**
1862
+ * @public
1642
1863
  * <p>An array of Source Server IDs for which associated Recovery Instances should be returned.</p>
1643
1864
  */
1644
1865
  sourceServerIDs?: string[];
@@ -1648,14 +1869,17 @@ export interface DescribeRecoveryInstancesRequestFilters {
1648
1869
  */
1649
1870
  export interface DescribeRecoveryInstancesRequest {
1650
1871
  /**
1872
+ * @public
1651
1873
  * <p>A set of filters by which to return Recovery Instances.</p>
1652
1874
  */
1653
1875
  filters?: DescribeRecoveryInstancesRequestFilters;
1654
1876
  /**
1877
+ * @public
1655
1878
  * <p>Maximum number of Recovery Instances to retrieve.</p>
1656
1879
  */
1657
1880
  maxResults?: number;
1658
1881
  /**
1882
+ * @public
1659
1883
  * <p>The token of the next Recovery Instance to retrieve.</p>
1660
1884
  */
1661
1885
  nextToken?: string;
@@ -1697,10 +1921,12 @@ export type FailbackReplicationError = (typeof FailbackReplicationError)[keyof t
1697
1921
  */
1698
1922
  export interface RecoveryInstanceDataReplicationError {
1699
1923
  /**
1924
+ * @public
1700
1925
  * <p>Error in data replication.</p>
1701
1926
  */
1702
1927
  error?: FailbackReplicationError | string;
1703
1928
  /**
1929
+ * @public
1704
1930
  * <p>Error in data replication.</p>
1705
1931
  */
1706
1932
  rawError?: string;
@@ -1754,10 +1980,12 @@ export type RecoveryInstanceDataReplicationInitiationStepStatus = (typeof Recove
1754
1980
  */
1755
1981
  export interface RecoveryInstanceDataReplicationInitiationStep {
1756
1982
  /**
1983
+ * @public
1757
1984
  * <p>The name of the step.</p>
1758
1985
  */
1759
1986
  name?: RecoveryInstanceDataReplicationInitiationStepName | string;
1760
1987
  /**
1988
+ * @public
1761
1989
  * <p>The status of the step.</p>
1762
1990
  */
1763
1991
  status?: RecoveryInstanceDataReplicationInitiationStepStatus | string;
@@ -1768,10 +1996,12 @@ export interface RecoveryInstanceDataReplicationInitiationStep {
1768
1996
  */
1769
1997
  export interface RecoveryInstanceDataReplicationInitiation {
1770
1998
  /**
1999
+ * @public
1771
2000
  * <p>The date and time of the current attempt to initiate data replication.</p>
1772
2001
  */
1773
2002
  startDateTime?: string;
1774
2003
  /**
2004
+ * @public
1775
2005
  * <p>The steps of the current attempt to initiate data replication.</p>
1776
2006
  */
1777
2007
  steps?: RecoveryInstanceDataReplicationInitiationStep[];
@@ -1804,22 +2034,27 @@ export type RecoveryInstanceDataReplicationState = (typeof RecoveryInstanceDataR
1804
2034
  */
1805
2035
  export interface RecoveryInstanceDataReplicationInfoReplicatedDisk {
1806
2036
  /**
2037
+ * @public
1807
2038
  * <p>The name of the device.</p>
1808
2039
  */
1809
2040
  deviceName?: string;
1810
2041
  /**
2042
+ * @public
1811
2043
  * <p>The total amount of data to be replicated in bytes.</p>
1812
2044
  */
1813
2045
  totalStorageBytes?: number;
1814
2046
  /**
2047
+ * @public
1815
2048
  * <p>The amount of data replicated so far in bytes.</p>
1816
2049
  */
1817
2050
  replicatedStorageBytes?: number;
1818
2051
  /**
2052
+ * @public
1819
2053
  * <p>The amount of data to be rescanned in bytes.</p>
1820
2054
  */
1821
2055
  rescannedStorageBytes?: number;
1822
2056
  /**
2057
+ * @public
1823
2058
  * <p>The size of the replication backlog in bytes.</p>
1824
2059
  */
1825
2060
  backloggedStorageBytes?: number;
@@ -1830,30 +2065,37 @@ export interface RecoveryInstanceDataReplicationInfoReplicatedDisk {
1830
2065
  */
1831
2066
  export interface RecoveryInstanceDataReplicationInfo {
1832
2067
  /**
2068
+ * @public
1833
2069
  * <p>Data replication lag duration.</p>
1834
2070
  */
1835
2071
  lagDuration?: string;
1836
2072
  /**
2073
+ * @public
1837
2074
  * <p>An estimate of when the data replication will be completed.</p>
1838
2075
  */
1839
2076
  etaDateTime?: string;
1840
2077
  /**
2078
+ * @public
1841
2079
  * <p>The disks that should be replicated.</p>
1842
2080
  */
1843
2081
  replicatedDisks?: RecoveryInstanceDataReplicationInfoReplicatedDisk[];
1844
2082
  /**
2083
+ * @public
1845
2084
  * <p>The state of the data replication.</p>
1846
2085
  */
1847
2086
  dataReplicationState?: RecoveryInstanceDataReplicationState | string;
1848
2087
  /**
2088
+ * @public
1849
2089
  * <p>Information about whether the data replication has been initiated.</p>
1850
2090
  */
1851
2091
  dataReplicationInitiation?: RecoveryInstanceDataReplicationInitiation;
1852
2092
  /**
2093
+ * @public
1853
2094
  * <p>Information about Data Replication</p>
1854
2095
  */
1855
2096
  dataReplicationError?: RecoveryInstanceDataReplicationError;
1856
2097
  /**
2098
+ * @public
1857
2099
  * <p>AWS Availability zone into which data is being replicated.</p>
1858
2100
  */
1859
2101
  stagingAvailabilityZone?: string;
@@ -1910,42 +2152,52 @@ export type FailbackState = (typeof FailbackState)[keyof typeof FailbackState];
1910
2152
  */
1911
2153
  export interface RecoveryInstanceFailback {
1912
2154
  /**
2155
+ * @public
1913
2156
  * <p>The ID of the failback client that this Recovery Instance is associated with.</p>
1914
2157
  */
1915
2158
  failbackClientID?: string;
1916
2159
  /**
2160
+ * @public
1917
2161
  * <p>The Job ID of the last failback log for this Recovery Instance.</p>
1918
2162
  */
1919
2163
  failbackJobID?: string;
1920
2164
  /**
2165
+ * @public
1921
2166
  * <p>The date and time that the failback initiation started.</p>
1922
2167
  */
1923
2168
  failbackInitiationTime?: string;
1924
2169
  /**
2170
+ * @public
1925
2171
  * <p>The state of the failback process that this Recovery Instance is in.</p>
1926
2172
  */
1927
2173
  state?: FailbackState | string;
1928
2174
  /**
2175
+ * @public
1929
2176
  * <p>The date and time the agent on the Recovery Instance was last seen by the service.</p>
1930
2177
  */
1931
2178
  agentLastSeenByServiceDateTime?: string;
1932
2179
  /**
2180
+ * @public
1933
2181
  * <p>The date and time that the failback client was last seen by the service.</p>
1934
2182
  */
1935
2183
  failbackClientLastSeenByServiceDateTime?: string;
1936
2184
  /**
2185
+ * @public
1937
2186
  * <p>Whether we are failing back to the original Source Server for this Recovery Instance.</p>
1938
2187
  */
1939
2188
  failbackToOriginalServer?: boolean;
1940
2189
  /**
2190
+ * @public
1941
2191
  * <p>The date and time of the first byte that was replicated from the Recovery Instance.</p>
1942
2192
  */
1943
2193
  firstByteDateTime?: string;
1944
2194
  /**
2195
+ * @public
1945
2196
  * <p>The amount of time that the Recovery Instance has been replicating for.</p>
1946
2197
  */
1947
2198
  elapsedReplicationDuration?: string;
1948
2199
  /**
2200
+ * @public
1949
2201
  * <p>The launch type (Recovery / Drill) of the last launch for the failback replication of this recovery instance.</p>
1950
2202
  */
1951
2203
  failbackLaunchType?: FailbackLaunchType | string;
@@ -1968,14 +2220,17 @@ export type OriginEnvironment = (typeof OriginEnvironment)[keyof typeof OriginEn
1968
2220
  */
1969
2221
  export interface RecoveryInstanceDisk {
1970
2222
  /**
2223
+ * @public
1971
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>
1972
2225
  */
1973
2226
  internalDeviceName?: string;
1974
2227
  /**
2228
+ * @public
1975
2229
  * <p>The amount of storage on the disk in bytes.</p>
1976
2230
  */
1977
2231
  bytes?: number;
1978
2232
  /**
2233
+ * @public
1979
2234
  * <p>The EBS Volume ID of this disk.</p>
1980
2235
  */
1981
2236
  ebsVolumeID?: string;
@@ -1986,30 +2241,37 @@ export interface RecoveryInstanceDisk {
1986
2241
  */
1987
2242
  export interface RecoveryInstanceProperties {
1988
2243
  /**
2244
+ * @public
1989
2245
  * <p>The date and time the Recovery Instance properties were last updated on.</p>
1990
2246
  */
1991
2247
  lastUpdatedDateTime?: string;
1992
2248
  /**
2249
+ * @public
1993
2250
  * <p>Hints used to uniquely identify a machine.</p>
1994
2251
  */
1995
2252
  identificationHints?: IdentificationHints;
1996
2253
  /**
2254
+ * @public
1997
2255
  * <p>An array of network interfaces.</p>
1998
2256
  */
1999
2257
  networkInterfaces?: NetworkInterface[];
2000
2258
  /**
2259
+ * @public
2001
2260
  * <p>An array of disks.</p>
2002
2261
  */
2003
2262
  disks?: RecoveryInstanceDisk[];
2004
2263
  /**
2264
+ * @public
2005
2265
  * <p>An array of CPUs.</p>
2006
2266
  */
2007
2267
  cpus?: CPU[];
2008
2268
  /**
2269
+ * @public
2009
2270
  * <p>The amount of RAM in bytes.</p>
2010
2271
  */
2011
2272
  ramBytes?: number;
2012
2273
  /**
2274
+ * @public
2013
2275
  * <p>Operating system.</p>
2014
2276
  */
2015
2277
  os?: OS;
@@ -2020,58 +2282,72 @@ export interface RecoveryInstanceProperties {
2020
2282
  */
2021
2283
  export interface RecoveryInstance {
2022
2284
  /**
2285
+ * @public
2023
2286
  * <p>The EC2 instance ID of the Recovery Instance.</p>
2024
2287
  */
2025
2288
  ec2InstanceID?: string;
2026
2289
  /**
2290
+ * @public
2027
2291
  * <p>The state of the EC2 instance for this Recovery Instance.</p>
2028
2292
  */
2029
2293
  ec2InstanceState?: EC2InstanceState | string;
2030
2294
  /**
2295
+ * @public
2031
2296
  * <p>The ID of the Job that created the Recovery Instance.</p>
2032
2297
  */
2033
2298
  jobID?: string;
2034
2299
  /**
2300
+ * @public
2035
2301
  * <p>The ID of the Recovery Instance.</p>
2036
2302
  */
2037
2303
  recoveryInstanceID?: string;
2038
2304
  /**
2305
+ * @public
2039
2306
  * <p>The Source Server ID that this Recovery Instance is associated with.</p>
2040
2307
  */
2041
2308
  sourceServerID?: string;
2042
2309
  /**
2310
+ * @public
2043
2311
  * <p>The ARN of the Recovery Instance.</p>
2044
2312
  */
2045
2313
  arn?: string;
2046
2314
  /**
2315
+ * @public
2047
2316
  * <p>An array of tags that are associated with the Recovery Instance.</p>
2048
2317
  */
2049
2318
  tags?: Record<string, string>;
2050
2319
  /**
2320
+ * @public
2051
2321
  * <p>An object representing failback related information of the Recovery Instance.</p>
2052
2322
  */
2053
2323
  failback?: RecoveryInstanceFailback;
2054
2324
  /**
2325
+ * @public
2055
2326
  * <p>The Data Replication Info of the Recovery Instance.</p>
2056
2327
  */
2057
2328
  dataReplicationInfo?: RecoveryInstanceDataReplicationInfo;
2058
2329
  /**
2330
+ * @public
2059
2331
  * <p>Properties of the Recovery Instance machine.</p>
2060
2332
  */
2061
2333
  recoveryInstanceProperties?: RecoveryInstanceProperties;
2062
2334
  /**
2335
+ * @public
2063
2336
  * <p>The date and time of the Point in Time (PIT) snapshot that this Recovery Instance was launched from.</p>
2064
2337
  */
2065
2338
  pointInTimeSnapshotDateTime?: string;
2066
2339
  /**
2340
+ * @public
2067
2341
  * <p>Whether this Recovery Instance was created for a drill or for an actual Recovery event.</p>
2068
2342
  */
2069
2343
  isDrill?: boolean;
2070
2344
  /**
2345
+ * @public
2071
2346
  * <p>Environment (On Premises / AWS) of the instance that the recovery instance originated from.</p>
2072
2347
  */
2073
2348
  originEnvironment?: OriginEnvironment | string;
2074
2349
  /**
2350
+ * @public
2075
2351
  * <p>AWS availability zone associated with the recovery instance.</p>
2076
2352
  */
2077
2353
  originAvailabilityZone?: string;
@@ -2081,10 +2357,12 @@ export interface RecoveryInstance {
2081
2357
  */
2082
2358
  export interface DescribeRecoveryInstancesResponse {
2083
2359
  /**
2360
+ * @public
2084
2361
  * <p>The token of the next Recovery Instance to retrieve.</p>
2085
2362
  */
2086
2363
  nextToken?: string;
2087
2364
  /**
2365
+ * @public
2088
2366
  * <p>An array of Recovery Instances.</p>
2089
2367
  */
2090
2368
  items?: RecoveryInstance[];
@@ -2095,10 +2373,12 @@ export interface DescribeRecoveryInstancesResponse {
2095
2373
  */
2096
2374
  export interface DescribeRecoverySnapshotsRequestFilters {
2097
2375
  /**
2376
+ * @public
2098
2377
  * <p>The start date in a date range query.</p>
2099
2378
  */
2100
2379
  fromDateTime?: string;
2101
2380
  /**
2381
+ * @public
2102
2382
  * <p>The end date in a date range query.</p>
2103
2383
  */
2104
2384
  toDateTime?: string;
@@ -2120,22 +2400,27 @@ export type RecoverySnapshotsOrder = (typeof RecoverySnapshotsOrder)[keyof typeo
2120
2400
  */
2121
2401
  export interface DescribeRecoverySnapshotsRequest {
2122
2402
  /**
2403
+ * @public
2123
2404
  * <p>Filter Recovery Snapshots by Source Server ID.</p>
2124
2405
  */
2125
2406
  sourceServerID: string | undefined;
2126
2407
  /**
2408
+ * @public
2127
2409
  * <p>A set of filters by which to return Recovery Snapshots.</p>
2128
2410
  */
2129
2411
  filters?: DescribeRecoverySnapshotsRequestFilters;
2130
2412
  /**
2413
+ * @public
2131
2414
  * <p>The sorted ordering by which to return Recovery Snapshots.</p>
2132
2415
  */
2133
2416
  order?: RecoverySnapshotsOrder | string;
2134
2417
  /**
2418
+ * @public
2135
2419
  * <p>Maximum number of Recovery Snapshots to retrieve.</p>
2136
2420
  */
2137
2421
  maxResults?: number;
2138
2422
  /**
2423
+ * @public
2139
2424
  * <p>The token of the next Recovery Snapshot to retrieve.</p>
2140
2425
  */
2141
2426
  nextToken?: string;
@@ -2146,22 +2431,27 @@ export interface DescribeRecoverySnapshotsRequest {
2146
2431
  */
2147
2432
  export interface RecoverySnapshot {
2148
2433
  /**
2434
+ * @public
2149
2435
  * <p>The ID of the Recovery Snapshot.</p>
2150
2436
  */
2151
2437
  snapshotID: string | undefined;
2152
2438
  /**
2439
+ * @public
2153
2440
  * <p>The ID of the Source Server that the snapshot was taken for.</p>
2154
2441
  */
2155
2442
  sourceServerID: string | undefined;
2156
2443
  /**
2444
+ * @public
2157
2445
  * <p>The timestamp of when we expect the snapshot to be taken.</p>
2158
2446
  */
2159
2447
  expectedTimestamp: string | undefined;
2160
2448
  /**
2449
+ * @public
2161
2450
  * <p>The actual timestamp that the snapshot was taken.</p>
2162
2451
  */
2163
2452
  timestamp?: string;
2164
2453
  /**
2454
+ * @public
2165
2455
  * <p>A list of EBS snapshots.</p>
2166
2456
  */
2167
2457
  ebsSnapshots?: string[];
@@ -2171,10 +2461,12 @@ export interface RecoverySnapshot {
2171
2461
  */
2172
2462
  export interface DescribeRecoverySnapshotsResponse {
2173
2463
  /**
2464
+ * @public
2174
2465
  * <p>An array of Recovery Snapshots.</p>
2175
2466
  */
2176
2467
  items?: RecoverySnapshot[];
2177
2468
  /**
2469
+ * @public
2178
2470
  * <p>The token of the next Recovery Snapshot to retrieve.</p>
2179
2471
  */
2180
2472
  nextToken?: string;
@@ -2184,14 +2476,17 @@ export interface DescribeRecoverySnapshotsResponse {
2184
2476
  */
2185
2477
  export interface DescribeReplicationConfigurationTemplatesRequest {
2186
2478
  /**
2479
+ * @public
2187
2480
  * <p>The IDs of the Replication Configuration Templates to retrieve. An empty list means all Replication Configuration Templates.</p>
2188
2481
  */
2189
2482
  replicationConfigurationTemplateIDs?: string[];
2190
2483
  /**
2484
+ * @public
2191
2485
  * <p>Maximum number of Replication Configuration Templates to retrieve.</p>
2192
2486
  */
2193
2487
  maxResults?: number;
2194
2488
  /**
2489
+ * @public
2195
2490
  * <p>The token of the next Replication Configuration Template to retrieve.</p>
2196
2491
  */
2197
2492
  nextToken?: string;
@@ -2201,10 +2496,12 @@ export interface DescribeReplicationConfigurationTemplatesRequest {
2201
2496
  */
2202
2497
  export interface DescribeReplicationConfigurationTemplatesResponse {
2203
2498
  /**
2499
+ * @public
2204
2500
  * <p>An array of Replication Configuration Templates.</p>
2205
2501
  */
2206
2502
  items?: ReplicationConfigurationTemplate[];
2207
2503
  /**
2504
+ * @public
2208
2505
  * <p>The token of the next Replication Configuration Template to retrieve.</p>
2209
2506
  */
2210
2507
  nextToken?: string;
@@ -2215,14 +2512,17 @@ export interface DescribeReplicationConfigurationTemplatesResponse {
2215
2512
  */
2216
2513
  export interface DescribeSourceNetworksRequestFilters {
2217
2514
  /**
2515
+ * @public
2218
2516
  * <p>An array of Source Network IDs that should be returned. An empty array means all Source Networks.</p>
2219
2517
  */
2220
2518
  sourceNetworkIDs?: string[];
2221
2519
  /**
2520
+ * @public
2222
2521
  * <p>Filter Source Networks by account ID containing the protected VPCs.</p>
2223
2522
  */
2224
2523
  originAccountID?: string;
2225
2524
  /**
2525
+ * @public
2226
2526
  * <p>Filter Source Networks by the region containing the protected VPCs.</p>
2227
2527
  */
2228
2528
  originRegion?: string;
@@ -2232,14 +2532,17 @@ export interface DescribeSourceNetworksRequestFilters {
2232
2532
  */
2233
2533
  export interface DescribeSourceNetworksRequest {
2234
2534
  /**
2535
+ * @public
2235
2536
  * <p>A set of filters by which to return Source Networks.</p>
2236
2537
  */
2237
2538
  filters?: DescribeSourceNetworksRequestFilters;
2238
2539
  /**
2540
+ * @public
2239
2541
  * <p>Maximum number of Source Networks to retrieve.</p>
2240
2542
  */
2241
2543
  maxResults?: number;
2242
2544
  /**
2545
+ * @public
2243
2546
  * <p>The token of the next Source Networks to retrieve.</p>
2244
2547
  */
2245
2548
  nextToken?: string;
@@ -2267,14 +2570,17 @@ export type RecoveryResult = (typeof RecoveryResult)[keyof typeof RecoveryResult
2267
2570
  */
2268
2571
  export interface RecoveryLifeCycle {
2269
2572
  /**
2573
+ * @public
2270
2574
  * <p>The date and time the last Source Network recovery was initiated.</p>
2271
2575
  */
2272
2576
  apiCallDateTime?: Date;
2273
2577
  /**
2578
+ * @public
2274
2579
  * <p>The ID of the Job that was used to last recover the Source Network.</p>
2275
2580
  */
2276
2581
  jobID?: string;
2277
2582
  /**
2583
+ * @public
2278
2584
  * <p>The status of the last recovery status of this Source Network.</p>
2279
2585
  */
2280
2586
  lastRecoveryResult?: RecoveryResult | string;
@@ -2299,22 +2605,27 @@ export type ReplicationStatus = (typeof ReplicationStatus)[keyof typeof Replicat
2299
2605
  */
2300
2606
  export interface SourceNetwork {
2301
2607
  /**
2608
+ * @public
2302
2609
  * <p>Source Network ID.</p>
2303
2610
  */
2304
2611
  sourceNetworkID?: string;
2305
2612
  /**
2613
+ * @public
2306
2614
  * <p>VPC ID protected by the Source Network.</p>
2307
2615
  */
2308
2616
  sourceVpcID?: string;
2309
2617
  /**
2618
+ * @public
2310
2619
  * <p>The ARN of the Source Network.</p>
2311
2620
  */
2312
2621
  arn?: string;
2313
2622
  /**
2623
+ * @public
2314
2624
  * <p>A list of tags associated with the Source Network.</p>
2315
2625
  */
2316
2626
  tags?: Record<string, string>;
2317
2627
  /**
2628
+ * @public
2318
2629
  * <p>Status of Source Network Replication. Possible values:
2319
2630
  * (a) STOPPED - Source Network is not replicating.
2320
2631
  * (b) IN_PROGRESS - Source Network is being replicated.
@@ -2323,26 +2634,32 @@ export interface SourceNetwork {
2323
2634
  */
2324
2635
  replicationStatus?: ReplicationStatus | string;
2325
2636
  /**
2637
+ * @public
2326
2638
  * <p>Error details in case Source Network replication status is ERROR.</p>
2327
2639
  */
2328
2640
  replicationStatusDetails?: string;
2329
2641
  /**
2642
+ * @public
2330
2643
  * <p>CloudFormation stack name that was deployed for recovering the Source Network.</p>
2331
2644
  */
2332
2645
  cfnStackName?: string;
2333
2646
  /**
2647
+ * @public
2334
2648
  * <p>Region containing the VPC protected by the Source Network.</p>
2335
2649
  */
2336
2650
  sourceRegion?: string;
2337
2651
  /**
2652
+ * @public
2338
2653
  * <p>Account ID containing the VPC protected by the Source Network.</p>
2339
2654
  */
2340
2655
  sourceAccountID?: string;
2341
2656
  /**
2657
+ * @public
2342
2658
  * <p>An object containing information regarding the last recovery of the Source Network.</p>
2343
2659
  */
2344
2660
  lastRecovery?: RecoveryLifeCycle;
2345
2661
  /**
2662
+ * @public
2346
2663
  * <p>ID of the recovered VPC following Source Network recovery.</p>
2347
2664
  */
2348
2665
  launchedVpcID?: string;
@@ -2352,10 +2669,12 @@ export interface SourceNetwork {
2352
2669
  */
2353
2670
  export interface DescribeSourceNetworksResponse {
2354
2671
  /**
2672
+ * @public
2355
2673
  * <p>An array of Source Networks.</p>
2356
2674
  */
2357
2675
  items?: SourceNetwork[];
2358
2676
  /**
2677
+ * @public
2359
2678
  * <p>The token of the next Source Networks to retrieve.</p>
2360
2679
  */
2361
2680
  nextToken?: string;
@@ -2366,14 +2685,17 @@ export interface DescribeSourceNetworksResponse {
2366
2685
  */
2367
2686
  export interface DescribeSourceServersRequestFilters {
2368
2687
  /**
2688
+ * @public
2369
2689
  * <p>An array of Source Servers IDs that should be returned. An empty array means all Source Servers.</p>
2370
2690
  */
2371
2691
  sourceServerIDs?: string[];
2372
2692
  /**
2693
+ * @public
2373
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>
2374
2695
  */
2375
2696
  hardwareId?: string;
2376
2697
  /**
2698
+ * @public
2377
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>
2378
2700
  */
2379
2701
  stagingAccountIDs?: string[];
@@ -2383,14 +2705,17 @@ export interface DescribeSourceServersRequestFilters {
2383
2705
  */
2384
2706
  export interface DescribeSourceServersRequest {
2385
2707
  /**
2708
+ * @public
2386
2709
  * <p>A set of filters by which to return Source Servers.</p>
2387
2710
  */
2388
2711
  filters?: DescribeSourceServersRequestFilters;
2389
2712
  /**
2713
+ * @public
2390
2714
  * <p>Maximum number of Source Servers to retrieve.</p>
2391
2715
  */
2392
2716
  maxResults?: number;
2393
2717
  /**
2718
+ * @public
2394
2719
  * <p>The token of the next Source Server to retrieve.</p>
2395
2720
  */
2396
2721
  nextToken?: string;
@@ -2400,10 +2725,12 @@ export interface DescribeSourceServersRequest {
2400
2725
  */
2401
2726
  export interface DescribeSourceServersResponse {
2402
2727
  /**
2728
+ * @public
2403
2729
  * <p>An array of Source Servers.</p>
2404
2730
  */
2405
2731
  items?: SourceServer[];
2406
2732
  /**
2733
+ * @public
2407
2734
  * <p>The token of the next Source Server to retrieve.</p>
2408
2735
  */
2409
2736
  nextToken?: string;
@@ -2413,6 +2740,7 @@ export interface DescribeSourceServersResponse {
2413
2740
  */
2414
2741
  export interface DisconnectRecoveryInstanceRequest {
2415
2742
  /**
2743
+ * @public
2416
2744
  * <p>The ID of the Recovery Instance to disconnect.</p>
2417
2745
  */
2418
2746
  recoveryInstanceID: string | undefined;
@@ -2422,6 +2750,7 @@ export interface DisconnectRecoveryInstanceRequest {
2422
2750
  */
2423
2751
  export interface DisconnectSourceServerRequest {
2424
2752
  /**
2753
+ * @public
2425
2754
  * <p>The ID of the Source Server to disconnect.</p>
2426
2755
  */
2427
2756
  sourceServerID: string | undefined;
@@ -2441,30 +2770,37 @@ export interface InitializeServiceResponse {
2441
2770
  */
2442
2771
  export interface UpdateLaunchConfigurationTemplateRequest {
2443
2772
  /**
2773
+ * @public
2444
2774
  * <p>Launch Configuration Template ID.</p>
2445
2775
  */
2446
2776
  launchConfigurationTemplateID: string | undefined;
2447
2777
  /**
2778
+ * @public
2448
2779
  * <p>Launch disposition.</p>
2449
2780
  */
2450
2781
  launchDisposition?: LaunchDisposition | string;
2451
2782
  /**
2783
+ * @public
2452
2784
  * <p>Target instance type right-sizing method.</p>
2453
2785
  */
2454
2786
  targetInstanceTypeRightSizingMethod?: TargetInstanceTypeRightSizingMethod | string;
2455
2787
  /**
2788
+ * @public
2456
2789
  * <p>Copy private IP.</p>
2457
2790
  */
2458
2791
  copyPrivateIp?: boolean;
2459
2792
  /**
2793
+ * @public
2460
2794
  * <p>Copy tags.</p>
2461
2795
  */
2462
2796
  copyTags?: boolean;
2463
2797
  /**
2798
+ * @public
2464
2799
  * <p>Licensing.</p>
2465
2800
  */
2466
2801
  licensing?: Licensing;
2467
2802
  /**
2803
+ * @public
2468
2804
  * <p>S3 bucket ARN to export Source Network templates.</p>
2469
2805
  */
2470
2806
  exportBucketArn?: string;
@@ -2474,6 +2810,7 @@ export interface UpdateLaunchConfigurationTemplateRequest {
2474
2810
  */
2475
2811
  export interface UpdateLaunchConfigurationTemplateResponse {
2476
2812
  /**
2813
+ * @public
2477
2814
  * <p>Updated Launch Configuration Template.</p>
2478
2815
  */
2479
2816
  launchConfigurationTemplate?: LaunchConfigurationTemplate;
@@ -2483,14 +2820,17 @@ export interface UpdateLaunchConfigurationTemplateResponse {
2483
2820
  */
2484
2821
  export interface ListExtensibleSourceServersRequest {
2485
2822
  /**
2823
+ * @public
2486
2824
  * <p>The Id of the staging Account to retrieve extensible source servers from.</p>
2487
2825
  */
2488
2826
  stagingAccountID: string | undefined;
2489
2827
  /**
2828
+ * @public
2490
2829
  * <p>The maximum number of extensible source servers to retrieve.</p>
2491
2830
  */
2492
2831
  maxResults?: number;
2493
2832
  /**
2833
+ * @public
2494
2834
  * <p>The token of the next extensible source server to retrieve.</p>
2495
2835
  */
2496
2836
  nextToken?: string;
@@ -2501,14 +2841,17 @@ export interface ListExtensibleSourceServersRequest {
2501
2841
  */
2502
2842
  export interface StagingSourceServer {
2503
2843
  /**
2844
+ * @public
2504
2845
  * <p>Hostname of staging source server.</p>
2505
2846
  */
2506
2847
  hostname?: string;
2507
2848
  /**
2849
+ * @public
2508
2850
  * <p>The ARN of the source server.</p>
2509
2851
  */
2510
2852
  arn?: string;
2511
2853
  /**
2854
+ * @public
2512
2855
  * <p>A list of tags associated with the staging source server.</p>
2513
2856
  */
2514
2857
  tags?: Record<string, string>;
@@ -2518,10 +2861,12 @@ export interface StagingSourceServer {
2518
2861
  */
2519
2862
  export interface ListExtensibleSourceServersResponse {
2520
2863
  /**
2864
+ * @public
2521
2865
  * <p>A list of source servers on a staging Account that are extensible.</p>
2522
2866
  */
2523
2867
  items?: StagingSourceServer[];
2524
2868
  /**
2869
+ * @public
2525
2870
  * <p>The token of the next extensible source server to retrieve.</p>
2526
2871
  */
2527
2872
  nextToken?: string;
@@ -2531,10 +2876,12 @@ export interface ListExtensibleSourceServersResponse {
2531
2876
  */
2532
2877
  export interface ListStagingAccountsRequest {
2533
2878
  /**
2879
+ * @public
2534
2880
  * <p>The maximum number of staging Accounts to retrieve.</p>
2535
2881
  */
2536
2882
  maxResults?: number;
2537
2883
  /**
2884
+ * @public
2538
2885
  * <p>The token of the next staging Account to retrieve.</p>
2539
2886
  */
2540
2887
  nextToken?: string;
@@ -2544,10 +2891,12 @@ export interface ListStagingAccountsRequest {
2544
2891
  */
2545
2892
  export interface ListStagingAccountsResponse {
2546
2893
  /**
2894
+ * @public
2547
2895
  * <p>An array of staging AWS Accounts.</p>
2548
2896
  */
2549
2897
  accounts?: Account[];
2550
2898
  /**
2899
+ * @public
2551
2900
  * <p>The token of the next staging Account to retrieve.</p>
2552
2901
  */
2553
2902
  nextToken?: string;
@@ -2557,6 +2906,7 @@ export interface ListStagingAccountsResponse {
2557
2906
  */
2558
2907
  export interface ListTagsForResourceRequest {
2559
2908
  /**
2909
+ * @public
2560
2910
  * <p>The ARN of the resource whose tags should be returned.</p>
2561
2911
  */
2562
2912
  resourceArn: string | undefined;
@@ -2566,6 +2916,7 @@ export interface ListTagsForResourceRequest {
2566
2916
  */
2567
2917
  export interface ListTagsForResourceResponse {
2568
2918
  /**
2919
+ * @public
2569
2920
  * <p>The tags of the requested resource.</p>
2570
2921
  */
2571
2922
  tags?: Record<string, string>;
@@ -2575,6 +2926,7 @@ export interface ListTagsForResourceResponse {
2575
2926
  */
2576
2927
  export interface GetFailbackReplicationConfigurationRequest {
2577
2928
  /**
2929
+ * @public
2578
2930
  * <p>The ID of the Recovery Instance whose failback replication configuration should be returned.</p>
2579
2931
  */
2580
2932
  recoveryInstanceID: string | undefined;
@@ -2584,18 +2936,22 @@ export interface GetFailbackReplicationConfigurationRequest {
2584
2936
  */
2585
2937
  export interface GetFailbackReplicationConfigurationResponse {
2586
2938
  /**
2939
+ * @public
2587
2940
  * <p>The ID of the Recovery Instance.</p>
2588
2941
  */
2589
2942
  recoveryInstanceID: string | undefined;
2590
2943
  /**
2944
+ * @public
2591
2945
  * <p>The name of the Failback Replication Configuration.</p>
2592
2946
  */
2593
2947
  name?: string;
2594
2948
  /**
2949
+ * @public
2595
2950
  * <p>Configure bandwidth throttling for the outbound data transfer rate of the Recovery Instance in Mbps.</p>
2596
2951
  */
2597
2952
  bandwidthThrottling?: number;
2598
2953
  /**
2954
+ * @public
2599
2955
  * <p>Whether to use Private IP for the failback replication of the Recovery Instance.</p>
2600
2956
  */
2601
2957
  usePrivateIP?: boolean;
@@ -2605,6 +2961,7 @@ export interface GetFailbackReplicationConfigurationResponse {
2605
2961
  */
2606
2962
  export interface ReverseReplicationRequest {
2607
2963
  /**
2964
+ * @public
2608
2965
  * <p>The ID of the Recovery Instance that we want to reverse the replication for.</p>
2609
2966
  */
2610
2967
  recoveryInstanceID: string | undefined;
@@ -2614,6 +2971,7 @@ export interface ReverseReplicationRequest {
2614
2971
  */
2615
2972
  export interface ReverseReplicationResponse {
2616
2973
  /**
2974
+ * @public
2617
2975
  * <p>ARN of created SourceServer.</p>
2618
2976
  */
2619
2977
  reversedDirectionSourceServerArn?: string;
@@ -2623,10 +2981,12 @@ export interface ReverseReplicationResponse {
2623
2981
  */
2624
2982
  export interface StartFailbackLaunchRequest {
2625
2983
  /**
2984
+ * @public
2626
2985
  * <p>The IDs of the Recovery Instance whose failback launch we want to request.</p>
2627
2986
  */
2628
2987
  recoveryInstanceIDs: string[] | undefined;
2629
2988
  /**
2989
+ * @public
2630
2990
  * <p>The tags to be associated with the failback launch Job.</p>
2631
2991
  */
2632
2992
  tags?: Record<string, string>;
@@ -2636,6 +2996,7 @@ export interface StartFailbackLaunchRequest {
2636
2996
  */
2637
2997
  export interface StartFailbackLaunchResponse {
2638
2998
  /**
2999
+ * @public
2639
3000
  * <p>The failback launch Job.</p>
2640
3001
  */
2641
3002
  job?: Job;
@@ -2645,6 +3006,7 @@ export interface StartFailbackLaunchResponse {
2645
3006
  */
2646
3007
  export interface StopFailbackRequest {
2647
3008
  /**
3009
+ * @public
2648
3010
  * <p>The ID of the Recovery Instance we want to stop failback for.</p>
2649
3011
  */
2650
3012
  recoveryInstanceID: string | undefined;
@@ -2654,6 +3016,7 @@ export interface StopFailbackRequest {
2654
3016
  */
2655
3017
  export interface TerminateRecoveryInstancesRequest {
2656
3018
  /**
3019
+ * @public
2657
3020
  * <p>The IDs of the Recovery Instances that should be terminated.</p>
2658
3021
  */
2659
3022
  recoveryInstanceIDs: string[] | undefined;
@@ -2663,6 +3026,7 @@ export interface TerminateRecoveryInstancesRequest {
2663
3026
  */
2664
3027
  export interface TerminateRecoveryInstancesResponse {
2665
3028
  /**
3029
+ * @public
2666
3030
  * <p>The Job for terminating the Recovery Instances.</p>
2667
3031
  */
2668
3032
  job?: Job;
@@ -2672,18 +3036,22 @@ export interface TerminateRecoveryInstancesResponse {
2672
3036
  */
2673
3037
  export interface UpdateFailbackReplicationConfigurationRequest {
2674
3038
  /**
3039
+ * @public
2675
3040
  * <p>The ID of the Recovery Instance.</p>
2676
3041
  */
2677
3042
  recoveryInstanceID: string | undefined;
2678
3043
  /**
3044
+ * @public
2679
3045
  * <p>The name of the Failback Replication Configuration.</p>
2680
3046
  */
2681
3047
  name?: string;
2682
3048
  /**
3049
+ * @public
2683
3050
  * <p>Configure bandwidth throttling for the outbound data transfer rate of the Recovery Instance in Mbps.</p>
2684
3051
  */
2685
3052
  bandwidthThrottling?: number;
2686
3053
  /**
3054
+ * @public
2687
3055
  * <p>Whether to use Private IP for the failback replication of the Recovery Instance.</p>
2688
3056
  */
2689
3057
  usePrivateIP?: boolean;
@@ -2693,66 +3061,82 @@ export interface UpdateFailbackReplicationConfigurationRequest {
2693
3061
  */
2694
3062
  export interface UpdateReplicationConfigurationTemplateRequest {
2695
3063
  /**
3064
+ * @public
2696
3065
  * <p>The Replication Configuration Template ID.</p>
2697
3066
  */
2698
3067
  replicationConfigurationTemplateID: string | undefined;
2699
3068
  /**
3069
+ * @public
2700
3070
  * <p>The Replication Configuration Template ARN.</p>
2701
3071
  */
2702
3072
  arn?: string;
2703
3073
  /**
3074
+ * @public
2704
3075
  * <p>The subnet to be used by the replication staging area.</p>
2705
3076
  */
2706
3077
  stagingAreaSubnetId?: string;
2707
3078
  /**
3079
+ * @public
2708
3080
  * <p>Whether to associate the default Elastic Disaster Recovery Security group with the Replication Configuration Template.</p>
2709
3081
  */
2710
3082
  associateDefaultSecurityGroup?: boolean;
2711
3083
  /**
3084
+ * @public
2712
3085
  * <p>The security group IDs that will be used by the replication server.</p>
2713
3086
  */
2714
3087
  replicationServersSecurityGroupsIDs?: string[];
2715
3088
  /**
3089
+ * @public
2716
3090
  * <p>The instance type to be used for the replication server.</p>
2717
3091
  */
2718
3092
  replicationServerInstanceType?: string;
2719
3093
  /**
3094
+ * @public
2720
3095
  * <p>Whether to use a dedicated Replication Server in the replication staging area.</p>
2721
3096
  */
2722
3097
  useDedicatedReplicationServer?: boolean;
2723
3098
  /**
3099
+ * @public
2724
3100
  * <p>The Staging Disk EBS volume type to be used during replication.</p>
2725
3101
  */
2726
3102
  defaultLargeStagingDiskType?: ReplicationConfigurationDefaultLargeStagingDiskType | string;
2727
3103
  /**
3104
+ * @public
2728
3105
  * <p>The type of EBS encryption to be used during replication.</p>
2729
3106
  */
2730
3107
  ebsEncryption?: ReplicationConfigurationEbsEncryption | string;
2731
3108
  /**
3109
+ * @public
2732
3110
  * <p>The ARN of the EBS encryption key to be used during replication.</p>
2733
3111
  */
2734
3112
  ebsEncryptionKeyArn?: string;
2735
3113
  /**
3114
+ * @public
2736
3115
  * <p>Configure bandwidth throttling for the outbound data transfer rate of the Source Server in Mbps.</p>
2737
3116
  */
2738
3117
  bandwidthThrottling?: number;
2739
3118
  /**
3119
+ * @public
2740
3120
  * <p>The data plane routing mechanism that will be used for replication.</p>
2741
3121
  */
2742
3122
  dataPlaneRouting?: ReplicationConfigurationDataPlaneRouting | string;
2743
3123
  /**
3124
+ * @public
2744
3125
  * <p>Whether to create a Public IP for the Recovery Instance by default.</p>
2745
3126
  */
2746
3127
  createPublicIP?: boolean;
2747
3128
  /**
3129
+ * @public
2748
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>
2749
3131
  */
2750
3132
  stagingAreaTags?: Record<string, string>;
2751
3133
  /**
3134
+ * @public
2752
3135
  * <p>The Point in time (PIT) policy to manage snapshots taken during replication.</p>
2753
3136
  */
2754
3137
  pitPolicy?: PITPolicyRule[];
2755
3138
  /**
3139
+ * @public
2756
3140
  * <p>Whether to allow the AWS replication agent to automatically replicate newly added disks.</p>
2757
3141
  */
2758
3142
  autoReplicateNewDisks?: boolean;
@@ -2762,6 +3146,7 @@ export interface UpdateReplicationConfigurationTemplateRequest {
2762
3146
  */
2763
3147
  export interface ExportSourceNetworkCfnTemplateRequest {
2764
3148
  /**
3149
+ * @public
2765
3150
  * <p>The Source Network ID to export its CloudFormation template to an S3 bucket.</p>
2766
3151
  */
2767
3152
  sourceNetworkID: string | undefined;
@@ -2771,6 +3156,7 @@ export interface ExportSourceNetworkCfnTemplateRequest {
2771
3156
  */
2772
3157
  export interface ExportSourceNetworkCfnTemplateResponse {
2773
3158
  /**
3159
+ * @public
2774
3160
  * <p>S3 bucket URL where the Source Network CloudFormation template was exported to.</p>
2775
3161
  */
2776
3162
  s3DestinationUrl?: string;
@@ -2781,10 +3167,12 @@ export interface ExportSourceNetworkCfnTemplateResponse {
2781
3167
  */
2782
3168
  export interface StartSourceNetworkRecoveryRequestNetworkEntry {
2783
3169
  /**
3170
+ * @public
2784
3171
  * <p>The ID of the Source Network you want to recover.</p>
2785
3172
  */
2786
3173
  sourceNetworkID: string | undefined;
2787
3174
  /**
3175
+ * @public
2788
3176
  * <p>CloudFormation stack name to be used for recovering the network.</p>
2789
3177
  */
2790
3178
  cfnStackName?: string;
@@ -2794,14 +3182,17 @@ export interface StartSourceNetworkRecoveryRequestNetworkEntry {
2794
3182
  */
2795
3183
  export interface StartSourceNetworkRecoveryRequest {
2796
3184
  /**
3185
+ * @public
2797
3186
  * <p>The Source Networks that we want to start a Recovery Job for.</p>
2798
3187
  */
2799
3188
  sourceNetworks: StartSourceNetworkRecoveryRequestNetworkEntry[] | undefined;
2800
3189
  /**
3190
+ * @public
2801
3191
  * <p>Don't update existing CloudFormation Stack, recover the network using a new stack.</p>
2802
3192
  */
2803
3193
  deployAsNew?: boolean;
2804
3194
  /**
3195
+ * @public
2805
3196
  * <p>The tags to be associated with the Source Network recovery Job.</p>
2806
3197
  */
2807
3198
  tags?: Record<string, string>;
@@ -2811,6 +3202,7 @@ export interface StartSourceNetworkRecoveryRequest {
2811
3202
  */
2812
3203
  export interface StartSourceNetworkRecoveryResponse {
2813
3204
  /**
3205
+ * @public
2814
3206
  * <p>The Source Network recovery Job.</p>
2815
3207
  */
2816
3208
  job?: Job;
@@ -2820,6 +3212,7 @@ export interface StartSourceNetworkRecoveryResponse {
2820
3212
  */
2821
3213
  export interface StartSourceNetworkReplicationRequest {
2822
3214
  /**
3215
+ * @public
2823
3216
  * <p>ID of the Source Network to replicate.</p>
2824
3217
  */
2825
3218
  sourceNetworkID: string | undefined;
@@ -2829,6 +3222,7 @@ export interface StartSourceNetworkReplicationRequest {
2829
3222
  */
2830
3223
  export interface StartSourceNetworkReplicationResponse {
2831
3224
  /**
3225
+ * @public
2832
3226
  * <p>Source Network which was requested for replication.</p>
2833
3227
  */
2834
3228
  sourceNetwork?: SourceNetwork;
@@ -2838,6 +3232,7 @@ export interface StartSourceNetworkReplicationResponse {
2838
3232
  */
2839
3233
  export interface StopSourceNetworkReplicationRequest {
2840
3234
  /**
3235
+ * @public
2841
3236
  * <p>ID of the Source Network to stop replication.</p>
2842
3237
  */
2843
3238
  sourceNetworkID: string | undefined;
@@ -2847,6 +3242,7 @@ export interface StopSourceNetworkReplicationRequest {
2847
3242
  */
2848
3243
  export interface StopSourceNetworkReplicationResponse {
2849
3244
  /**
3245
+ * @public
2850
3246
  * <p>Source Network which was requested to stop replication.</p>
2851
3247
  */
2852
3248
  sourceNetwork?: SourceNetwork;
@@ -2856,6 +3252,7 @@ export interface StopSourceNetworkReplicationResponse {
2856
3252
  */
2857
3253
  export interface GetLaunchConfigurationRequest {
2858
3254
  /**
3255
+ * @public
2859
3256
  * <p>The ID of the Source Server that we want to retrieve a Launch Configuration for.</p>
2860
3257
  */
2861
3258
  sourceServerID: string | undefined;
@@ -2865,34 +3262,42 @@ export interface GetLaunchConfigurationRequest {
2865
3262
  */
2866
3263
  export interface LaunchConfiguration {
2867
3264
  /**
3265
+ * @public
2868
3266
  * <p>The ID of the Source Server for this launch configuration.</p>
2869
3267
  */
2870
3268
  sourceServerID?: string;
2871
3269
  /**
3270
+ * @public
2872
3271
  * <p>The name of the launch configuration.</p>
2873
3272
  */
2874
3273
  name?: string;
2875
3274
  /**
3275
+ * @public
2876
3276
  * <p>The EC2 launch template ID of this launch configuration.</p>
2877
3277
  */
2878
3278
  ec2LaunchTemplateID?: string;
2879
3279
  /**
3280
+ * @public
2880
3281
  * <p>The state of the Recovery Instance in EC2 after the recovery operation.</p>
2881
3282
  */
2882
3283
  launchDisposition?: LaunchDisposition | string;
2883
3284
  /**
3285
+ * @public
2884
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>
2885
3287
  */
2886
3288
  targetInstanceTypeRightSizingMethod?: TargetInstanceTypeRightSizingMethod | string;
2887
3289
  /**
3290
+ * @public
2888
3291
  * <p>Whether we should copy the Private IP of the Source Server to the Recovery Instance.</p>
2889
3292
  */
2890
3293
  copyPrivateIp?: boolean;
2891
3294
  /**
3295
+ * @public
2892
3296
  * <p>Whether we want to copy the tags of the Source Server to the EC2 machine of the Recovery Instance.</p>
2893
3297
  */
2894
3298
  copyTags?: boolean;
2895
3299
  /**
3300
+ * @public
2896
3301
  * <p>The licensing configuration to be used for this launch configuration.</p>
2897
3302
  */
2898
3303
  licensing?: Licensing;
@@ -2902,6 +3307,7 @@ export interface LaunchConfiguration {
2902
3307
  */
2903
3308
  export interface GetReplicationConfigurationRequest {
2904
3309
  /**
3310
+ * @public
2905
3311
  * <p>The ID of the Source Serve for this Replication Configuration.r</p>
2906
3312
  */
2907
3313
  sourceServerID: string | undefined;
@@ -2929,26 +3335,32 @@ export type ReplicationConfigurationReplicatedDiskStagingDiskType = (typeof Repl
2929
3335
  */
2930
3336
  export interface ReplicationConfigurationReplicatedDisk {
2931
3337
  /**
3338
+ * @public
2932
3339
  * <p>The name of the device.</p>
2933
3340
  */
2934
3341
  deviceName?: string;
2935
3342
  /**
3343
+ * @public
2936
3344
  * <p>Whether to boot from this disk or not.</p>
2937
3345
  */
2938
3346
  isBootDisk?: boolean;
2939
3347
  /**
3348
+ * @public
2940
3349
  * <p>The Staging Disk EBS volume type to be used during replication.</p>
2941
3350
  */
2942
3351
  stagingDiskType?: ReplicationConfigurationReplicatedDiskStagingDiskType | string;
2943
3352
  /**
3353
+ * @public
2944
3354
  * <p>The requested number of I/O operations per second (IOPS).</p>
2945
3355
  */
2946
3356
  iops?: number;
2947
3357
  /**
3358
+ * @public
2948
3359
  * <p>The throughput to use for the EBS volume in MiB/s. This parameter is valid only for gp3 volumes.</p>
2949
3360
  */
2950
3361
  throughput?: number;
2951
3362
  /**
3363
+ * @public
2952
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>
2953
3365
  */
2954
3366
  optimizedStagingDiskType?: ReplicationConfigurationReplicatedDiskStagingDiskType | string;
@@ -2958,70 +3370,87 @@ export interface ReplicationConfigurationReplicatedDisk {
2958
3370
  */
2959
3371
  export interface ReplicationConfiguration {
2960
3372
  /**
3373
+ * @public
2961
3374
  * <p>The ID of the Source Server for this Replication Configuration.</p>
2962
3375
  */
2963
3376
  sourceServerID?: string;
2964
3377
  /**
3378
+ * @public
2965
3379
  * <p>The name of the Replication Configuration.</p>
2966
3380
  */
2967
3381
  name?: string;
2968
3382
  /**
3383
+ * @public
2969
3384
  * <p>The subnet to be used by the replication staging area.</p>
2970
3385
  */
2971
3386
  stagingAreaSubnetId?: string;
2972
3387
  /**
3388
+ * @public
2973
3389
  * <p>Whether to associate the default Elastic Disaster Recovery Security group with the Replication Configuration.</p>
2974
3390
  */
2975
3391
  associateDefaultSecurityGroup?: boolean;
2976
3392
  /**
3393
+ * @public
2977
3394
  * <p>The security group IDs that will be used by the replication server.</p>
2978
3395
  */
2979
3396
  replicationServersSecurityGroupsIDs?: string[];
2980
3397
  /**
3398
+ * @public
2981
3399
  * <p>The instance type to be used for the replication server.</p>
2982
3400
  */
2983
3401
  replicationServerInstanceType?: string;
2984
3402
  /**
3403
+ * @public
2985
3404
  * <p>Whether to use a dedicated Replication Server in the replication staging area.</p>
2986
3405
  */
2987
3406
  useDedicatedReplicationServer?: boolean;
2988
3407
  /**
3408
+ * @public
2989
3409
  * <p>The Staging Disk EBS volume type to be used during replication.</p>
2990
3410
  */
2991
3411
  defaultLargeStagingDiskType?: ReplicationConfigurationDefaultLargeStagingDiskType | string;
2992
3412
  /**
3413
+ * @public
2993
3414
  * <p>The configuration of the disks of the Source Server to be replicated.</p>
2994
3415
  */
2995
3416
  replicatedDisks?: ReplicationConfigurationReplicatedDisk[];
2996
3417
  /**
3418
+ * @public
2997
3419
  * <p>The type of EBS encryption to be used during replication.</p>
2998
3420
  */
2999
3421
  ebsEncryption?: ReplicationConfigurationEbsEncryption | string;
3000
3422
  /**
3423
+ * @public
3001
3424
  * <p>The ARN of the EBS encryption key to be used during replication.</p>
3002
3425
  */
3003
3426
  ebsEncryptionKeyArn?: string;
3004
3427
  /**
3428
+ * @public
3005
3429
  * <p>Configure bandwidth throttling for the outbound data transfer rate of the Source Server in Mbps.</p>
3006
3430
  */
3007
3431
  bandwidthThrottling?: number;
3008
3432
  /**
3433
+ * @public
3009
3434
  * <p>The data plane routing mechanism that will be used for replication.</p>
3010
3435
  */
3011
3436
  dataPlaneRouting?: ReplicationConfigurationDataPlaneRouting | string;
3012
3437
  /**
3438
+ * @public
3013
3439
  * <p>Whether to create a Public IP for the Recovery Instance by default.</p>
3014
3440
  */
3015
3441
  createPublicIP?: boolean;
3016
3442
  /**
3443
+ * @public
3017
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>
3018
3445
  */
3019
3446
  stagingAreaTags?: Record<string, string>;
3020
3447
  /**
3448
+ * @public
3021
3449
  * <p>The Point in time (PIT) policy to manage snapshots taken during replication.</p>
3022
3450
  */
3023
3451
  pitPolicy?: PITPolicyRule[];
3024
3452
  /**
3453
+ * @public
3025
3454
  * <p>Whether to allow the AWS replication agent to automatically replicate newly added disks.</p>
3026
3455
  */
3027
3456
  autoReplicateNewDisks?: boolean;
@@ -3031,6 +3460,7 @@ export interface ReplicationConfiguration {
3031
3460
  */
3032
3461
  export interface RetryDataReplicationRequest {
3033
3462
  /**
3463
+ * @public
3034
3464
  * <p>The ID of the Source Server whose data replication should be retried.</p>
3035
3465
  */
3036
3466
  sourceServerID: string | undefined;
@@ -3041,10 +3471,12 @@ export interface RetryDataReplicationRequest {
3041
3471
  */
3042
3472
  export interface StartRecoveryRequestSourceServer {
3043
3473
  /**
3474
+ * @public
3044
3475
  * <p>The ID of the Source Server you want to recover.</p>
3045
3476
  */
3046
3477
  sourceServerID: string | undefined;
3047
3478
  /**
3479
+ * @public
3048
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>
3049
3481
  */
3050
3482
  recoverySnapshotID?: string;
@@ -3054,14 +3486,17 @@ export interface StartRecoveryRequestSourceServer {
3054
3486
  */
3055
3487
  export interface StartRecoveryRequest {
3056
3488
  /**
3489
+ * @public
3057
3490
  * <p>The Source Servers that we want to start a Recovery Job for.</p>
3058
3491
  */
3059
3492
  sourceServers: StartRecoveryRequestSourceServer[] | undefined;
3060
3493
  /**
3494
+ * @public
3061
3495
  * <p>Whether this Source Server Recovery operation is a drill or not.</p>
3062
3496
  */
3063
3497
  isDrill?: boolean;
3064
3498
  /**
3499
+ * @public
3065
3500
  * <p>The tags to be associated with the Recovery Job.</p>
3066
3501
  */
3067
3502
  tags?: Record<string, string>;
@@ -3071,6 +3506,7 @@ export interface StartRecoveryRequest {
3071
3506
  */
3072
3507
  export interface StartRecoveryResponse {
3073
3508
  /**
3509
+ * @public
3074
3510
  * <p>The Recovery Job.</p>
3075
3511
  */
3076
3512
  job?: Job;
@@ -3080,6 +3516,7 @@ export interface StartRecoveryResponse {
3080
3516
  */
3081
3517
  export interface StartReplicationRequest {
3082
3518
  /**
3519
+ * @public
3083
3520
  * <p>The ID of the Source Server to start replication for.</p>
3084
3521
  */
3085
3522
  sourceServerID: string | undefined;
@@ -3089,6 +3526,7 @@ export interface StartReplicationRequest {
3089
3526
  */
3090
3527
  export interface StartReplicationResponse {
3091
3528
  /**
3529
+ * @public
3092
3530
  * <p>The Source Server that this action was targeted on.</p>
3093
3531
  */
3094
3532
  sourceServer?: SourceServer;
@@ -3098,6 +3536,7 @@ export interface StartReplicationResponse {
3098
3536
  */
3099
3537
  export interface StopReplicationRequest {
3100
3538
  /**
3539
+ * @public
3101
3540
  * <p>The ID of the Source Server to stop replication for.</p>
3102
3541
  */
3103
3542
  sourceServerID: string | undefined;
@@ -3107,6 +3546,7 @@ export interface StopReplicationRequest {
3107
3546
  */
3108
3547
  export interface StopReplicationResponse {
3109
3548
  /**
3549
+ * @public
3110
3550
  * <p>The Source Server that this action was targeted on.</p>
3111
3551
  */
3112
3552
  sourceServer?: SourceServer;
@@ -3116,30 +3556,37 @@ export interface StopReplicationResponse {
3116
3556
  */
3117
3557
  export interface UpdateLaunchConfigurationRequest {
3118
3558
  /**
3559
+ * @public
3119
3560
  * <p>The ID of the Source Server that we want to retrieve a Launch Configuration for.</p>
3120
3561
  */
3121
3562
  sourceServerID: string | undefined;
3122
3563
  /**
3564
+ * @public
3123
3565
  * <p>The name of the launch configuration.</p>
3124
3566
  */
3125
3567
  name?: string;
3126
3568
  /**
3569
+ * @public
3127
3570
  * <p>The state of the Recovery Instance in EC2 after the recovery operation.</p>
3128
3571
  */
3129
3572
  launchDisposition?: LaunchDisposition | string;
3130
3573
  /**
3574
+ * @public
3131
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>
3132
3576
  */
3133
3577
  targetInstanceTypeRightSizingMethod?: TargetInstanceTypeRightSizingMethod | string;
3134
3578
  /**
3579
+ * @public
3135
3580
  * <p>Whether we should copy the Private IP of the Source Server to the Recovery Instance.</p>
3136
3581
  */
3137
3582
  copyPrivateIp?: boolean;
3138
3583
  /**
3584
+ * @public
3139
3585
  * <p>Whether we want to copy the tags of the Source Server to the EC2 machine of the Recovery Instance.</p>
3140
3586
  */
3141
3587
  copyTags?: boolean;
3142
3588
  /**
3589
+ * @public
3143
3590
  * <p>The licensing configuration to be used for this launch configuration.</p>
3144
3591
  */
3145
3592
  licensing?: Licensing;
@@ -3149,70 +3596,87 @@ export interface UpdateLaunchConfigurationRequest {
3149
3596
  */
3150
3597
  export interface UpdateReplicationConfigurationRequest {
3151
3598
  /**
3599
+ * @public
3152
3600
  * <p>The ID of the Source Server for this Replication Configuration.</p>
3153
3601
  */
3154
3602
  sourceServerID: string | undefined;
3155
3603
  /**
3604
+ * @public
3156
3605
  * <p>The name of the Replication Configuration.</p>
3157
3606
  */
3158
3607
  name?: string;
3159
3608
  /**
3609
+ * @public
3160
3610
  * <p>The subnet to be used by the replication staging area.</p>
3161
3611
  */
3162
3612
  stagingAreaSubnetId?: string;
3163
3613
  /**
3614
+ * @public
3164
3615
  * <p>Whether to associate the default Elastic Disaster Recovery Security group with the Replication Configuration.</p>
3165
3616
  */
3166
3617
  associateDefaultSecurityGroup?: boolean;
3167
3618
  /**
3619
+ * @public
3168
3620
  * <p>The security group IDs that will be used by the replication server.</p>
3169
3621
  */
3170
3622
  replicationServersSecurityGroupsIDs?: string[];
3171
3623
  /**
3624
+ * @public
3172
3625
  * <p>The instance type to be used for the replication server.</p>
3173
3626
  */
3174
3627
  replicationServerInstanceType?: string;
3175
3628
  /**
3629
+ * @public
3176
3630
  * <p>Whether to use a dedicated Replication Server in the replication staging area.</p>
3177
3631
  */
3178
3632
  useDedicatedReplicationServer?: boolean;
3179
3633
  /**
3634
+ * @public
3180
3635
  * <p>The Staging Disk EBS volume type to be used during replication.</p>
3181
3636
  */
3182
3637
  defaultLargeStagingDiskType?: ReplicationConfigurationDefaultLargeStagingDiskType | string;
3183
3638
  /**
3639
+ * @public
3184
3640
  * <p>The configuration of the disks of the Source Server to be replicated.</p>
3185
3641
  */
3186
3642
  replicatedDisks?: ReplicationConfigurationReplicatedDisk[];
3187
3643
  /**
3644
+ * @public
3188
3645
  * <p>The type of EBS encryption to be used during replication.</p>
3189
3646
  */
3190
3647
  ebsEncryption?: ReplicationConfigurationEbsEncryption | string;
3191
3648
  /**
3649
+ * @public
3192
3650
  * <p>The ARN of the EBS encryption key to be used during replication.</p>
3193
3651
  */
3194
3652
  ebsEncryptionKeyArn?: string;
3195
3653
  /**
3654
+ * @public
3196
3655
  * <p>Configure bandwidth throttling for the outbound data transfer rate of the Source Server in Mbps.</p>
3197
3656
  */
3198
3657
  bandwidthThrottling?: number;
3199
3658
  /**
3659
+ * @public
3200
3660
  * <p>The data plane routing mechanism that will be used for replication.</p>
3201
3661
  */
3202
3662
  dataPlaneRouting?: ReplicationConfigurationDataPlaneRouting | string;
3203
3663
  /**
3664
+ * @public
3204
3665
  * <p>Whether to create a Public IP for the Recovery Instance by default.</p>
3205
3666
  */
3206
3667
  createPublicIP?: boolean;
3207
3668
  /**
3669
+ * @public
3208
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>
3209
3671
  */
3210
3672
  stagingAreaTags?: Record<string, string>;
3211
3673
  /**
3674
+ * @public
3212
3675
  * <p>The Point in time (PIT) policy to manage snapshots taken during replication.</p>
3213
3676
  */
3214
3677
  pitPolicy?: PITPolicyRule[];
3215
3678
  /**
3679
+ * @public
3216
3680
  * <p>Whether to allow the AWS replication agent to automatically replicate newly added disks.</p>
3217
3681
  */
3218
3682
  autoReplicateNewDisks?: boolean;
@@ -3222,10 +3686,12 @@ export interface UpdateReplicationConfigurationRequest {
3222
3686
  */
3223
3687
  export interface TagResourceRequest {
3224
3688
  /**
3689
+ * @public
3225
3690
  * <p>ARN of the resource for which tags are to be added or updated.</p>
3226
3691
  */
3227
3692
  resourceArn: string | undefined;
3228
3693
  /**
3694
+ * @public
3229
3695
  * <p>Array of tags to be added or updated.</p>
3230
3696
  */
3231
3697
  tags: Record<string, string> | undefined;
@@ -3235,10 +3701,12 @@ export interface TagResourceRequest {
3235
3701
  */
3236
3702
  export interface UntagResourceRequest {
3237
3703
  /**
3704
+ * @public
3238
3705
  * <p>ARN of the resource for which tags are to be removed.</p>
3239
3706
  */
3240
3707
  resourceArn: string | undefined;
3241
3708
  /**
3709
+ * @public
3242
3710
  * <p>Array of tags to be removed.</p>
3243
3711
  */
3244
3712
  tagKeys: string[] | undefined;