@aws-sdk/client-drs 3.687.0 → 3.692.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.
@@ -7,7 +7,7 @@ import { DrsServiceException as __BaseException } from "./DrsServiceException";
7
7
  export declare class AccessDeniedException extends __BaseException {
8
8
  readonly name: "AccessDeniedException";
9
9
  readonly $fault: "client";
10
- code?: string;
10
+ code?: string | undefined;
11
11
  /**
12
12
  * @internal
13
13
  */
@@ -22,7 +22,7 @@ export interface Account {
22
22
  * <p>Account ID of AWS account.</p>
23
23
  * @public
24
24
  */
25
- accountID?: string;
25
+ accountID?: string | undefined;
26
26
  }
27
27
  /**
28
28
  * @public
@@ -112,12 +112,12 @@ export interface ParticipatingResource {
112
112
  * <p>The ID of a participating resource.</p>
113
113
  * @public
114
114
  */
115
- participatingResourceID?: ParticipatingResourceID;
115
+ participatingResourceID?: ParticipatingResourceID | undefined;
116
116
  /**
117
117
  * <p>The launch status of a participating resource.</p>
118
118
  * @public
119
119
  */
120
- launchStatus?: LaunchStatus;
120
+ launchStatus?: LaunchStatus | undefined;
121
121
  }
122
122
  /**
123
123
  * @public
@@ -155,12 +155,12 @@ export interface LaunchActionParameter {
155
155
  * <p>Value.</p>
156
156
  * @public
157
157
  */
158
- value?: string;
158
+ value?: string | undefined;
159
159
  /**
160
160
  * <p>Type.</p>
161
161
  * @public
162
162
  */
163
- type?: LaunchActionParameterType;
163
+ type?: LaunchActionParameterType | undefined;
164
164
  }
165
165
  /**
166
166
  * @public
@@ -183,57 +183,57 @@ export interface LaunchAction {
183
183
  * <p>Launch action Id.</p>
184
184
  * @public
185
185
  */
186
- actionId?: string;
186
+ actionId?: string | undefined;
187
187
  /**
188
188
  * <p>Launch action code.</p>
189
189
  * @public
190
190
  */
191
- actionCode?: string;
191
+ actionCode?: string | undefined;
192
192
  /**
193
193
  * <p>Launch action type.</p>
194
194
  * @public
195
195
  */
196
- type?: LaunchActionType;
196
+ type?: LaunchActionType | undefined;
197
197
  /**
198
198
  * <p>Launch action name.</p>
199
199
  * @public
200
200
  */
201
- name?: string;
201
+ name?: string | undefined;
202
202
  /**
203
203
  * <p>Whether the launch action is active.</p>
204
204
  * @public
205
205
  */
206
- active?: boolean;
206
+ active?: boolean | undefined;
207
207
  /**
208
208
  * <p>Launch action order.</p>
209
209
  * @public
210
210
  */
211
- order?: number;
211
+ order?: number | undefined;
212
212
  /**
213
213
  * <p>Launch action version.</p>
214
214
  * @public
215
215
  */
216
- actionVersion?: string;
216
+ actionVersion?: string | undefined;
217
217
  /**
218
218
  * <p>Whether the launch will not be marked as failed if this action fails.</p>
219
219
  * @public
220
220
  */
221
- optional?: boolean;
221
+ optional?: boolean | undefined;
222
222
  /**
223
223
  * <p>Launch action parameters.</p>
224
224
  * @public
225
225
  */
226
- parameters?: Record<string, LaunchActionParameter>;
226
+ parameters?: Record<string, LaunchActionParameter> | undefined;
227
227
  /**
228
228
  * <p>Launch action description.</p>
229
229
  * @public
230
230
  */
231
- description?: string;
231
+ description?: string | undefined;
232
232
  /**
233
233
  * <p>Launch action category.</p>
234
234
  * @public
235
235
  */
236
- category?: LaunchActionCategory;
236
+ category?: LaunchActionCategory | undefined;
237
237
  }
238
238
  /**
239
239
  * @public
@@ -257,22 +257,22 @@ export interface LaunchActionRun {
257
257
  * <p>Action.</p>
258
258
  * @public
259
259
  */
260
- action?: LaunchAction;
260
+ action?: LaunchAction | undefined;
261
261
  /**
262
262
  * <p>Run Id.</p>
263
263
  * @public
264
264
  */
265
- runId?: string;
265
+ runId?: string | undefined;
266
266
  /**
267
267
  * <p>Run status.</p>
268
268
  * @public
269
269
  */
270
- status?: LaunchActionRunStatus;
270
+ status?: LaunchActionRunStatus | undefined;
271
271
  /**
272
272
  * <p>Failure reason.</p>
273
273
  * @public
274
274
  */
275
- failureReason?: string;
275
+ failureReason?: string | undefined;
276
276
  }
277
277
  /**
278
278
  * <p>Launch actions status.</p>
@@ -283,12 +283,12 @@ export interface LaunchActionsStatus {
283
283
  * <p>Time where the AWS Systems Manager was detected as running on the launched instance.</p>
284
284
  * @public
285
285
  */
286
- ssmAgentDiscoveryDatetime?: string;
286
+ ssmAgentDiscoveryDatetime?: string | undefined;
287
287
  /**
288
288
  * <p>List of post launch action status.</p>
289
289
  * @public
290
290
  */
291
- runs?: LaunchActionRun[];
291
+ runs?: LaunchActionRun[] | undefined;
292
292
  }
293
293
  /**
294
294
  * <p>Represents a server participating in an asynchronous Job.</p>
@@ -299,22 +299,22 @@ export interface ParticipatingServer {
299
299
  * <p>The Source Server ID of a participating server.</p>
300
300
  * @public
301
301
  */
302
- sourceServerID?: string;
302
+ sourceServerID?: string | undefined;
303
303
  /**
304
304
  * <p>The Recovery Instance ID of a participating server.</p>
305
305
  * @public
306
306
  */
307
- recoveryInstanceID?: string;
307
+ recoveryInstanceID?: string | undefined;
308
308
  /**
309
309
  * <p>The launch status of a participating server.</p>
310
310
  * @public
311
311
  */
312
- launchStatus?: LaunchStatus;
312
+ launchStatus?: LaunchStatus | undefined;
313
313
  /**
314
314
  * <p>The post-launch action runs of a participating server.</p>
315
315
  * @public
316
316
  */
317
- launchActionsStatus?: LaunchActionsStatus;
317
+ launchActionsStatus?: LaunchActionsStatus | undefined;
318
318
  }
319
319
  /**
320
320
  * @public
@@ -356,47 +356,47 @@ export interface Job {
356
356
  * <p>The ARN of a Job.</p>
357
357
  * @public
358
358
  */
359
- arn?: string;
359
+ arn?: string | undefined;
360
360
  /**
361
361
  * <p>The type of the Job.</p>
362
362
  * @public
363
363
  */
364
- type?: JobType;
364
+ type?: JobType | undefined;
365
365
  /**
366
366
  * <p>A string representing who initiated the Job.</p>
367
367
  * @public
368
368
  */
369
- initiatedBy?: InitiatedBy;
369
+ initiatedBy?: InitiatedBy | undefined;
370
370
  /**
371
371
  * <p>The date and time of when the Job was created.</p>
372
372
  * @public
373
373
  */
374
- creationDateTime?: string;
374
+ creationDateTime?: string | undefined;
375
375
  /**
376
376
  * <p>The date and time of when the Job ended.</p>
377
377
  * @public
378
378
  */
379
- endDateTime?: string;
379
+ endDateTime?: string | undefined;
380
380
  /**
381
381
  * <p>The status of the Job.</p>
382
382
  * @public
383
383
  */
384
- status?: JobStatus;
384
+ status?: JobStatus | undefined;
385
385
  /**
386
386
  * <p>A list of servers that the Job is acting upon.</p>
387
387
  * @public
388
388
  */
389
- participatingServers?: ParticipatingServer[];
389
+ participatingServers?: ParticipatingServer[] | undefined;
390
390
  /**
391
391
  * <p>A list of tags associated with the Job.</p>
392
392
  * @public
393
393
  */
394
- tags?: Record<string, string>;
394
+ tags?: Record<string, string> | undefined;
395
395
  /**
396
396
  * <p>A list of resources that the Job is acting upon.</p>
397
397
  * @public
398
398
  */
399
- participatingResources?: ParticipatingResource[];
399
+ participatingResources?: ParticipatingResource[] | undefined;
400
400
  }
401
401
  /**
402
402
  * @public
@@ -406,7 +406,7 @@ export interface AssociateSourceNetworkStackResponse {
406
406
  * <p>The Source Network association Job.</p>
407
407
  * @public
408
408
  */
409
- job?: Job;
409
+ job?: Job | undefined;
410
410
  }
411
411
  /**
412
412
  * <p>The request could not be completed due to a conflict with the current state of the target resource.</p>
@@ -415,17 +415,17 @@ export interface AssociateSourceNetworkStackResponse {
415
415
  export declare class ConflictException extends __BaseException {
416
416
  readonly name: "ConflictException";
417
417
  readonly $fault: "client";
418
- code?: string;
418
+ code?: string | undefined;
419
419
  /**
420
420
  * <p>The ID of the resource.</p>
421
421
  * @public
422
422
  */
423
- resourceId?: string;
423
+ resourceId?: string | undefined;
424
424
  /**
425
425
  * <p>The type of the resource.</p>
426
426
  * @public
427
427
  */
428
- resourceType?: string;
428
+ resourceType?: string | undefined;
429
429
  /**
430
430
  * @internal
431
431
  */
@@ -442,7 +442,7 @@ export declare class InternalServerException extends __BaseException {
442
442
  * <p>The number of seconds after which the request should be safe to retry.</p>
443
443
  * @public
444
444
  */
445
- retryAfterSeconds?: number;
445
+ retryAfterSeconds?: number | undefined;
446
446
  /**
447
447
  * @internal
448
448
  */
@@ -455,17 +455,17 @@ export declare class InternalServerException extends __BaseException {
455
455
  export declare class ResourceNotFoundException extends __BaseException {
456
456
  readonly name: "ResourceNotFoundException";
457
457
  readonly $fault: "client";
458
- code?: string;
458
+ code?: string | undefined;
459
459
  /**
460
460
  * <p>The ID of the resource.</p>
461
461
  * @public
462
462
  */
463
- resourceId?: string;
463
+ resourceId?: string | undefined;
464
464
  /**
465
465
  * <p>The type of the resource.</p>
466
466
  * @public
467
467
  */
468
- resourceType?: string;
468
+ resourceType?: string | undefined;
469
469
  /**
470
470
  * @internal
471
471
  */
@@ -478,27 +478,27 @@ export declare class ResourceNotFoundException extends __BaseException {
478
478
  export declare class ServiceQuotaExceededException extends __BaseException {
479
479
  readonly name: "ServiceQuotaExceededException";
480
480
  readonly $fault: "client";
481
- code?: string;
481
+ code?: string | undefined;
482
482
  /**
483
483
  * <p>The ID of the resource.</p>
484
484
  * @public
485
485
  */
486
- resourceId?: string;
486
+ resourceId?: string | undefined;
487
487
  /**
488
488
  * <p>The type of the resource.</p>
489
489
  * @public
490
490
  */
491
- resourceType?: string;
491
+ resourceType?: string | undefined;
492
492
  /**
493
493
  * <p>Service code.</p>
494
494
  * @public
495
495
  */
496
- serviceCode?: string;
496
+ serviceCode?: string | undefined;
497
497
  /**
498
498
  * <p>Quota code.</p>
499
499
  * @public
500
500
  */
501
- quotaCode?: string;
501
+ quotaCode?: string | undefined;
502
502
  /**
503
503
  * @internal
504
504
  */
@@ -515,17 +515,17 @@ export declare class ThrottlingException extends __BaseException {
515
515
  * <p>Service code.</p>
516
516
  * @public
517
517
  */
518
- serviceCode?: string;
518
+ serviceCode?: string | undefined;
519
519
  /**
520
520
  * <p>Quota code.</p>
521
521
  * @public
522
522
  */
523
- quotaCode?: string;
523
+ quotaCode?: string | undefined;
524
524
  /**
525
525
  * <p>The number of seconds after which the request should be safe to retry.</p>
526
526
  * @public
527
527
  */
528
- retryAfterSeconds?: string;
528
+ retryAfterSeconds?: string | undefined;
529
529
  /**
530
530
  * @internal
531
531
  */
@@ -538,7 +538,7 @@ export declare class ThrottlingException extends __BaseException {
538
538
  export declare class UninitializedAccountException extends __BaseException {
539
539
  readonly name: "UninitializedAccountException";
540
540
  readonly $fault: "client";
541
- code?: string;
541
+ code?: string | undefined;
542
542
  /**
543
543
  * @internal
544
544
  */
@@ -553,12 +553,12 @@ export interface ValidationExceptionField {
553
553
  * <p>Validate exception field name.</p>
554
554
  * @public
555
555
  */
556
- name?: string;
556
+ name?: string | undefined;
557
557
  /**
558
558
  * <p>Validate exception field message.</p>
559
559
  * @public
560
560
  */
561
- message?: string;
561
+ message?: string | undefined;
562
562
  }
563
563
  /**
564
564
  * @public
@@ -581,17 +581,17 @@ export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof
581
581
  export declare class ValidationException extends __BaseException {
582
582
  readonly name: "ValidationException";
583
583
  readonly $fault: "client";
584
- code?: string;
584
+ code?: string | undefined;
585
585
  /**
586
586
  * <p>Validation exception reason.</p>
587
587
  * @public
588
588
  */
589
- reason?: ValidationExceptionReason;
589
+ reason?: ValidationExceptionReason | undefined;
590
590
  /**
591
591
  * <p>A list of fields that failed validation.</p>
592
592
  * @public
593
593
  */
594
- fieldList?: ValidationExceptionField[];
594
+ fieldList?: ValidationExceptionField[] | undefined;
595
595
  /**
596
596
  * @internal
597
597
  */
@@ -618,12 +618,12 @@ export interface ProductCode {
618
618
  * <p>Id of a product code associated with a volume.</p>
619
619
  * @public
620
620
  */
621
- productCodeId?: string;
621
+ productCodeId?: string | undefined;
622
622
  /**
623
623
  * <p>Mode of a product code associated with a volume.</p>
624
624
  * @public
625
625
  */
626
- productCodeMode?: ProductCodeMode;
626
+ productCodeMode?: ProductCodeMode | undefined;
627
627
  }
628
628
  /**
629
629
  * <p>Properties of a conversion job</p>
@@ -634,32 +634,32 @@ export interface ConversionProperties {
634
634
  * <p>A mapping between the volumes being converted and the converted snapshot ids</p>
635
635
  * @public
636
636
  */
637
- volumeToConversionMap?: Record<string, Record<string, string>>;
637
+ volumeToConversionMap?: Record<string, Record<string, string>> | undefined;
638
638
  /**
639
639
  * <p>The root volume name of a conversion job</p>
640
640
  * @public
641
641
  */
642
- rootVolumeName?: string;
642
+ rootVolumeName?: string | undefined;
643
643
  /**
644
644
  * <p>Whether the volume being converted uses UEFI or not</p>
645
645
  * @public
646
646
  */
647
- forceUefi?: boolean;
647
+ forceUefi?: boolean | undefined;
648
648
  /**
649
649
  * <p>The timestamp of when the snapshot being converted was taken</p>
650
650
  * @public
651
651
  */
652
- dataTimestamp?: string;
652
+ dataTimestamp?: string | undefined;
653
653
  /**
654
654
  * <p>A mapping between the volumes and their sizes</p>
655
655
  * @public
656
656
  */
657
- volumeToVolumeSize?: Record<string, number>;
657
+ volumeToVolumeSize?: Record<string, number> | undefined;
658
658
  /**
659
659
  * <p>A mapping between the volumes being converted and the product codes associated with them</p>
660
660
  * @public
661
661
  */
662
- volumeToProductCodes?: Record<string, ProductCode[]>;
662
+ volumeToProductCodes?: Record<string, ProductCode[]> | undefined;
663
663
  }
664
664
  /**
665
665
  * <p>Information about a server's CPU.</p>
@@ -670,12 +670,12 @@ export interface CPU {
670
670
  * <p>The number of CPU cores.</p>
671
671
  * @public
672
672
  */
673
- cores?: number;
673
+ cores?: number | undefined;
674
674
  /**
675
675
  * <p>The model name of the CPU.</p>
676
676
  * @public
677
677
  */
678
- modelName?: string;
678
+ modelName?: string | undefined;
679
679
  }
680
680
  /**
681
681
  * @public
@@ -690,7 +690,7 @@ export interface CreateExtendedSourceServerRequest {
690
690
  * <p>A list of tags associated with the extended source server.</p>
691
691
  * @public
692
692
  */
693
- tags?: Record<string, string>;
693
+ tags?: Record<string, string> | undefined;
694
694
  }
695
695
  /**
696
696
  * @public
@@ -725,12 +725,12 @@ export interface DataReplicationError {
725
725
  * <p>Error in data replication.</p>
726
726
  * @public
727
727
  */
728
- error?: DataReplicationErrorString;
728
+ error?: DataReplicationErrorString | undefined;
729
729
  /**
730
730
  * <p>Error in data replication.</p>
731
731
  * @public
732
732
  */
733
- rawError?: string;
733
+ rawError?: string | undefined;
734
734
  }
735
735
  /**
736
736
  * @public
@@ -777,12 +777,12 @@ export interface DataReplicationInitiationStep {
777
777
  * <p>The name of the step.</p>
778
778
  * @public
779
779
  */
780
- name?: DataReplicationInitiationStepName;
780
+ name?: DataReplicationInitiationStepName | undefined;
781
781
  /**
782
782
  * <p>The status of the step.</p>
783
783
  * @public
784
784
  */
785
- status?: DataReplicationInitiationStepStatus;
785
+ status?: DataReplicationInitiationStepStatus | undefined;
786
786
  }
787
787
  /**
788
788
  * <p>Data replication initiation.</p>
@@ -793,17 +793,17 @@ export interface DataReplicationInitiation {
793
793
  * <p>The date and time of the current attempt to initiate data replication.</p>
794
794
  * @public
795
795
  */
796
- startDateTime?: string;
796
+ startDateTime?: string | undefined;
797
797
  /**
798
798
  * <p>The date and time of the next attempt to initiate data replication.</p>
799
799
  * @public
800
800
  */
801
- nextAttemptDateTime?: string;
801
+ nextAttemptDateTime?: string | undefined;
802
802
  /**
803
803
  * <p>The steps of the current attempt to initiate data replication.</p>
804
804
  * @public
805
805
  */
806
- steps?: DataReplicationInitiationStep[];
806
+ steps?: DataReplicationInitiationStep[] | undefined;
807
807
  }
808
808
  /**
809
809
  * @public
@@ -849,32 +849,32 @@ export interface DataReplicationInfoReplicatedDisk {
849
849
  * <p>The name of the device.</p>
850
850
  * @public
851
851
  */
852
- deviceName?: string;
852
+ deviceName?: string | undefined;
853
853
  /**
854
854
  * <p>The total amount of data to be replicated in bytes.</p>
855
855
  * @public
856
856
  */
857
- totalStorageBytes?: number;
857
+ totalStorageBytes?: number | undefined;
858
858
  /**
859
859
  * <p>The amount of data replicated so far in bytes.</p>
860
860
  * @public
861
861
  */
862
- replicatedStorageBytes?: number;
862
+ replicatedStorageBytes?: number | undefined;
863
863
  /**
864
864
  * <p>The amount of data to be rescanned in bytes.</p>
865
865
  * @public
866
866
  */
867
- rescannedStorageBytes?: number;
867
+ rescannedStorageBytes?: number | undefined;
868
868
  /**
869
869
  * <p>The size of the replication backlog in bytes.</p>
870
870
  * @public
871
871
  */
872
- backloggedStorageBytes?: number;
872
+ backloggedStorageBytes?: number | undefined;
873
873
  /**
874
874
  * <p>The status of the volume.</p>
875
875
  * @public
876
876
  */
877
- volumeStatus?: VolumeStatus;
877
+ volumeStatus?: VolumeStatus | undefined;
878
878
  }
879
879
  /**
880
880
  * <p>Information about Data Replication</p>
@@ -885,42 +885,42 @@ export interface DataReplicationInfo {
885
885
  * <p>Data replication lag duration.</p>
886
886
  * @public
887
887
  */
888
- lagDuration?: string;
888
+ lagDuration?: string | undefined;
889
889
  /**
890
890
  * <p>An estimate of when the data replication will be completed.</p>
891
891
  * @public
892
892
  */
893
- etaDateTime?: string;
893
+ etaDateTime?: string | undefined;
894
894
  /**
895
895
  * <p>The disks that should be replicated.</p>
896
896
  * @public
897
897
  */
898
- replicatedDisks?: DataReplicationInfoReplicatedDisk[];
898
+ replicatedDisks?: DataReplicationInfoReplicatedDisk[] | undefined;
899
899
  /**
900
900
  * <p>The state of the data replication.</p>
901
901
  * @public
902
902
  */
903
- dataReplicationState?: DataReplicationState;
903
+ dataReplicationState?: DataReplicationState | undefined;
904
904
  /**
905
905
  * <p>Information about whether the data replication has been initiated.</p>
906
906
  * @public
907
907
  */
908
- dataReplicationInitiation?: DataReplicationInitiation;
908
+ dataReplicationInitiation?: DataReplicationInitiation | undefined;
909
909
  /**
910
910
  * <p>Error in data replication.</p>
911
911
  * @public
912
912
  */
913
- dataReplicationError?: DataReplicationError;
913
+ dataReplicationError?: DataReplicationError | undefined;
914
914
  /**
915
915
  * <p>AWS Availability zone into which data is being replicated.</p>
916
916
  * @public
917
917
  */
918
- stagingAvailabilityZone?: string;
918
+ stagingAvailabilityZone?: string | undefined;
919
919
  /**
920
920
  * <p>The ARN of the staging Outpost</p>
921
921
  * @public
922
922
  */
923
- stagingOutpostArn?: string;
923
+ stagingOutpostArn?: string | undefined;
924
924
  }
925
925
  /**
926
926
  * @public
@@ -957,17 +957,17 @@ export interface LifeCycleLastLaunchInitiated {
957
957
  * <p>The date and time the last Source Server launch was initiated.</p>
958
958
  * @public
959
959
  */
960
- apiCallDateTime?: string;
960
+ apiCallDateTime?: string | undefined;
961
961
  /**
962
962
  * <p>The ID of the Job that was used to last launch the Source Server.</p>
963
963
  * @public
964
964
  */
965
- jobID?: string;
965
+ jobID?: string | undefined;
966
966
  /**
967
967
  * <p>The Job type that was used to last launch the Source Server.</p>
968
968
  * @public
969
969
  */
970
- type?: LastLaunchType;
970
+ type?: LastLaunchType | undefined;
971
971
  }
972
972
  /**
973
973
  * <p>An object containing information regarding the last launch of a Source Server.</p>
@@ -978,12 +978,12 @@ export interface LifeCycleLastLaunch {
978
978
  * <p>An object containing information regarding the initiation of the last launch of a Source Server.</p>
979
979
  * @public
980
980
  */
981
- initiated?: LifeCycleLastLaunchInitiated;
981
+ initiated?: LifeCycleLastLaunchInitiated | undefined;
982
982
  /**
983
983
  * <p>Status of Source Server's last launch.</p>
984
984
  * @public
985
985
  */
986
- status?: LaunchStatus;
986
+ status?: LaunchStatus | undefined;
987
987
  }
988
988
  /**
989
989
  * <p>An object representing the Source Server Lifecycle.</p>
@@ -994,27 +994,27 @@ export interface LifeCycle {
994
994
  * <p>The date and time of when the Source Server was added to the service.</p>
995
995
  * @public
996
996
  */
997
- addedToServiceDateTime?: string;
997
+ addedToServiceDateTime?: string | undefined;
998
998
  /**
999
999
  * <p>The date and time of the first byte that was replicated from the Source Server.</p>
1000
1000
  * @public
1001
1001
  */
1002
- firstByteDateTime?: string;
1002
+ firstByteDateTime?: string | undefined;
1003
1003
  /**
1004
1004
  * <p>The amount of time that the Source Server has been replicating for.</p>
1005
1005
  * @public
1006
1006
  */
1007
- elapsedReplicationDuration?: string;
1007
+ elapsedReplicationDuration?: string | undefined;
1008
1008
  /**
1009
1009
  * <p>The date and time this Source Server was last seen by the service.</p>
1010
1010
  * @public
1011
1011
  */
1012
- lastSeenByServiceDateTime?: string;
1012
+ lastSeenByServiceDateTime?: string | undefined;
1013
1013
  /**
1014
1014
  * <p>An object containing information regarding the last launch of the Source Server.</p>
1015
1015
  * @public
1016
1016
  */
1017
- lastLaunch?: LifeCycleLastLaunch;
1017
+ lastLaunch?: LifeCycleLastLaunch | undefined;
1018
1018
  }
1019
1019
  /**
1020
1020
  * @public
@@ -1037,22 +1037,22 @@ export interface SourceCloudProperties {
1037
1037
  * <p>AWS Account ID for an EC2-originated Source Server.</p>
1038
1038
  * @public
1039
1039
  */
1040
- originAccountID?: string;
1040
+ originAccountID?: string | undefined;
1041
1041
  /**
1042
1042
  * <p>AWS Region for an EC2-originated Source Server.</p>
1043
1043
  * @public
1044
1044
  */
1045
- originRegion?: string;
1045
+ originRegion?: string | undefined;
1046
1046
  /**
1047
1047
  * <p>AWS Availability Zone for an EC2-originated Source Server.</p>
1048
1048
  * @public
1049
1049
  */
1050
- originAvailabilityZone?: string;
1050
+ originAvailabilityZone?: string | undefined;
1051
1051
  /**
1052
1052
  * <p>The ARN of the source Outpost</p>
1053
1053
  * @public
1054
1054
  */
1055
- sourceOutpostArn?: string;
1055
+ sourceOutpostArn?: string | undefined;
1056
1056
  }
1057
1057
  /**
1058
1058
  * <p>An object representing a data storage device on a server.</p>
@@ -1063,12 +1063,12 @@ export interface Disk {
1063
1063
  * <p>The disk or device name.</p>
1064
1064
  * @public
1065
1065
  */
1066
- deviceName?: string;
1066
+ deviceName?: string | undefined;
1067
1067
  /**
1068
1068
  * <p>The amount of storage on the disk in bytes.</p>
1069
1069
  * @public
1070
1070
  */
1071
- bytes?: number;
1071
+ bytes?: number | undefined;
1072
1072
  }
1073
1073
  /**
1074
1074
  * <p>Hints used to uniquely identify a machine.</p>
@@ -1079,22 +1079,22 @@ export interface IdentificationHints {
1079
1079
  * <p>Fully Qualified Domain Name identification hint.</p>
1080
1080
  * @public
1081
1081
  */
1082
- fqdn?: string;
1082
+ fqdn?: string | undefined;
1083
1083
  /**
1084
1084
  * <p>Hostname identification hint.</p>
1085
1085
  * @public
1086
1086
  */
1087
- hostname?: string;
1087
+ hostname?: string | undefined;
1088
1088
  /**
1089
1089
  * <p>vCenter VM path identification hint.</p>
1090
1090
  * @public
1091
1091
  */
1092
- vmWareUuid?: string;
1092
+ vmWareUuid?: string | undefined;
1093
1093
  /**
1094
1094
  * <p>AWS Instance ID identification hint.</p>
1095
1095
  * @public
1096
1096
  */
1097
- awsInstanceID?: string;
1097
+ awsInstanceID?: string | undefined;
1098
1098
  }
1099
1099
  /**
1100
1100
  * <p>Network interface.</p>
@@ -1105,17 +1105,17 @@ export interface NetworkInterface {
1105
1105
  * <p>The MAC address of the network interface.</p>
1106
1106
  * @public
1107
1107
  */
1108
- macAddress?: string;
1108
+ macAddress?: string | undefined;
1109
1109
  /**
1110
1110
  * <p>Network interface IPs.</p>
1111
1111
  * @public
1112
1112
  */
1113
- ips?: string[];
1113
+ ips?: string[] | undefined;
1114
1114
  /**
1115
1115
  * <p>Whether this is the primary network interface.</p>
1116
1116
  * @public
1117
1117
  */
1118
- isPrimary?: boolean;
1118
+ isPrimary?: boolean | undefined;
1119
1119
  }
1120
1120
  /**
1121
1121
  * <p>Operating System.</p>
@@ -1126,7 +1126,7 @@ export interface OS {
1126
1126
  * <p>The long name of the Operating System.</p>
1127
1127
  * @public
1128
1128
  */
1129
- fullString?: string;
1129
+ fullString?: string | undefined;
1130
1130
  }
1131
1131
  /**
1132
1132
  * <p>Properties of the Source Server machine.</p>
@@ -1137,47 +1137,47 @@ export interface SourceProperties {
1137
1137
  * <p>The date and time the Source Properties were last updated on.</p>
1138
1138
  * @public
1139
1139
  */
1140
- lastUpdatedDateTime?: string;
1140
+ lastUpdatedDateTime?: string | undefined;
1141
1141
  /**
1142
1142
  * <p>The recommended EC2 instance type that will be used when recovering the Source Server.</p>
1143
1143
  * @public
1144
1144
  */
1145
- recommendedInstanceType?: string;
1145
+ recommendedInstanceType?: string | undefined;
1146
1146
  /**
1147
1147
  * <p>Hints used to uniquely identify a machine.</p>
1148
1148
  * @public
1149
1149
  */
1150
- identificationHints?: IdentificationHints;
1150
+ identificationHints?: IdentificationHints | undefined;
1151
1151
  /**
1152
1152
  * <p>An array of network interfaces.</p>
1153
1153
  * @public
1154
1154
  */
1155
- networkInterfaces?: NetworkInterface[];
1155
+ networkInterfaces?: NetworkInterface[] | undefined;
1156
1156
  /**
1157
1157
  * <p>An array of disks.</p>
1158
1158
  * @public
1159
1159
  */
1160
- disks?: Disk[];
1160
+ disks?: Disk[] | undefined;
1161
1161
  /**
1162
1162
  * <p>An array of CPUs.</p>
1163
1163
  * @public
1164
1164
  */
1165
- cpus?: CPU[];
1165
+ cpus?: CPU[] | undefined;
1166
1166
  /**
1167
1167
  * <p>The amount of RAM in bytes.</p>
1168
1168
  * @public
1169
1169
  */
1170
- ramBytes?: number;
1170
+ ramBytes?: number | undefined;
1171
1171
  /**
1172
1172
  * <p>Operating system.</p>
1173
1173
  * @public
1174
1174
  */
1175
- os?: OS;
1175
+ os?: OS | undefined;
1176
1176
  /**
1177
1177
  * <p>Are EC2 nitro instance types supported when recovering the Source Server.</p>
1178
1178
  * @public
1179
1179
  */
1180
- supportsNitroInstances?: boolean;
1180
+ supportsNitroInstances?: boolean | undefined;
1181
1181
  }
1182
1182
  /**
1183
1183
  * @public
@@ -1204,22 +1204,22 @@ export interface StagingArea {
1204
1204
  * (c) EXTENSION_ERROR - Some issue occurred when accessing staging source server. In this case, errorMessage field will contain an error message that explains what happened.</p>
1205
1205
  * @public
1206
1206
  */
1207
- status?: ExtensionStatus;
1207
+ status?: ExtensionStatus | undefined;
1208
1208
  /**
1209
1209
  * <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>
1210
1210
  * @public
1211
1211
  */
1212
- stagingAccountID?: string;
1212
+ stagingAccountID?: string | undefined;
1213
1213
  /**
1214
1214
  * <p>Arn of the staging source server if this source server is extended</p>
1215
1215
  * @public
1216
1216
  */
1217
- stagingSourceServerArn?: string;
1217
+ stagingSourceServerArn?: string | undefined;
1218
1218
  /**
1219
1219
  * <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>
1220
1220
  * @public
1221
1221
  */
1222
- errorMessage?: string;
1222
+ errorMessage?: string | undefined;
1223
1223
  }
1224
1224
  /**
1225
1225
  * @public
@@ -1229,72 +1229,72 @@ export interface SourceServer {
1229
1229
  * <p>The ID of the Source Server.</p>
1230
1230
  * @public
1231
1231
  */
1232
- sourceServerID?: string;
1232
+ sourceServerID?: string | undefined;
1233
1233
  /**
1234
1234
  * <p>The ARN of the Source Server.</p>
1235
1235
  * @public
1236
1236
  */
1237
- arn?: string;
1237
+ arn?: string | undefined;
1238
1238
  /**
1239
1239
  * <p>The tags associated with the Source Server.</p>
1240
1240
  * @public
1241
1241
  */
1242
- tags?: Record<string, string>;
1242
+ tags?: Record<string, string> | undefined;
1243
1243
  /**
1244
1244
  * <p>The ID of the Recovery Instance associated with this Source Server.</p>
1245
1245
  * @public
1246
1246
  */
1247
- recoveryInstanceId?: string;
1247
+ recoveryInstanceId?: string | undefined;
1248
1248
  /**
1249
1249
  * <p>The status of the last recovery launch of this Source Server.</p>
1250
1250
  * @public
1251
1251
  */
1252
- lastLaunchResult?: LastLaunchResult;
1252
+ lastLaunchResult?: LastLaunchResult | undefined;
1253
1253
  /**
1254
1254
  * <p>The Data Replication Info of the Source Server.</p>
1255
1255
  * @public
1256
1256
  */
1257
- dataReplicationInfo?: DataReplicationInfo;
1257
+ dataReplicationInfo?: DataReplicationInfo | undefined;
1258
1258
  /**
1259
1259
  * <p>The lifecycle information of this Source Server.</p>
1260
1260
  * @public
1261
1261
  */
1262
- lifeCycle?: LifeCycle;
1262
+ lifeCycle?: LifeCycle | undefined;
1263
1263
  /**
1264
1264
  * <p>The source properties of the Source Server.</p>
1265
1265
  * @public
1266
1266
  */
1267
- sourceProperties?: SourceProperties;
1267
+ sourceProperties?: SourceProperties | undefined;
1268
1268
  /**
1269
1269
  * <p>The staging area of the source server.</p>
1270
1270
  * @public
1271
1271
  */
1272
- stagingArea?: StagingArea;
1272
+ stagingArea?: StagingArea | undefined;
1273
1273
  /**
1274
1274
  * <p>Source cloud properties of the Source Server.</p>
1275
1275
  * @public
1276
1276
  */
1277
- sourceCloudProperties?: SourceCloudProperties;
1277
+ sourceCloudProperties?: SourceCloudProperties | undefined;
1278
1278
  /**
1279
1279
  * <p>Replication direction of the Source Server.</p>
1280
1280
  * @public
1281
1281
  */
1282
- replicationDirection?: ReplicationDirection;
1282
+ replicationDirection?: ReplicationDirection | undefined;
1283
1283
  /**
1284
1284
  * <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>
1285
1285
  * @public
1286
1286
  */
1287
- reversedDirectionSourceServerArn?: string;
1287
+ reversedDirectionSourceServerArn?: string | undefined;
1288
1288
  /**
1289
1289
  * <p>ID of the Source Network which is protecting this Source Server's network.</p>
1290
1290
  * @public
1291
1291
  */
1292
- sourceNetworkID?: string;
1292
+ sourceNetworkID?: string | undefined;
1293
1293
  /**
1294
1294
  * <p>The version of the DRS agent installed on the source server</p>
1295
1295
  * @public
1296
1296
  */
1297
- agentVersion?: string;
1297
+ agentVersion?: string | undefined;
1298
1298
  }
1299
1299
  /**
1300
1300
  * @public
@@ -1304,7 +1304,7 @@ export interface CreateExtendedSourceServerResponse {
1304
1304
  * <p>Created extended source server.</p>
1305
1305
  * @public
1306
1306
  */
1307
- sourceServer?: SourceServer;
1307
+ sourceServer?: SourceServer | undefined;
1308
1308
  }
1309
1309
  /**
1310
1310
  * @public
@@ -1327,7 +1327,7 @@ export interface Licensing {
1327
1327
  * <p>Whether to enable "Bring your own license" or not.</p>
1328
1328
  * @public
1329
1329
  */
1330
- osByol?: boolean;
1330
+ osByol?: boolean | undefined;
1331
1331
  }
1332
1332
  /**
1333
1333
  * @public
@@ -1350,47 +1350,47 @@ export interface CreateLaunchConfigurationTemplateRequest {
1350
1350
  * <p>Request to associate tags during creation of a Launch Configuration Template.</p>
1351
1351
  * @public
1352
1352
  */
1353
- tags?: Record<string, string>;
1353
+ tags?: Record<string, string> | undefined;
1354
1354
  /**
1355
1355
  * <p>Launch disposition.</p>
1356
1356
  * @public
1357
1357
  */
1358
- launchDisposition?: LaunchDisposition;
1358
+ launchDisposition?: LaunchDisposition | undefined;
1359
1359
  /**
1360
1360
  * <p>Target instance type right-sizing method.</p>
1361
1361
  * @public
1362
1362
  */
1363
- targetInstanceTypeRightSizingMethod?: TargetInstanceTypeRightSizingMethod;
1363
+ targetInstanceTypeRightSizingMethod?: TargetInstanceTypeRightSizingMethod | undefined;
1364
1364
  /**
1365
1365
  * <p>Copy private IP.</p>
1366
1366
  * @public
1367
1367
  */
1368
- copyPrivateIp?: boolean;
1368
+ copyPrivateIp?: boolean | undefined;
1369
1369
  /**
1370
1370
  * <p>Copy tags.</p>
1371
1371
  * @public
1372
1372
  */
1373
- copyTags?: boolean;
1373
+ copyTags?: boolean | undefined;
1374
1374
  /**
1375
1375
  * <p>Licensing.</p>
1376
1376
  * @public
1377
1377
  */
1378
- licensing?: Licensing;
1378
+ licensing?: Licensing | undefined;
1379
1379
  /**
1380
1380
  * <p>S3 bucket ARN to export Source Network templates.</p>
1381
1381
  * @public
1382
1382
  */
1383
- exportBucketArn?: string;
1383
+ exportBucketArn?: string | undefined;
1384
1384
  /**
1385
1385
  * <p>Whether we want to activate post-launch actions.</p>
1386
1386
  * @public
1387
1387
  */
1388
- postLaunchEnabled?: boolean;
1388
+ postLaunchEnabled?: boolean | undefined;
1389
1389
  /**
1390
1390
  * <p>DRS will set the 'launch into instance ID' of any source server when performing a drill, recovery or failback to the previous region or availability zone, using the instance ID of the source instance.</p>
1391
1391
  * @public
1392
1392
  */
1393
- launchIntoSourceInstance?: boolean;
1393
+ launchIntoSourceInstance?: boolean | undefined;
1394
1394
  }
1395
1395
  /**
1396
1396
  * <p>Account level Launch Configuration Template.</p>
@@ -1401,57 +1401,57 @@ export interface LaunchConfigurationTemplate {
1401
1401
  * <p>ID of the Launch Configuration Template.</p>
1402
1402
  * @public
1403
1403
  */
1404
- launchConfigurationTemplateID?: string;
1404
+ launchConfigurationTemplateID?: string | undefined;
1405
1405
  /**
1406
1406
  * <p>ARN of the Launch Configuration Template.</p>
1407
1407
  * @public
1408
1408
  */
1409
- arn?: string;
1409
+ arn?: string | undefined;
1410
1410
  /**
1411
1411
  * <p>Tags of the Launch Configuration Template.</p>
1412
1412
  * @public
1413
1413
  */
1414
- tags?: Record<string, string>;
1414
+ tags?: Record<string, string> | undefined;
1415
1415
  /**
1416
1416
  * <p>Launch disposition.</p>
1417
1417
  * @public
1418
1418
  */
1419
- launchDisposition?: LaunchDisposition;
1419
+ launchDisposition?: LaunchDisposition | undefined;
1420
1420
  /**
1421
1421
  * <p>Target instance type right-sizing method.</p>
1422
1422
  * @public
1423
1423
  */
1424
- targetInstanceTypeRightSizingMethod?: TargetInstanceTypeRightSizingMethod;
1424
+ targetInstanceTypeRightSizingMethod?: TargetInstanceTypeRightSizingMethod | undefined;
1425
1425
  /**
1426
1426
  * <p>Copy private IP.</p>
1427
1427
  * @public
1428
1428
  */
1429
- copyPrivateIp?: boolean;
1429
+ copyPrivateIp?: boolean | undefined;
1430
1430
  /**
1431
1431
  * <p>Copy tags.</p>
1432
1432
  * @public
1433
1433
  */
1434
- copyTags?: boolean;
1434
+ copyTags?: boolean | undefined;
1435
1435
  /**
1436
1436
  * <p>Licensing.</p>
1437
1437
  * @public
1438
1438
  */
1439
- licensing?: Licensing;
1439
+ licensing?: Licensing | undefined;
1440
1440
  /**
1441
1441
  * <p>S3 bucket ARN to export Source Network templates.</p>
1442
1442
  * @public
1443
1443
  */
1444
- exportBucketArn?: string;
1444
+ exportBucketArn?: string | undefined;
1445
1445
  /**
1446
1446
  * <p>Post-launch actions activated.</p>
1447
1447
  * @public
1448
1448
  */
1449
- postLaunchEnabled?: boolean;
1449
+ postLaunchEnabled?: boolean | undefined;
1450
1450
  /**
1451
1451
  * <p>DRS will set the 'launch into instance ID' of any source server when performing a drill, recovery or failback to the previous region or availability zone, using the instance ID of the source instance.</p>
1452
1452
  * @public
1453
1453
  */
1454
- launchIntoSourceInstance?: boolean;
1454
+ launchIntoSourceInstance?: boolean | undefined;
1455
1455
  }
1456
1456
  /**
1457
1457
  * @public
@@ -1461,7 +1461,7 @@ export interface CreateLaunchConfigurationTemplateResponse {
1461
1461
  * <p>Created Launch Configuration Template.</p>
1462
1462
  * @public
1463
1463
  */
1464
- launchConfigurationTemplate?: LaunchConfigurationTemplate;
1464
+ launchConfigurationTemplate?: LaunchConfigurationTemplate | undefined;
1465
1465
  }
1466
1466
  /**
1467
1467
  * @public
@@ -1524,7 +1524,7 @@ export interface PITPolicyRule {
1524
1524
  * <p>The ID of the rule.</p>
1525
1525
  * @public
1526
1526
  */
1527
- ruleID?: number;
1527
+ ruleID?: number | undefined;
1528
1528
  /**
1529
1529
  * <p>The units used to measure the interval and retentionDuration.</p>
1530
1530
  * @public
@@ -1544,7 +1544,7 @@ export interface PITPolicyRule {
1544
1544
  * <p>Whether this rule is enabled or not.</p>
1545
1545
  * @public
1546
1546
  */
1547
- enabled?: boolean;
1547
+ enabled?: boolean | undefined;
1548
1548
  }
1549
1549
  /**
1550
1550
  * @public
@@ -1589,7 +1589,7 @@ export interface CreateReplicationConfigurationTemplateRequest {
1589
1589
  * <p>The ARN of the EBS encryption key to be used during replication.</p>
1590
1590
  * @public
1591
1591
  */
1592
- ebsEncryptionKeyArn?: string;
1592
+ ebsEncryptionKeyArn?: string | undefined;
1593
1593
  /**
1594
1594
  * <p>Configure bandwidth throttling for the outbound data transfer rate of the Source Server in Mbps.</p>
1595
1595
  * @public
@@ -1619,12 +1619,12 @@ export interface CreateReplicationConfigurationTemplateRequest {
1619
1619
  * <p>A set of tags to be associated with the Replication Configuration Template resource.</p>
1620
1620
  * @public
1621
1621
  */
1622
- tags?: Record<string, string>;
1622
+ tags?: Record<string, string> | undefined;
1623
1623
  /**
1624
1624
  * <p>Whether to allow the AWS replication agent to automatically replicate newly added disks.</p>
1625
1625
  * @public
1626
1626
  */
1627
- autoReplicateNewDisks?: boolean;
1627
+ autoReplicateNewDisks?: boolean | undefined;
1628
1628
  }
1629
1629
  /**
1630
1630
  * @public
@@ -1639,82 +1639,82 @@ export interface ReplicationConfigurationTemplate {
1639
1639
  * <p>The Replication Configuration Template ARN.</p>
1640
1640
  * @public
1641
1641
  */
1642
- arn?: string;
1642
+ arn?: string | undefined;
1643
1643
  /**
1644
1644
  * <p>The subnet to be used by the replication staging area.</p>
1645
1645
  * @public
1646
1646
  */
1647
- stagingAreaSubnetId?: string;
1647
+ stagingAreaSubnetId?: string | undefined;
1648
1648
  /**
1649
1649
  * <p>Whether to associate the default Elastic Disaster Recovery Security group with the Replication Configuration Template.</p>
1650
1650
  * @public
1651
1651
  */
1652
- associateDefaultSecurityGroup?: boolean;
1652
+ associateDefaultSecurityGroup?: boolean | undefined;
1653
1653
  /**
1654
1654
  * <p>The security group IDs that will be used by the replication server.</p>
1655
1655
  * @public
1656
1656
  */
1657
- replicationServersSecurityGroupsIDs?: string[];
1657
+ replicationServersSecurityGroupsIDs?: string[] | undefined;
1658
1658
  /**
1659
1659
  * <p>The instance type to be used for the replication server.</p>
1660
1660
  * @public
1661
1661
  */
1662
- replicationServerInstanceType?: string;
1662
+ replicationServerInstanceType?: string | undefined;
1663
1663
  /**
1664
1664
  * <p>Whether to use a dedicated Replication Server in the replication staging area.</p>
1665
1665
  * @public
1666
1666
  */
1667
- useDedicatedReplicationServer?: boolean;
1667
+ useDedicatedReplicationServer?: boolean | undefined;
1668
1668
  /**
1669
1669
  * <p>The Staging Disk EBS volume type to be used during replication.</p>
1670
1670
  * @public
1671
1671
  */
1672
- defaultLargeStagingDiskType?: ReplicationConfigurationDefaultLargeStagingDiskType;
1672
+ defaultLargeStagingDiskType?: ReplicationConfigurationDefaultLargeStagingDiskType | undefined;
1673
1673
  /**
1674
1674
  * <p>The type of EBS encryption to be used during replication.</p>
1675
1675
  * @public
1676
1676
  */
1677
- ebsEncryption?: ReplicationConfigurationEbsEncryption;
1677
+ ebsEncryption?: ReplicationConfigurationEbsEncryption | undefined;
1678
1678
  /**
1679
1679
  * <p>The ARN of the EBS encryption key to be used during replication.</p>
1680
1680
  * @public
1681
1681
  */
1682
- ebsEncryptionKeyArn?: string;
1682
+ ebsEncryptionKeyArn?: string | undefined;
1683
1683
  /**
1684
1684
  * <p>Configure bandwidth throttling for the outbound data transfer rate of the Source Server in Mbps.</p>
1685
1685
  * @public
1686
1686
  */
1687
- bandwidthThrottling?: number;
1687
+ bandwidthThrottling?: number | undefined;
1688
1688
  /**
1689
1689
  * <p>The data plane routing mechanism that will be used for replication.</p>
1690
1690
  * @public
1691
1691
  */
1692
- dataPlaneRouting?: ReplicationConfigurationDataPlaneRouting;
1692
+ dataPlaneRouting?: ReplicationConfigurationDataPlaneRouting | undefined;
1693
1693
  /**
1694
1694
  * <p>Whether to create a Public IP for the Recovery Instance by default.</p>
1695
1695
  * @public
1696
1696
  */
1697
- createPublicIP?: boolean;
1697
+ createPublicIP?: boolean | undefined;
1698
1698
  /**
1699
1699
  * <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>
1700
1700
  * @public
1701
1701
  */
1702
- stagingAreaTags?: Record<string, string>;
1702
+ stagingAreaTags?: Record<string, string> | undefined;
1703
1703
  /**
1704
1704
  * <p>A set of tags to be associated with the Replication Configuration Template resource.</p>
1705
1705
  * @public
1706
1706
  */
1707
- tags?: Record<string, string>;
1707
+ tags?: Record<string, string> | undefined;
1708
1708
  /**
1709
1709
  * <p>The Point in time (PIT) policy to manage snapshots taken during replication.</p>
1710
1710
  * @public
1711
1711
  */
1712
- pitPolicy?: PITPolicyRule[];
1712
+ pitPolicy?: PITPolicyRule[] | undefined;
1713
1713
  /**
1714
1714
  * <p>Whether to allow the AWS replication agent to automatically replicate newly added disks.</p>
1715
1715
  * @public
1716
1716
  */
1717
- autoReplicateNewDisks?: boolean;
1717
+ autoReplicateNewDisks?: boolean | undefined;
1718
1718
  }
1719
1719
  /**
1720
1720
  * @public
@@ -1739,7 +1739,7 @@ export interface CreateSourceNetworkRequest {
1739
1739
  * <p>A set of tags to be associated with the Source Network resource.</p>
1740
1740
  * @public
1741
1741
  */
1742
- tags?: Record<string, string>;
1742
+ tags?: Record<string, string> | undefined;
1743
1743
  }
1744
1744
  /**
1745
1745
  * @public
@@ -1749,7 +1749,7 @@ export interface CreateSourceNetworkResponse {
1749
1749
  * <p>ID of the created Source Network.</p>
1750
1750
  * @public
1751
1751
  */
1752
- sourceNetworkID?: string;
1752
+ sourceNetworkID?: string | undefined;
1753
1753
  }
1754
1754
  /**
1755
1755
  * @public
@@ -1869,12 +1869,12 @@ export interface DescribeJobLogItemsRequest {
1869
1869
  * <p>Maximum number of Job log items to retrieve.</p>
1870
1870
  * @public
1871
1871
  */
1872
- maxResults?: number;
1872
+ maxResults?: number | undefined;
1873
1873
  /**
1874
1874
  * <p>The token of the next Job log items to retrieve.</p>
1875
1875
  * @public
1876
1876
  */
1877
- nextToken?: string;
1877
+ nextToken?: string | undefined;
1878
1878
  }
1879
1879
  /**
1880
1880
  * @public
@@ -1922,22 +1922,22 @@ export interface SourceNetworkData {
1922
1922
  * <p>Source Network ID.</p>
1923
1923
  * @public
1924
1924
  */
1925
- sourceNetworkID?: string;
1925
+ sourceNetworkID?: string | undefined;
1926
1926
  /**
1927
1927
  * <p>VPC ID protected by the Source Network.</p>
1928
1928
  * @public
1929
1929
  */
1930
- sourceVpc?: string;
1930
+ sourceVpc?: string | undefined;
1931
1931
  /**
1932
1932
  * <p>ID of the recovered VPC following Source Network recovery.</p>
1933
1933
  * @public
1934
1934
  */
1935
- targetVpc?: string;
1935
+ targetVpc?: string | undefined;
1936
1936
  /**
1937
1937
  * <p>CloudFormation stack name that was deployed for recovering the Source Network.</p>
1938
1938
  * @public
1939
1939
  */
1940
- stackName?: string;
1940
+ stackName?: string | undefined;
1941
1941
  }
1942
1942
  /**
1943
1943
  * <p>Properties of resource related to a job event.</p>
@@ -1978,32 +1978,32 @@ export interface JobLogEventData {
1978
1978
  * <p>The ID of a Source Server.</p>
1979
1979
  * @public
1980
1980
  */
1981
- sourceServerID?: string;
1981
+ sourceServerID?: string | undefined;
1982
1982
  /**
1983
1983
  * <p>The ID of a conversion server.</p>
1984
1984
  * @public
1985
1985
  */
1986
- conversionServerID?: string;
1986
+ conversionServerID?: string | undefined;
1987
1987
  /**
1988
1988
  * <p>The ID of a Recovery Instance.</p>
1989
1989
  * @public
1990
1990
  */
1991
- targetInstanceID?: string;
1991
+ targetInstanceID?: string | undefined;
1992
1992
  /**
1993
1993
  * <p>A string representing a job error.</p>
1994
1994
  * @public
1995
1995
  */
1996
- rawError?: string;
1996
+ rawError?: string | undefined;
1997
1997
  /**
1998
1998
  * <p>Properties of a conversion job</p>
1999
1999
  * @public
2000
2000
  */
2001
- conversionProperties?: ConversionProperties;
2001
+ conversionProperties?: ConversionProperties | undefined;
2002
2002
  /**
2003
2003
  * <p>Properties of resource related to a job event.</p>
2004
2004
  * @public
2005
2005
  */
2006
- eventResourceData?: EventResourceData;
2006
+ eventResourceData?: EventResourceData | undefined;
2007
2007
  }
2008
2008
  /**
2009
2009
  * <p>A log outputted by a Job.</p>
@@ -2014,17 +2014,17 @@ export interface JobLog {
2014
2014
  * <p>The date and time the log was taken.</p>
2015
2015
  * @public
2016
2016
  */
2017
- logDateTime?: string;
2017
+ logDateTime?: string | undefined;
2018
2018
  /**
2019
2019
  * <p>The event represents the type of a log.</p>
2020
2020
  * @public
2021
2021
  */
2022
- event?: JobLogEvent;
2022
+ event?: JobLogEvent | undefined;
2023
2023
  /**
2024
2024
  * <p>Metadata associated with a Job log.</p>
2025
2025
  * @public
2026
2026
  */
2027
- eventData?: JobLogEventData;
2027
+ eventData?: JobLogEventData | undefined;
2028
2028
  }
2029
2029
  /**
2030
2030
  * @public
@@ -2034,12 +2034,12 @@ export interface DescribeJobLogItemsResponse {
2034
2034
  * <p>An array of Job log items.</p>
2035
2035
  * @public
2036
2036
  */
2037
- items?: JobLog[];
2037
+ items?: JobLog[] | undefined;
2038
2038
  /**
2039
2039
  * <p>The token of the next Job log items to retrieve.</p>
2040
2040
  * @public
2041
2041
  */
2042
- nextToken?: string;
2042
+ nextToken?: string | undefined;
2043
2043
  }
2044
2044
  /**
2045
2045
  * <p>A set of filters by which to return Jobs.</p>
@@ -2050,17 +2050,17 @@ export interface DescribeJobsRequestFilters {
2050
2050
  * <p>An array of Job IDs that should be returned. An empty array means all jobs.</p>
2051
2051
  * @public
2052
2052
  */
2053
- jobIDs?: string[];
2053
+ jobIDs?: string[] | undefined;
2054
2054
  /**
2055
2055
  * <p>The start date in a date range query.</p>
2056
2056
  * @public
2057
2057
  */
2058
- fromDate?: string;
2058
+ fromDate?: string | undefined;
2059
2059
  /**
2060
2060
  * <p>The end date in a date range query.</p>
2061
2061
  * @public
2062
2062
  */
2063
- toDate?: string;
2063
+ toDate?: string | undefined;
2064
2064
  }
2065
2065
  /**
2066
2066
  * @public
@@ -2070,17 +2070,17 @@ export interface DescribeJobsRequest {
2070
2070
  * <p>A set of filters by which to return Jobs.</p>
2071
2071
  * @public
2072
2072
  */
2073
- filters?: DescribeJobsRequestFilters;
2073
+ filters?: DescribeJobsRequestFilters | undefined;
2074
2074
  /**
2075
2075
  * <p>Maximum number of Jobs to retrieve.</p>
2076
2076
  * @public
2077
2077
  */
2078
- maxResults?: number;
2078
+ maxResults?: number | undefined;
2079
2079
  /**
2080
2080
  * <p>The token of the next Job to retrieve.</p>
2081
2081
  * @public
2082
2082
  */
2083
- nextToken?: string;
2083
+ nextToken?: string | undefined;
2084
2084
  }
2085
2085
  /**
2086
2086
  * @public
@@ -2090,12 +2090,12 @@ export interface DescribeJobsResponse {
2090
2090
  * <p>An array of Jobs.</p>
2091
2091
  * @public
2092
2092
  */
2093
- items?: Job[];
2093
+ items?: Job[] | undefined;
2094
2094
  /**
2095
2095
  * <p>The token of the next Job to retrieve.</p>
2096
2096
  * @public
2097
2097
  */
2098
- nextToken?: string;
2098
+ nextToken?: string | undefined;
2099
2099
  }
2100
2100
  /**
2101
2101
  * @public
@@ -2105,17 +2105,17 @@ export interface DescribeLaunchConfigurationTemplatesRequest {
2105
2105
  * <p>Request to filter Launch Configuration Templates list by Launch Configuration Template ID.</p>
2106
2106
  * @public
2107
2107
  */
2108
- launchConfigurationTemplateIDs?: string[];
2108
+ launchConfigurationTemplateIDs?: string[] | undefined;
2109
2109
  /**
2110
2110
  * <p>Maximum results to be returned in DescribeLaunchConfigurationTemplates.</p>
2111
2111
  * @public
2112
2112
  */
2113
- maxResults?: number;
2113
+ maxResults?: number | undefined;
2114
2114
  /**
2115
2115
  * <p>The token of the next Launch Configuration Template to retrieve.</p>
2116
2116
  * @public
2117
2117
  */
2118
- nextToken?: string;
2118
+ nextToken?: string | undefined;
2119
2119
  }
2120
2120
  /**
2121
2121
  * @public
@@ -2125,12 +2125,12 @@ export interface DescribeLaunchConfigurationTemplatesResponse {
2125
2125
  * <p>List of items returned by DescribeLaunchConfigurationTemplates.</p>
2126
2126
  * @public
2127
2127
  */
2128
- items?: LaunchConfigurationTemplate[];
2128
+ items?: LaunchConfigurationTemplate[] | undefined;
2129
2129
  /**
2130
2130
  * <p>The token of the next Launch Configuration Template to retrieve.</p>
2131
2131
  * @public
2132
2132
  */
2133
- nextToken?: string;
2133
+ nextToken?: string | undefined;
2134
2134
  }
2135
2135
  /**
2136
2136
  * <p>A set of filters by which to return Recovery Instances.</p>
@@ -2141,12 +2141,12 @@ export interface DescribeRecoveryInstancesRequestFilters {
2141
2141
  * <p>An array of Recovery Instance IDs that should be returned. An empty array means all Recovery Instances.</p>
2142
2142
  * @public
2143
2143
  */
2144
- recoveryInstanceIDs?: string[];
2144
+ recoveryInstanceIDs?: string[] | undefined;
2145
2145
  /**
2146
2146
  * <p>An array of Source Server IDs for which associated Recovery Instances should be returned.</p>
2147
2147
  * @public
2148
2148
  */
2149
- sourceServerIDs?: string[];
2149
+ sourceServerIDs?: string[] | undefined;
2150
2150
  }
2151
2151
  /**
2152
2152
  * @public
@@ -2156,17 +2156,17 @@ export interface DescribeRecoveryInstancesRequest {
2156
2156
  * <p>A set of filters by which to return Recovery Instances.</p>
2157
2157
  * @public
2158
2158
  */
2159
- filters?: DescribeRecoveryInstancesRequestFilters;
2159
+ filters?: DescribeRecoveryInstancesRequestFilters | undefined;
2160
2160
  /**
2161
2161
  * <p>Maximum number of Recovery Instances to retrieve.</p>
2162
2162
  * @public
2163
2163
  */
2164
- maxResults?: number;
2164
+ maxResults?: number | undefined;
2165
2165
  /**
2166
2166
  * <p>The token of the next Recovery Instance to retrieve.</p>
2167
2167
  * @public
2168
2168
  */
2169
- nextToken?: string;
2169
+ nextToken?: string | undefined;
2170
2170
  }
2171
2171
  /**
2172
2172
  * @public
@@ -2208,12 +2208,12 @@ export interface RecoveryInstanceDataReplicationError {
2208
2208
  * <p>Error in data replication.</p>
2209
2209
  * @public
2210
2210
  */
2211
- error?: FailbackReplicationError;
2211
+ error?: FailbackReplicationError | undefined;
2212
2212
  /**
2213
2213
  * <p>Error in data replication.</p>
2214
2214
  * @public
2215
2215
  */
2216
- rawError?: string;
2216
+ rawError?: string | undefined;
2217
2217
  }
2218
2218
  /**
2219
2219
  * @public
@@ -2267,12 +2267,12 @@ export interface RecoveryInstanceDataReplicationInitiationStep {
2267
2267
  * <p>The name of the step.</p>
2268
2268
  * @public
2269
2269
  */
2270
- name?: RecoveryInstanceDataReplicationInitiationStepName;
2270
+ name?: RecoveryInstanceDataReplicationInitiationStepName | undefined;
2271
2271
  /**
2272
2272
  * <p>The status of the step.</p>
2273
2273
  * @public
2274
2274
  */
2275
- status?: RecoveryInstanceDataReplicationInitiationStepStatus;
2275
+ status?: RecoveryInstanceDataReplicationInitiationStepStatus | undefined;
2276
2276
  }
2277
2277
  /**
2278
2278
  * <p>Data replication initiation.</p>
@@ -2283,12 +2283,12 @@ export interface RecoveryInstanceDataReplicationInitiation {
2283
2283
  * <p>The date and time of the current attempt to initiate data replication.</p>
2284
2284
  * @public
2285
2285
  */
2286
- startDateTime?: string;
2286
+ startDateTime?: string | undefined;
2287
2287
  /**
2288
2288
  * <p>The steps of the current attempt to initiate data replication.</p>
2289
2289
  * @public
2290
2290
  */
2291
- steps?: RecoveryInstanceDataReplicationInitiationStep[];
2291
+ steps?: RecoveryInstanceDataReplicationInitiationStep[] | undefined;
2292
2292
  }
2293
2293
  /**
2294
2294
  * @public
@@ -2321,27 +2321,27 @@ export interface RecoveryInstanceDataReplicationInfoReplicatedDisk {
2321
2321
  * <p>The name of the device.</p>
2322
2322
  * @public
2323
2323
  */
2324
- deviceName?: string;
2324
+ deviceName?: string | undefined;
2325
2325
  /**
2326
2326
  * <p>The total amount of data to be replicated in bytes.</p>
2327
2327
  * @public
2328
2328
  */
2329
- totalStorageBytes?: number;
2329
+ totalStorageBytes?: number | undefined;
2330
2330
  /**
2331
2331
  * <p>The amount of data replicated so far in bytes.</p>
2332
2332
  * @public
2333
2333
  */
2334
- replicatedStorageBytes?: number;
2334
+ replicatedStorageBytes?: number | undefined;
2335
2335
  /**
2336
2336
  * <p>The amount of data to be rescanned in bytes.</p>
2337
2337
  * @public
2338
2338
  */
2339
- rescannedStorageBytes?: number;
2339
+ rescannedStorageBytes?: number | undefined;
2340
2340
  /**
2341
2341
  * <p>The size of the replication backlog in bytes.</p>
2342
2342
  * @public
2343
2343
  */
2344
- backloggedStorageBytes?: number;
2344
+ backloggedStorageBytes?: number | undefined;
2345
2345
  }
2346
2346
  /**
2347
2347
  * <p>Information about Data Replication</p>
@@ -2352,42 +2352,42 @@ export interface RecoveryInstanceDataReplicationInfo {
2352
2352
  * <p>Data replication lag duration.</p>
2353
2353
  * @public
2354
2354
  */
2355
- lagDuration?: string;
2355
+ lagDuration?: string | undefined;
2356
2356
  /**
2357
2357
  * <p>An estimate of when the data replication will be completed.</p>
2358
2358
  * @public
2359
2359
  */
2360
- etaDateTime?: string;
2360
+ etaDateTime?: string | undefined;
2361
2361
  /**
2362
2362
  * <p>The disks that should be replicated.</p>
2363
2363
  * @public
2364
2364
  */
2365
- replicatedDisks?: RecoveryInstanceDataReplicationInfoReplicatedDisk[];
2365
+ replicatedDisks?: RecoveryInstanceDataReplicationInfoReplicatedDisk[] | undefined;
2366
2366
  /**
2367
2367
  * <p>The state of the data replication.</p>
2368
2368
  * @public
2369
2369
  */
2370
- dataReplicationState?: RecoveryInstanceDataReplicationState;
2370
+ dataReplicationState?: RecoveryInstanceDataReplicationState | undefined;
2371
2371
  /**
2372
2372
  * <p>Information about whether the data replication has been initiated.</p>
2373
2373
  * @public
2374
2374
  */
2375
- dataReplicationInitiation?: RecoveryInstanceDataReplicationInitiation;
2375
+ dataReplicationInitiation?: RecoveryInstanceDataReplicationInitiation | undefined;
2376
2376
  /**
2377
2377
  * <p>Information about Data Replication</p>
2378
2378
  * @public
2379
2379
  */
2380
- dataReplicationError?: RecoveryInstanceDataReplicationError;
2380
+ dataReplicationError?: RecoveryInstanceDataReplicationError | undefined;
2381
2381
  /**
2382
2382
  * <p>AWS Availability zone into which data is being replicated.</p>
2383
2383
  * @public
2384
2384
  */
2385
- stagingAvailabilityZone?: string;
2385
+ stagingAvailabilityZone?: string | undefined;
2386
2386
  /**
2387
2387
  * <p>The ARN of the staging Outpost</p>
2388
2388
  * @public
2389
2389
  */
2390
- stagingOutpostArn?: string;
2390
+ stagingOutpostArn?: string | undefined;
2391
2391
  }
2392
2392
  /**
2393
2393
  * @public
@@ -2444,52 +2444,52 @@ export interface RecoveryInstanceFailback {
2444
2444
  * <p>The ID of the failback client that this Recovery Instance is associated with.</p>
2445
2445
  * @public
2446
2446
  */
2447
- failbackClientID?: string;
2447
+ failbackClientID?: string | undefined;
2448
2448
  /**
2449
2449
  * <p>The Job ID of the last failback log for this Recovery Instance.</p>
2450
2450
  * @public
2451
2451
  */
2452
- failbackJobID?: string;
2452
+ failbackJobID?: string | undefined;
2453
2453
  /**
2454
2454
  * <p>The date and time that the failback initiation started.</p>
2455
2455
  * @public
2456
2456
  */
2457
- failbackInitiationTime?: string;
2457
+ failbackInitiationTime?: string | undefined;
2458
2458
  /**
2459
2459
  * <p>The state of the failback process that this Recovery Instance is in.</p>
2460
2460
  * @public
2461
2461
  */
2462
- state?: FailbackState;
2462
+ state?: FailbackState | undefined;
2463
2463
  /**
2464
2464
  * <p>The date and time the agent on the Recovery Instance was last seen by the service.</p>
2465
2465
  * @public
2466
2466
  */
2467
- agentLastSeenByServiceDateTime?: string;
2467
+ agentLastSeenByServiceDateTime?: string | undefined;
2468
2468
  /**
2469
2469
  * <p>The date and time that the failback client was last seen by the service.</p>
2470
2470
  * @public
2471
2471
  */
2472
- failbackClientLastSeenByServiceDateTime?: string;
2472
+ failbackClientLastSeenByServiceDateTime?: string | undefined;
2473
2473
  /**
2474
2474
  * <p>Whether we are failing back to the original Source Server for this Recovery Instance.</p>
2475
2475
  * @public
2476
2476
  */
2477
- failbackToOriginalServer?: boolean;
2477
+ failbackToOriginalServer?: boolean | undefined;
2478
2478
  /**
2479
2479
  * <p>The date and time of the first byte that was replicated from the Recovery Instance.</p>
2480
2480
  * @public
2481
2481
  */
2482
- firstByteDateTime?: string;
2482
+ firstByteDateTime?: string | undefined;
2483
2483
  /**
2484
2484
  * <p>The amount of time that the Recovery Instance has been replicating for.</p>
2485
2485
  * @public
2486
2486
  */
2487
- elapsedReplicationDuration?: string;
2487
+ elapsedReplicationDuration?: string | undefined;
2488
2488
  /**
2489
2489
  * <p>The launch type (Recovery / Drill) of the last launch for the failback replication of this recovery instance.</p>
2490
2490
  * @public
2491
2491
  */
2492
- failbackLaunchType?: FailbackLaunchType;
2492
+ failbackLaunchType?: FailbackLaunchType | undefined;
2493
2493
  }
2494
2494
  /**
2495
2495
  * @public
@@ -2512,17 +2512,17 @@ export interface RecoveryInstanceDisk {
2512
2512
  * <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>
2513
2513
  * @public
2514
2514
  */
2515
- internalDeviceName?: string;
2515
+ internalDeviceName?: string | undefined;
2516
2516
  /**
2517
2517
  * <p>The amount of storage on the disk in bytes.</p>
2518
2518
  * @public
2519
2519
  */
2520
- bytes?: number;
2520
+ bytes?: number | undefined;
2521
2521
  /**
2522
2522
  * <p>The EBS Volume ID of this disk.</p>
2523
2523
  * @public
2524
2524
  */
2525
- ebsVolumeID?: string;
2525
+ ebsVolumeID?: string | undefined;
2526
2526
  }
2527
2527
  /**
2528
2528
  * <p>Properties of the Recovery Instance machine.</p>
@@ -2533,37 +2533,37 @@ export interface RecoveryInstanceProperties {
2533
2533
  * <p>The date and time the Recovery Instance properties were last updated on.</p>
2534
2534
  * @public
2535
2535
  */
2536
- lastUpdatedDateTime?: string;
2536
+ lastUpdatedDateTime?: string | undefined;
2537
2537
  /**
2538
2538
  * <p>Hints used to uniquely identify a machine.</p>
2539
2539
  * @public
2540
2540
  */
2541
- identificationHints?: IdentificationHints;
2541
+ identificationHints?: IdentificationHints | undefined;
2542
2542
  /**
2543
2543
  * <p>An array of network interfaces.</p>
2544
2544
  * @public
2545
2545
  */
2546
- networkInterfaces?: NetworkInterface[];
2546
+ networkInterfaces?: NetworkInterface[] | undefined;
2547
2547
  /**
2548
2548
  * <p>An array of disks.</p>
2549
2549
  * @public
2550
2550
  */
2551
- disks?: RecoveryInstanceDisk[];
2551
+ disks?: RecoveryInstanceDisk[] | undefined;
2552
2552
  /**
2553
2553
  * <p>An array of CPUs.</p>
2554
2554
  * @public
2555
2555
  */
2556
- cpus?: CPU[];
2556
+ cpus?: CPU[] | undefined;
2557
2557
  /**
2558
2558
  * <p>The amount of RAM in bytes.</p>
2559
2559
  * @public
2560
2560
  */
2561
- ramBytes?: number;
2561
+ ramBytes?: number | undefined;
2562
2562
  /**
2563
2563
  * <p>Operating system.</p>
2564
2564
  * @public
2565
2565
  */
2566
- os?: OS;
2566
+ os?: OS | undefined;
2567
2567
  }
2568
2568
  /**
2569
2569
  * <p>A Recovery Instance is a replica of a Source Server running on EC2.</p>
@@ -2574,82 +2574,82 @@ export interface RecoveryInstance {
2574
2574
  * <p>The EC2 instance ID of the Recovery Instance.</p>
2575
2575
  * @public
2576
2576
  */
2577
- ec2InstanceID?: string;
2577
+ ec2InstanceID?: string | undefined;
2578
2578
  /**
2579
2579
  * <p>The state of the EC2 instance for this Recovery Instance.</p>
2580
2580
  * @public
2581
2581
  */
2582
- ec2InstanceState?: EC2InstanceState;
2582
+ ec2InstanceState?: EC2InstanceState | undefined;
2583
2583
  /**
2584
2584
  * <p>The ID of the Job that created the Recovery Instance.</p>
2585
2585
  * @public
2586
2586
  */
2587
- jobID?: string;
2587
+ jobID?: string | undefined;
2588
2588
  /**
2589
2589
  * <p>The ID of the Recovery Instance.</p>
2590
2590
  * @public
2591
2591
  */
2592
- recoveryInstanceID?: string;
2592
+ recoveryInstanceID?: string | undefined;
2593
2593
  /**
2594
2594
  * <p>The Source Server ID that this Recovery Instance is associated with.</p>
2595
2595
  * @public
2596
2596
  */
2597
- sourceServerID?: string;
2597
+ sourceServerID?: string | undefined;
2598
2598
  /**
2599
2599
  * <p>The ARN of the Recovery Instance.</p>
2600
2600
  * @public
2601
2601
  */
2602
- arn?: string;
2602
+ arn?: string | undefined;
2603
2603
  /**
2604
2604
  * <p>An array of tags that are associated with the Recovery Instance.</p>
2605
2605
  * @public
2606
2606
  */
2607
- tags?: Record<string, string>;
2607
+ tags?: Record<string, string> | undefined;
2608
2608
  /**
2609
2609
  * <p>An object representing failback related information of the Recovery Instance.</p>
2610
2610
  * @public
2611
2611
  */
2612
- failback?: RecoveryInstanceFailback;
2612
+ failback?: RecoveryInstanceFailback | undefined;
2613
2613
  /**
2614
2614
  * <p>The Data Replication Info of the Recovery Instance.</p>
2615
2615
  * @public
2616
2616
  */
2617
- dataReplicationInfo?: RecoveryInstanceDataReplicationInfo;
2617
+ dataReplicationInfo?: RecoveryInstanceDataReplicationInfo | undefined;
2618
2618
  /**
2619
2619
  * <p>Properties of the Recovery Instance machine.</p>
2620
2620
  * @public
2621
2621
  */
2622
- recoveryInstanceProperties?: RecoveryInstanceProperties;
2622
+ recoveryInstanceProperties?: RecoveryInstanceProperties | undefined;
2623
2623
  /**
2624
2624
  * <p>The date and time of the Point in Time (PIT) snapshot that this Recovery Instance was launched from.</p>
2625
2625
  * @public
2626
2626
  */
2627
- pointInTimeSnapshotDateTime?: string;
2627
+ pointInTimeSnapshotDateTime?: string | undefined;
2628
2628
  /**
2629
2629
  * <p>Whether this Recovery Instance was created for a drill or for an actual Recovery event.</p>
2630
2630
  * @public
2631
2631
  */
2632
- isDrill?: boolean;
2632
+ isDrill?: boolean | undefined;
2633
2633
  /**
2634
2634
  * <p>Environment (On Premises / AWS) of the instance that the recovery instance originated from.</p>
2635
2635
  * @public
2636
2636
  */
2637
- originEnvironment?: OriginEnvironment;
2637
+ originEnvironment?: OriginEnvironment | undefined;
2638
2638
  /**
2639
2639
  * <p>AWS availability zone associated with the recovery instance.</p>
2640
2640
  * @public
2641
2641
  */
2642
- originAvailabilityZone?: string;
2642
+ originAvailabilityZone?: string | undefined;
2643
2643
  /**
2644
2644
  * <p>The version of the DRS agent installed on the recovery instance</p>
2645
2645
  * @public
2646
2646
  */
2647
- agentVersion?: string;
2647
+ agentVersion?: string | undefined;
2648
2648
  /**
2649
2649
  * <p>The ARN of the source Outpost</p>
2650
2650
  * @public
2651
2651
  */
2652
- sourceOutpostArn?: string;
2652
+ sourceOutpostArn?: string | undefined;
2653
2653
  }
2654
2654
  /**
2655
2655
  * @public
@@ -2659,12 +2659,12 @@ export interface DescribeRecoveryInstancesResponse {
2659
2659
  * <p>The token of the next Recovery Instance to retrieve.</p>
2660
2660
  * @public
2661
2661
  */
2662
- nextToken?: string;
2662
+ nextToken?: string | undefined;
2663
2663
  /**
2664
2664
  * <p>An array of Recovery Instances.</p>
2665
2665
  * @public
2666
2666
  */
2667
- items?: RecoveryInstance[];
2667
+ items?: RecoveryInstance[] | undefined;
2668
2668
  }
2669
2669
  /**
2670
2670
  * <p>A set of filters by which to return Recovery Snapshots.</p>
@@ -2675,12 +2675,12 @@ export interface DescribeRecoverySnapshotsRequestFilters {
2675
2675
  * <p>The start date in a date range query.</p>
2676
2676
  * @public
2677
2677
  */
2678
- fromDateTime?: string;
2678
+ fromDateTime?: string | undefined;
2679
2679
  /**
2680
2680
  * <p>The end date in a date range query.</p>
2681
2681
  * @public
2682
2682
  */
2683
- toDateTime?: string;
2683
+ toDateTime?: string | undefined;
2684
2684
  }
2685
2685
  /**
2686
2686
  * @public
@@ -2707,22 +2707,22 @@ export interface DescribeRecoverySnapshotsRequest {
2707
2707
  * <p>A set of filters by which to return Recovery Snapshots.</p>
2708
2708
  * @public
2709
2709
  */
2710
- filters?: DescribeRecoverySnapshotsRequestFilters;
2710
+ filters?: DescribeRecoverySnapshotsRequestFilters | undefined;
2711
2711
  /**
2712
2712
  * <p>The sorted ordering by which to return Recovery Snapshots.</p>
2713
2713
  * @public
2714
2714
  */
2715
- order?: RecoverySnapshotsOrder;
2715
+ order?: RecoverySnapshotsOrder | undefined;
2716
2716
  /**
2717
2717
  * <p>Maximum number of Recovery Snapshots to retrieve.</p>
2718
2718
  * @public
2719
2719
  */
2720
- maxResults?: number;
2720
+ maxResults?: number | undefined;
2721
2721
  /**
2722
2722
  * <p>The token of the next Recovery Snapshot to retrieve.</p>
2723
2723
  * @public
2724
2724
  */
2725
- nextToken?: string;
2725
+ nextToken?: string | undefined;
2726
2726
  }
2727
2727
  /**
2728
2728
  * <p>A snapshot of a Source Server used during recovery.</p>
@@ -2748,12 +2748,12 @@ export interface RecoverySnapshot {
2748
2748
  * <p>The actual timestamp that the snapshot was taken.</p>
2749
2749
  * @public
2750
2750
  */
2751
- timestamp?: string;
2751
+ timestamp?: string | undefined;
2752
2752
  /**
2753
2753
  * <p>A list of EBS snapshots.</p>
2754
2754
  * @public
2755
2755
  */
2756
- ebsSnapshots?: string[];
2756
+ ebsSnapshots?: string[] | undefined;
2757
2757
  }
2758
2758
  /**
2759
2759
  * @public
@@ -2763,12 +2763,12 @@ export interface DescribeRecoverySnapshotsResponse {
2763
2763
  * <p>An array of Recovery Snapshots.</p>
2764
2764
  * @public
2765
2765
  */
2766
- items?: RecoverySnapshot[];
2766
+ items?: RecoverySnapshot[] | undefined;
2767
2767
  /**
2768
2768
  * <p>The token of the next Recovery Snapshot to retrieve.</p>
2769
2769
  * @public
2770
2770
  */
2771
- nextToken?: string;
2771
+ nextToken?: string | undefined;
2772
2772
  }
2773
2773
  /**
2774
2774
  * @public
@@ -2778,17 +2778,17 @@ export interface DescribeReplicationConfigurationTemplatesRequest {
2778
2778
  * <p>The IDs of the Replication Configuration Templates to retrieve. An empty list means all Replication Configuration Templates.</p>
2779
2779
  * @public
2780
2780
  */
2781
- replicationConfigurationTemplateIDs?: string[];
2781
+ replicationConfigurationTemplateIDs?: string[] | undefined;
2782
2782
  /**
2783
2783
  * <p>Maximum number of Replication Configuration Templates to retrieve.</p>
2784
2784
  * @public
2785
2785
  */
2786
- maxResults?: number;
2786
+ maxResults?: number | undefined;
2787
2787
  /**
2788
2788
  * <p>The token of the next Replication Configuration Template to retrieve.</p>
2789
2789
  * @public
2790
2790
  */
2791
- nextToken?: string;
2791
+ nextToken?: string | undefined;
2792
2792
  }
2793
2793
  /**
2794
2794
  * @public
@@ -2798,12 +2798,12 @@ export interface DescribeReplicationConfigurationTemplatesResponse {
2798
2798
  * <p>An array of Replication Configuration Templates.</p>
2799
2799
  * @public
2800
2800
  */
2801
- items?: ReplicationConfigurationTemplate[];
2801
+ items?: ReplicationConfigurationTemplate[] | undefined;
2802
2802
  /**
2803
2803
  * <p>The token of the next Replication Configuration Template to retrieve.</p>
2804
2804
  * @public
2805
2805
  */
2806
- nextToken?: string;
2806
+ nextToken?: string | undefined;
2807
2807
  }
2808
2808
  /**
2809
2809
  * <p>A set of filters by which to return Source Networks.</p>
@@ -2814,17 +2814,17 @@ export interface DescribeSourceNetworksRequestFilters {
2814
2814
  * <p>An array of Source Network IDs that should be returned. An empty array means all Source Networks.</p>
2815
2815
  * @public
2816
2816
  */
2817
- sourceNetworkIDs?: string[];
2817
+ sourceNetworkIDs?: string[] | undefined;
2818
2818
  /**
2819
2819
  * <p>Filter Source Networks by account ID containing the protected VPCs.</p>
2820
2820
  * @public
2821
2821
  */
2822
- originAccountID?: string;
2822
+ originAccountID?: string | undefined;
2823
2823
  /**
2824
2824
  * <p>Filter Source Networks by the region containing the protected VPCs.</p>
2825
2825
  * @public
2826
2826
  */
2827
- originRegion?: string;
2827
+ originRegion?: string | undefined;
2828
2828
  }
2829
2829
  /**
2830
2830
  * @public
@@ -2834,17 +2834,17 @@ export interface DescribeSourceNetworksRequest {
2834
2834
  * <p>A set of filters by which to return Source Networks.</p>
2835
2835
  * @public
2836
2836
  */
2837
- filters?: DescribeSourceNetworksRequestFilters;
2837
+ filters?: DescribeSourceNetworksRequestFilters | undefined;
2838
2838
  /**
2839
2839
  * <p>Maximum number of Source Networks to retrieve.</p>
2840
2840
  * @public
2841
2841
  */
2842
- maxResults?: number;
2842
+ maxResults?: number | undefined;
2843
2843
  /**
2844
2844
  * <p>The token of the next Source Networks to retrieve.</p>
2845
2845
  * @public
2846
2846
  */
2847
- nextToken?: string;
2847
+ nextToken?: string | undefined;
2848
2848
  }
2849
2849
  /**
2850
2850
  * @public
@@ -2872,17 +2872,17 @@ export interface RecoveryLifeCycle {
2872
2872
  * <p>The date and time the last Source Network recovery was initiated.</p>
2873
2873
  * @public
2874
2874
  */
2875
- apiCallDateTime?: Date;
2875
+ apiCallDateTime?: Date | undefined;
2876
2876
  /**
2877
2877
  * <p>The ID of the Job that was used to last recover the Source Network.</p>
2878
2878
  * @public
2879
2879
  */
2880
- jobID?: string;
2880
+ jobID?: string | undefined;
2881
2881
  /**
2882
2882
  * <p>The status of the last recovery status of this Source Network.</p>
2883
2883
  * @public
2884
2884
  */
2885
- lastRecoveryResult?: RecoveryResult;
2885
+ lastRecoveryResult?: RecoveryResult | undefined;
2886
2886
  }
2887
2887
  /**
2888
2888
  * @public
@@ -2907,22 +2907,22 @@ export interface SourceNetwork {
2907
2907
  * <p>Source Network ID.</p>
2908
2908
  * @public
2909
2909
  */
2910
- sourceNetworkID?: string;
2910
+ sourceNetworkID?: string | undefined;
2911
2911
  /**
2912
2912
  * <p>VPC ID protected by the Source Network.</p>
2913
2913
  * @public
2914
2914
  */
2915
- sourceVpcID?: string;
2915
+ sourceVpcID?: string | undefined;
2916
2916
  /**
2917
2917
  * <p>The ARN of the Source Network.</p>
2918
2918
  * @public
2919
2919
  */
2920
- arn?: string;
2920
+ arn?: string | undefined;
2921
2921
  /**
2922
2922
  * <p>A list of tags associated with the Source Network.</p>
2923
2923
  * @public
2924
2924
  */
2925
- tags?: Record<string, string>;
2925
+ tags?: Record<string, string> | undefined;
2926
2926
  /**
2927
2927
  * <p>Status of Source Network Replication. Possible values:
2928
2928
  * (a) STOPPED - Source Network is not replicating.
@@ -2931,37 +2931,37 @@ export interface SourceNetwork {
2931
2931
  * (d) ERROR - Source Network replication has failed</p>
2932
2932
  * @public
2933
2933
  */
2934
- replicationStatus?: ReplicationStatus;
2934
+ replicationStatus?: ReplicationStatus | undefined;
2935
2935
  /**
2936
2936
  * <p>Error details in case Source Network replication status is ERROR.</p>
2937
2937
  * @public
2938
2938
  */
2939
- replicationStatusDetails?: string;
2939
+ replicationStatusDetails?: string | undefined;
2940
2940
  /**
2941
2941
  * <p>CloudFormation stack name that was deployed for recovering the Source Network.</p>
2942
2942
  * @public
2943
2943
  */
2944
- cfnStackName?: string;
2944
+ cfnStackName?: string | undefined;
2945
2945
  /**
2946
2946
  * <p>Region containing the VPC protected by the Source Network.</p>
2947
2947
  * @public
2948
2948
  */
2949
- sourceRegion?: string;
2949
+ sourceRegion?: string | undefined;
2950
2950
  /**
2951
2951
  * <p>Account ID containing the VPC protected by the Source Network.</p>
2952
2952
  * @public
2953
2953
  */
2954
- sourceAccountID?: string;
2954
+ sourceAccountID?: string | undefined;
2955
2955
  /**
2956
2956
  * <p>An object containing information regarding the last recovery of the Source Network.</p>
2957
2957
  * @public
2958
2958
  */
2959
- lastRecovery?: RecoveryLifeCycle;
2959
+ lastRecovery?: RecoveryLifeCycle | undefined;
2960
2960
  /**
2961
2961
  * <p>ID of the recovered VPC following Source Network recovery.</p>
2962
2962
  * @public
2963
2963
  */
2964
- launchedVpcID?: string;
2964
+ launchedVpcID?: string | undefined;
2965
2965
  }
2966
2966
  /**
2967
2967
  * @public
@@ -2971,12 +2971,12 @@ export interface DescribeSourceNetworksResponse {
2971
2971
  * <p>An array of Source Networks.</p>
2972
2972
  * @public
2973
2973
  */
2974
- items?: SourceNetwork[];
2974
+ items?: SourceNetwork[] | undefined;
2975
2975
  /**
2976
2976
  * <p>The token of the next Source Networks to retrieve.</p>
2977
2977
  * @public
2978
2978
  */
2979
- nextToken?: string;
2979
+ nextToken?: string | undefined;
2980
2980
  }
2981
2981
  /**
2982
2982
  * <p>A set of filters by which to return Source Servers.</p>
@@ -2987,17 +2987,17 @@ export interface DescribeSourceServersRequestFilters {
2987
2987
  * <p>An array of Source Servers IDs that should be returned. An empty array means all Source Servers.</p>
2988
2988
  * @public
2989
2989
  */
2990
- sourceServerIDs?: string[];
2990
+ sourceServerIDs?: string[] | undefined;
2991
2991
  /**
2992
2992
  * <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>
2993
2993
  * @public
2994
2994
  */
2995
- hardwareId?: string;
2995
+ hardwareId?: string | undefined;
2996
2996
  /**
2997
2997
  * <p>An array of staging account IDs that extended source servers belong to. An empty array means all source servers will be shown.</p>
2998
2998
  * @public
2999
2999
  */
3000
- stagingAccountIDs?: string[];
3000
+ stagingAccountIDs?: string[] | undefined;
3001
3001
  }
3002
3002
  /**
3003
3003
  * @public
@@ -3007,17 +3007,17 @@ export interface DescribeSourceServersRequest {
3007
3007
  * <p>A set of filters by which to return Source Servers.</p>
3008
3008
  * @public
3009
3009
  */
3010
- filters?: DescribeSourceServersRequestFilters;
3010
+ filters?: DescribeSourceServersRequestFilters | undefined;
3011
3011
  /**
3012
3012
  * <p>Maximum number of Source Servers to retrieve.</p>
3013
3013
  * @public
3014
3014
  */
3015
- maxResults?: number;
3015
+ maxResults?: number | undefined;
3016
3016
  /**
3017
3017
  * <p>The token of the next Source Server to retrieve.</p>
3018
3018
  * @public
3019
3019
  */
3020
- nextToken?: string;
3020
+ nextToken?: string | undefined;
3021
3021
  }
3022
3022
  /**
3023
3023
  * @public
@@ -3027,12 +3027,12 @@ export interface DescribeSourceServersResponse {
3027
3027
  * <p>An array of Source Servers.</p>
3028
3028
  * @public
3029
3029
  */
3030
- items?: SourceServer[];
3030
+ items?: SourceServer[] | undefined;
3031
3031
  /**
3032
3032
  * <p>The token of the next Source Server to retrieve.</p>
3033
3033
  * @public
3034
3034
  */
3035
- nextToken?: string;
3035
+ nextToken?: string | undefined;
3036
3036
  }
3037
3037
  /**
3038
3038
  * @public
@@ -3077,42 +3077,42 @@ export interface UpdateLaunchConfigurationTemplateRequest {
3077
3077
  * <p>Launch disposition.</p>
3078
3078
  * @public
3079
3079
  */
3080
- launchDisposition?: LaunchDisposition;
3080
+ launchDisposition?: LaunchDisposition | undefined;
3081
3081
  /**
3082
3082
  * <p>Target instance type right-sizing method.</p>
3083
3083
  * @public
3084
3084
  */
3085
- targetInstanceTypeRightSizingMethod?: TargetInstanceTypeRightSizingMethod;
3085
+ targetInstanceTypeRightSizingMethod?: TargetInstanceTypeRightSizingMethod | undefined;
3086
3086
  /**
3087
3087
  * <p>Copy private IP.</p>
3088
3088
  * @public
3089
3089
  */
3090
- copyPrivateIp?: boolean;
3090
+ copyPrivateIp?: boolean | undefined;
3091
3091
  /**
3092
3092
  * <p>Copy tags.</p>
3093
3093
  * @public
3094
3094
  */
3095
- copyTags?: boolean;
3095
+ copyTags?: boolean | undefined;
3096
3096
  /**
3097
3097
  * <p>Licensing.</p>
3098
3098
  * @public
3099
3099
  */
3100
- licensing?: Licensing;
3100
+ licensing?: Licensing | undefined;
3101
3101
  /**
3102
3102
  * <p>S3 bucket ARN to export Source Network templates.</p>
3103
3103
  * @public
3104
3104
  */
3105
- exportBucketArn?: string;
3105
+ exportBucketArn?: string | undefined;
3106
3106
  /**
3107
3107
  * <p>Whether we want to activate post-launch actions.</p>
3108
3108
  * @public
3109
3109
  */
3110
- postLaunchEnabled?: boolean;
3110
+ postLaunchEnabled?: boolean | undefined;
3111
3111
  /**
3112
3112
  * <p>DRS will set the 'launch into instance ID' of any source server when performing a drill, recovery or failback to the previous region or availability zone, using the instance ID of the source instance.</p>
3113
3113
  * @public
3114
3114
  */
3115
- launchIntoSourceInstance?: boolean;
3115
+ launchIntoSourceInstance?: boolean | undefined;
3116
3116
  }
3117
3117
  /**
3118
3118
  * @public
@@ -3122,7 +3122,7 @@ export interface UpdateLaunchConfigurationTemplateResponse {
3122
3122
  * <p>Updated Launch Configuration Template.</p>
3123
3123
  * @public
3124
3124
  */
3125
- launchConfigurationTemplate?: LaunchConfigurationTemplate;
3125
+ launchConfigurationTemplate?: LaunchConfigurationTemplate | undefined;
3126
3126
  }
3127
3127
  /**
3128
3128
  * @public
@@ -3137,12 +3137,12 @@ export interface ListExtensibleSourceServersRequest {
3137
3137
  * <p>The maximum number of extensible source servers to retrieve.</p>
3138
3138
  * @public
3139
3139
  */
3140
- maxResults?: number;
3140
+ maxResults?: number | undefined;
3141
3141
  /**
3142
3142
  * <p>The token of the next extensible source server to retrieve.</p>
3143
3143
  * @public
3144
3144
  */
3145
- nextToken?: string;
3145
+ nextToken?: string | undefined;
3146
3146
  }
3147
3147
  /**
3148
3148
  * <p>Source server in staging account that extended source server connected to.</p>
@@ -3153,17 +3153,17 @@ export interface StagingSourceServer {
3153
3153
  * <p>Hostname of staging source server.</p>
3154
3154
  * @public
3155
3155
  */
3156
- hostname?: string;
3156
+ hostname?: string | undefined;
3157
3157
  /**
3158
3158
  * <p>The ARN of the source server.</p>
3159
3159
  * @public
3160
3160
  */
3161
- arn?: string;
3161
+ arn?: string | undefined;
3162
3162
  /**
3163
3163
  * <p>A list of tags associated with the staging source server.</p>
3164
3164
  * @public
3165
3165
  */
3166
- tags?: Record<string, string>;
3166
+ tags?: Record<string, string> | undefined;
3167
3167
  }
3168
3168
  /**
3169
3169
  * @public
@@ -3173,12 +3173,12 @@ export interface ListExtensibleSourceServersResponse {
3173
3173
  * <p>A list of source servers on a staging Account that are extensible.</p>
3174
3174
  * @public
3175
3175
  */
3176
- items?: StagingSourceServer[];
3176
+ items?: StagingSourceServer[] | undefined;
3177
3177
  /**
3178
3178
  * <p>The token of the next extensible source server to retrieve.</p>
3179
3179
  * @public
3180
3180
  */
3181
- nextToken?: string;
3181
+ nextToken?: string | undefined;
3182
3182
  }
3183
3183
  /**
3184
3184
  * <p>Resource launch actions filter.</p>
@@ -3189,7 +3189,7 @@ export interface LaunchActionsRequestFilters {
3189
3189
  * <p>Launch actions Ids.</p>
3190
3190
  * @public
3191
3191
  */
3192
- actionIds?: string[];
3192
+ actionIds?: string[] | undefined;
3193
3193
  }
3194
3194
  /**
3195
3195
  * @public
@@ -3204,17 +3204,17 @@ export interface ListLaunchActionsRequest {
3204
3204
  * <p>Filters to apply when listing resource launch actions.</p>
3205
3205
  * @public
3206
3206
  */
3207
- filters?: LaunchActionsRequestFilters;
3207
+ filters?: LaunchActionsRequestFilters | undefined;
3208
3208
  /**
3209
3209
  * <p>Maximum amount of items to return when listing resource launch actions.</p>
3210
3210
  * @public
3211
3211
  */
3212
- maxResults?: number;
3212
+ maxResults?: number | undefined;
3213
3213
  /**
3214
3214
  * <p>Next token to use when listing resource launch actions.</p>
3215
3215
  * @public
3216
3216
  */
3217
- nextToken?: string;
3217
+ nextToken?: string | undefined;
3218
3218
  }
3219
3219
  /**
3220
3220
  * @public
@@ -3224,12 +3224,12 @@ export interface ListLaunchActionsResponse {
3224
3224
  * <p>List of resource launch actions.</p>
3225
3225
  * @public
3226
3226
  */
3227
- items?: LaunchAction[];
3227
+ items?: LaunchAction[] | undefined;
3228
3228
  /**
3229
3229
  * <p>Next token returned when listing resource launch actions.</p>
3230
3230
  * @public
3231
3231
  */
3232
- nextToken?: string;
3232
+ nextToken?: string | undefined;
3233
3233
  }
3234
3234
  /**
3235
3235
  * @public
@@ -3239,12 +3239,12 @@ export interface ListStagingAccountsRequest {
3239
3239
  * <p>The maximum number of staging Accounts to retrieve.</p>
3240
3240
  * @public
3241
3241
  */
3242
- maxResults?: number;
3242
+ maxResults?: number | undefined;
3243
3243
  /**
3244
3244
  * <p>The token of the next staging Account to retrieve.</p>
3245
3245
  * @public
3246
3246
  */
3247
- nextToken?: string;
3247
+ nextToken?: string | undefined;
3248
3248
  }
3249
3249
  /**
3250
3250
  * @public
@@ -3254,12 +3254,12 @@ export interface ListStagingAccountsResponse {
3254
3254
  * <p>An array of staging AWS Accounts.</p>
3255
3255
  * @public
3256
3256
  */
3257
- accounts?: Account[];
3257
+ accounts?: Account[] | undefined;
3258
3258
  /**
3259
3259
  * <p>The token of the next staging Account to retrieve.</p>
3260
3260
  * @public
3261
3261
  */
3262
- nextToken?: string;
3262
+ nextToken?: string | undefined;
3263
3263
  }
3264
3264
  /**
3265
3265
  * @public
@@ -3279,7 +3279,7 @@ export interface ListTagsForResourceResponse {
3279
3279
  * <p>The tags of the requested resource.</p>
3280
3280
  * @public
3281
3281
  */
3282
- tags?: Record<string, string>;
3282
+ tags?: Record<string, string> | undefined;
3283
3283
  }
3284
3284
  /**
3285
3285
  * @public
@@ -3334,7 +3334,7 @@ export interface PutLaunchActionRequest {
3334
3334
  * <p>Launch action parameters.</p>
3335
3335
  * @public
3336
3336
  */
3337
- parameters?: Record<string, LaunchActionParameter>;
3337
+ parameters?: Record<string, LaunchActionParameter> | undefined;
3338
3338
  /**
3339
3339
  * <p>Launch action description.</p>
3340
3340
  * @public
@@ -3349,62 +3349,62 @@ export interface PutLaunchActionResponse {
3349
3349
  * <p>Launch configuration template Id or Source Server Id</p>
3350
3350
  * @public
3351
3351
  */
3352
- resourceId?: string;
3352
+ resourceId?: string | undefined;
3353
3353
  /**
3354
3354
  * <p>Launch action Id.</p>
3355
3355
  * @public
3356
3356
  */
3357
- actionId?: string;
3357
+ actionId?: string | undefined;
3358
3358
  /**
3359
3359
  * <p>Launch action code.</p>
3360
3360
  * @public
3361
3361
  */
3362
- actionCode?: string;
3362
+ actionCode?: string | undefined;
3363
3363
  /**
3364
3364
  * <p>Launch action type.</p>
3365
3365
  * @public
3366
3366
  */
3367
- type?: LaunchActionType;
3367
+ type?: LaunchActionType | undefined;
3368
3368
  /**
3369
3369
  * <p>Launch action name.</p>
3370
3370
  * @public
3371
3371
  */
3372
- name?: string;
3372
+ name?: string | undefined;
3373
3373
  /**
3374
3374
  * <p>Whether the launch action is active.</p>
3375
3375
  * @public
3376
3376
  */
3377
- active?: boolean;
3377
+ active?: boolean | undefined;
3378
3378
  /**
3379
3379
  * <p>Launch action order.</p>
3380
3380
  * @public
3381
3381
  */
3382
- order?: number;
3382
+ order?: number | undefined;
3383
3383
  /**
3384
3384
  * <p>Launch action version.</p>
3385
3385
  * @public
3386
3386
  */
3387
- actionVersion?: string;
3387
+ actionVersion?: string | undefined;
3388
3388
  /**
3389
3389
  * <p>Whether the launch will not be marked as failed if this action fails.</p>
3390
3390
  * @public
3391
3391
  */
3392
- optional?: boolean;
3392
+ optional?: boolean | undefined;
3393
3393
  /**
3394
3394
  * <p>Launch action parameters.</p>
3395
3395
  * @public
3396
3396
  */
3397
- parameters?: Record<string, LaunchActionParameter>;
3397
+ parameters?: Record<string, LaunchActionParameter> | undefined;
3398
3398
  /**
3399
3399
  * <p>Launch action description.</p>
3400
3400
  * @public
3401
3401
  */
3402
- description?: string;
3402
+ description?: string | undefined;
3403
3403
  /**
3404
3404
  * <p>Launch action category.</p>
3405
3405
  * @public
3406
3406
  */
3407
- category?: LaunchActionCategory;
3407
+ category?: LaunchActionCategory | undefined;
3408
3408
  }
3409
3409
  /**
3410
3410
  * @public
@@ -3429,17 +3429,17 @@ export interface GetFailbackReplicationConfigurationResponse {
3429
3429
  * <p>The name of the Failback Replication Configuration.</p>
3430
3430
  * @public
3431
3431
  */
3432
- name?: string;
3432
+ name?: string | undefined;
3433
3433
  /**
3434
3434
  * <p>Configure bandwidth throttling for the outbound data transfer rate of the Recovery Instance in Mbps.</p>
3435
3435
  * @public
3436
3436
  */
3437
- bandwidthThrottling?: number;
3437
+ bandwidthThrottling?: number | undefined;
3438
3438
  /**
3439
3439
  * <p>Whether to use Private IP for the failback replication of the Recovery Instance.</p>
3440
3440
  * @public
3441
3441
  */
3442
- usePrivateIP?: boolean;
3442
+ usePrivateIP?: boolean | undefined;
3443
3443
  }
3444
3444
  /**
3445
3445
  * @public
@@ -3459,7 +3459,7 @@ export interface ReverseReplicationResponse {
3459
3459
  * <p>ARN of created SourceServer.</p>
3460
3460
  * @public
3461
3461
  */
3462
- reversedDirectionSourceServerArn?: string;
3462
+ reversedDirectionSourceServerArn?: string | undefined;
3463
3463
  }
3464
3464
  /**
3465
3465
  * @public
@@ -3474,7 +3474,7 @@ export interface StartFailbackLaunchRequest {
3474
3474
  * <p>The tags to be associated with the failback launch Job.</p>
3475
3475
  * @public
3476
3476
  */
3477
- tags?: Record<string, string>;
3477
+ tags?: Record<string, string> | undefined;
3478
3478
  }
3479
3479
  /**
3480
3480
  * @public
@@ -3484,7 +3484,7 @@ export interface StartFailbackLaunchResponse {
3484
3484
  * <p>The failback launch Job.</p>
3485
3485
  * @public
3486
3486
  */
3487
- job?: Job;
3487
+ job?: Job | undefined;
3488
3488
  }
3489
3489
  /**
3490
3490
  * @public
@@ -3514,7 +3514,7 @@ export interface TerminateRecoveryInstancesResponse {
3514
3514
  * <p>The Job for terminating the Recovery Instances.</p>
3515
3515
  * @public
3516
3516
  */
3517
- job?: Job;
3517
+ job?: Job | undefined;
3518
3518
  }
3519
3519
  /**
3520
3520
  * @public
@@ -3529,17 +3529,17 @@ export interface UpdateFailbackReplicationConfigurationRequest {
3529
3529
  * <p>The name of the Failback Replication Configuration.</p>
3530
3530
  * @public
3531
3531
  */
3532
- name?: string;
3532
+ name?: string | undefined;
3533
3533
  /**
3534
3534
  * <p>Configure bandwidth throttling for the outbound data transfer rate of the Recovery Instance in Mbps.</p>
3535
3535
  * @public
3536
3536
  */
3537
- bandwidthThrottling?: number;
3537
+ bandwidthThrottling?: number | undefined;
3538
3538
  /**
3539
3539
  * <p>Whether to use Private IP for the failback replication of the Recovery Instance.</p>
3540
3540
  * @public
3541
3541
  */
3542
- usePrivateIP?: boolean;
3542
+ usePrivateIP?: boolean | undefined;
3543
3543
  }
3544
3544
  /**
3545
3545
  * @public
@@ -3554,77 +3554,77 @@ export interface UpdateReplicationConfigurationTemplateRequest {
3554
3554
  * <p>The Replication Configuration Template ARN.</p>
3555
3555
  * @public
3556
3556
  */
3557
- arn?: string;
3557
+ arn?: string | undefined;
3558
3558
  /**
3559
3559
  * <p>The subnet to be used by the replication staging area.</p>
3560
3560
  * @public
3561
3561
  */
3562
- stagingAreaSubnetId?: string;
3562
+ stagingAreaSubnetId?: string | undefined;
3563
3563
  /**
3564
3564
  * <p>Whether to associate the default Elastic Disaster Recovery Security group with the Replication Configuration Template.</p>
3565
3565
  * @public
3566
3566
  */
3567
- associateDefaultSecurityGroup?: boolean;
3567
+ associateDefaultSecurityGroup?: boolean | undefined;
3568
3568
  /**
3569
3569
  * <p>The security group IDs that will be used by the replication server.</p>
3570
3570
  * @public
3571
3571
  */
3572
- replicationServersSecurityGroupsIDs?: string[];
3572
+ replicationServersSecurityGroupsIDs?: string[] | undefined;
3573
3573
  /**
3574
3574
  * <p>The instance type to be used for the replication server.</p>
3575
3575
  * @public
3576
3576
  */
3577
- replicationServerInstanceType?: string;
3577
+ replicationServerInstanceType?: string | undefined;
3578
3578
  /**
3579
3579
  * <p>Whether to use a dedicated Replication Server in the replication staging area.</p>
3580
3580
  * @public
3581
3581
  */
3582
- useDedicatedReplicationServer?: boolean;
3582
+ useDedicatedReplicationServer?: boolean | undefined;
3583
3583
  /**
3584
3584
  * <p>The Staging Disk EBS volume type to be used during replication.</p>
3585
3585
  * @public
3586
3586
  */
3587
- defaultLargeStagingDiskType?: ReplicationConfigurationDefaultLargeStagingDiskType;
3587
+ defaultLargeStagingDiskType?: ReplicationConfigurationDefaultLargeStagingDiskType | undefined;
3588
3588
  /**
3589
3589
  * <p>The type of EBS encryption to be used during replication.</p>
3590
3590
  * @public
3591
3591
  */
3592
- ebsEncryption?: ReplicationConfigurationEbsEncryption;
3592
+ ebsEncryption?: ReplicationConfigurationEbsEncryption | undefined;
3593
3593
  /**
3594
3594
  * <p>The ARN of the EBS encryption key to be used during replication.</p>
3595
3595
  * @public
3596
3596
  */
3597
- ebsEncryptionKeyArn?: string;
3597
+ ebsEncryptionKeyArn?: string | undefined;
3598
3598
  /**
3599
3599
  * <p>Configure bandwidth throttling for the outbound data transfer rate of the Source Server in Mbps.</p>
3600
3600
  * @public
3601
3601
  */
3602
- bandwidthThrottling?: number;
3602
+ bandwidthThrottling?: number | undefined;
3603
3603
  /**
3604
3604
  * <p>The data plane routing mechanism that will be used for replication.</p>
3605
3605
  * @public
3606
3606
  */
3607
- dataPlaneRouting?: ReplicationConfigurationDataPlaneRouting;
3607
+ dataPlaneRouting?: ReplicationConfigurationDataPlaneRouting | undefined;
3608
3608
  /**
3609
3609
  * <p>Whether to create a Public IP for the Recovery Instance by default.</p>
3610
3610
  * @public
3611
3611
  */
3612
- createPublicIP?: boolean;
3612
+ createPublicIP?: boolean | undefined;
3613
3613
  /**
3614
3614
  * <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>
3615
3615
  * @public
3616
3616
  */
3617
- stagingAreaTags?: Record<string, string>;
3617
+ stagingAreaTags?: Record<string, string> | undefined;
3618
3618
  /**
3619
3619
  * <p>The Point in time (PIT) policy to manage snapshots taken during replication.</p>
3620
3620
  * @public
3621
3621
  */
3622
- pitPolicy?: PITPolicyRule[];
3622
+ pitPolicy?: PITPolicyRule[] | undefined;
3623
3623
  /**
3624
3624
  * <p>Whether to allow the AWS replication agent to automatically replicate newly added disks.</p>
3625
3625
  * @public
3626
3626
  */
3627
- autoReplicateNewDisks?: boolean;
3627
+ autoReplicateNewDisks?: boolean | undefined;
3628
3628
  }
3629
3629
  /**
3630
3630
  * @public
@@ -3644,7 +3644,7 @@ export interface ExportSourceNetworkCfnTemplateResponse {
3644
3644
  * <p>S3 bucket URL where the Source Network CloudFormation template was exported to.</p>
3645
3645
  * @public
3646
3646
  */
3647
- s3DestinationUrl?: string;
3647
+ s3DestinationUrl?: string | undefined;
3648
3648
  }
3649
3649
  /**
3650
3650
  * <p>An object representing the Source Network to recover.</p>
@@ -3660,7 +3660,7 @@ export interface StartSourceNetworkRecoveryRequestNetworkEntry {
3660
3660
  * <p>CloudFormation stack name to be used for recovering the network.</p>
3661
3661
  * @public
3662
3662
  */
3663
- cfnStackName?: string;
3663
+ cfnStackName?: string | undefined;
3664
3664
  }
3665
3665
  /**
3666
3666
  * @public
@@ -3675,12 +3675,12 @@ export interface StartSourceNetworkRecoveryRequest {
3675
3675
  * <p>Don't update existing CloudFormation Stack, recover the network using a new stack.</p>
3676
3676
  * @public
3677
3677
  */
3678
- deployAsNew?: boolean;
3678
+ deployAsNew?: boolean | undefined;
3679
3679
  /**
3680
3680
  * <p>The tags to be associated with the Source Network recovery Job.</p>
3681
3681
  * @public
3682
3682
  */
3683
- tags?: Record<string, string>;
3683
+ tags?: Record<string, string> | undefined;
3684
3684
  }
3685
3685
  /**
3686
3686
  * @public
@@ -3690,7 +3690,7 @@ export interface StartSourceNetworkRecoveryResponse {
3690
3690
  * <p>The Source Network recovery Job.</p>
3691
3691
  * @public
3692
3692
  */
3693
- job?: Job;
3693
+ job?: Job | undefined;
3694
3694
  }
3695
3695
  /**
3696
3696
  * @public
@@ -3710,7 +3710,7 @@ export interface StartSourceNetworkReplicationResponse {
3710
3710
  * <p>Source Network which was requested for replication.</p>
3711
3711
  * @public
3712
3712
  */
3713
- sourceNetwork?: SourceNetwork;
3713
+ sourceNetwork?: SourceNetwork | undefined;
3714
3714
  }
3715
3715
  /**
3716
3716
  * @public
@@ -3730,7 +3730,7 @@ export interface StopSourceNetworkReplicationResponse {
3730
3730
  * <p>Source Network which was requested to stop replication.</p>
3731
3731
  * @public
3732
3732
  */
3733
- sourceNetwork?: SourceNetwork;
3733
+ sourceNetwork?: SourceNetwork | undefined;
3734
3734
  }
3735
3735
  /**
3736
3736
  * @public
@@ -3751,7 +3751,7 @@ export interface LaunchIntoInstanceProperties {
3751
3751
  * <p>Optionally holds EC2 instance ID of an instance to launch into, instead of launching a new instance during drill, recovery or failback.</p>
3752
3752
  * @public
3753
3753
  */
3754
- launchIntoEC2InstanceID?: string;
3754
+ launchIntoEC2InstanceID?: string | undefined;
3755
3755
  }
3756
3756
  /**
3757
3757
  * @public
@@ -3761,52 +3761,52 @@ export interface LaunchConfiguration {
3761
3761
  * <p>The ID of the Source Server for this launch configuration.</p>
3762
3762
  * @public
3763
3763
  */
3764
- sourceServerID?: string;
3764
+ sourceServerID?: string | undefined;
3765
3765
  /**
3766
3766
  * <p>The name of the launch configuration.</p>
3767
3767
  * @public
3768
3768
  */
3769
- name?: string;
3769
+ name?: string | undefined;
3770
3770
  /**
3771
3771
  * <p>The EC2 launch template ID of this launch configuration.</p>
3772
3772
  * @public
3773
3773
  */
3774
- ec2LaunchTemplateID?: string;
3774
+ ec2LaunchTemplateID?: string | undefined;
3775
3775
  /**
3776
3776
  * <p>The state of the Recovery Instance in EC2 after the recovery operation.</p>
3777
3777
  * @public
3778
3778
  */
3779
- launchDisposition?: LaunchDisposition;
3779
+ launchDisposition?: LaunchDisposition | undefined;
3780
3780
  /**
3781
3781
  * <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>
3782
3782
  * @public
3783
3783
  */
3784
- targetInstanceTypeRightSizingMethod?: TargetInstanceTypeRightSizingMethod;
3784
+ targetInstanceTypeRightSizingMethod?: TargetInstanceTypeRightSizingMethod | undefined;
3785
3785
  /**
3786
3786
  * <p>Whether we should copy the Private IP of the Source Server to the Recovery Instance.</p>
3787
3787
  * @public
3788
3788
  */
3789
- copyPrivateIp?: boolean;
3789
+ copyPrivateIp?: boolean | undefined;
3790
3790
  /**
3791
3791
  * <p>Whether we want to copy the tags of the Source Server to the EC2 machine of the Recovery Instance.</p>
3792
3792
  * @public
3793
3793
  */
3794
- copyTags?: boolean;
3794
+ copyTags?: boolean | undefined;
3795
3795
  /**
3796
3796
  * <p>The licensing configuration to be used for this launch configuration.</p>
3797
3797
  * @public
3798
3798
  */
3799
- licensing?: Licensing;
3799
+ licensing?: Licensing | undefined;
3800
3800
  /**
3801
3801
  * <p>Whether we want to activate post-launch actions for the Source Server.</p>
3802
3802
  * @public
3803
3803
  */
3804
- postLaunchEnabled?: boolean;
3804
+ postLaunchEnabled?: boolean | undefined;
3805
3805
  /**
3806
3806
  * <p>Launch into existing instance properties.</p>
3807
3807
  * @public
3808
3808
  */
3809
- launchIntoInstanceProperties?: LaunchIntoInstanceProperties;
3809
+ launchIntoInstanceProperties?: LaunchIntoInstanceProperties | undefined;
3810
3810
  }
3811
3811
  /**
3812
3812
  * @public
@@ -3844,32 +3844,32 @@ export interface ReplicationConfigurationReplicatedDisk {
3844
3844
  * <p>The name of the device.</p>
3845
3845
  * @public
3846
3846
  */
3847
- deviceName?: string;
3847
+ deviceName?: string | undefined;
3848
3848
  /**
3849
3849
  * <p>Whether to boot from this disk or not.</p>
3850
3850
  * @public
3851
3851
  */
3852
- isBootDisk?: boolean;
3852
+ isBootDisk?: boolean | undefined;
3853
3853
  /**
3854
3854
  * <p>The Staging Disk EBS volume type to be used during replication.</p>
3855
3855
  * @public
3856
3856
  */
3857
- stagingDiskType?: ReplicationConfigurationReplicatedDiskStagingDiskType;
3857
+ stagingDiskType?: ReplicationConfigurationReplicatedDiskStagingDiskType | undefined;
3858
3858
  /**
3859
3859
  * <p>The requested number of I/O operations per second (IOPS).</p>
3860
3860
  * @public
3861
3861
  */
3862
- iops?: number;
3862
+ iops?: number | undefined;
3863
3863
  /**
3864
3864
  * <p>The throughput to use for the EBS volume in MiB/s. This parameter is valid only for gp3 volumes.</p>
3865
3865
  * @public
3866
3866
  */
3867
- throughput?: number;
3867
+ throughput?: number | undefined;
3868
3868
  /**
3869
3869
  * <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>
3870
3870
  * @public
3871
3871
  */
3872
- optimizedStagingDiskType?: ReplicationConfigurationReplicatedDiskStagingDiskType;
3872
+ optimizedStagingDiskType?: ReplicationConfigurationReplicatedDiskStagingDiskType | undefined;
3873
3873
  }
3874
3874
  /**
3875
3875
  * @public
@@ -3879,87 +3879,87 @@ export interface ReplicationConfiguration {
3879
3879
  * <p>The ID of the Source Server for this Replication Configuration.</p>
3880
3880
  * @public
3881
3881
  */
3882
- sourceServerID?: string;
3882
+ sourceServerID?: string | undefined;
3883
3883
  /**
3884
3884
  * <p>The name of the Replication Configuration.</p>
3885
3885
  * @public
3886
3886
  */
3887
- name?: string;
3887
+ name?: string | undefined;
3888
3888
  /**
3889
3889
  * <p>The subnet to be used by the replication staging area.</p>
3890
3890
  * @public
3891
3891
  */
3892
- stagingAreaSubnetId?: string;
3892
+ stagingAreaSubnetId?: string | undefined;
3893
3893
  /**
3894
3894
  * <p>Whether to associate the default Elastic Disaster Recovery Security group with the Replication Configuration.</p>
3895
3895
  * @public
3896
3896
  */
3897
- associateDefaultSecurityGroup?: boolean;
3897
+ associateDefaultSecurityGroup?: boolean | undefined;
3898
3898
  /**
3899
3899
  * <p>The security group IDs that will be used by the replication server.</p>
3900
3900
  * @public
3901
3901
  */
3902
- replicationServersSecurityGroupsIDs?: string[];
3902
+ replicationServersSecurityGroupsIDs?: string[] | undefined;
3903
3903
  /**
3904
3904
  * <p>The instance type to be used for the replication server.</p>
3905
3905
  * @public
3906
3906
  */
3907
- replicationServerInstanceType?: string;
3907
+ replicationServerInstanceType?: string | undefined;
3908
3908
  /**
3909
3909
  * <p>Whether to use a dedicated Replication Server in the replication staging area.</p>
3910
3910
  * @public
3911
3911
  */
3912
- useDedicatedReplicationServer?: boolean;
3912
+ useDedicatedReplicationServer?: boolean | undefined;
3913
3913
  /**
3914
3914
  * <p>The Staging Disk EBS volume type to be used during replication.</p>
3915
3915
  * @public
3916
3916
  */
3917
- defaultLargeStagingDiskType?: ReplicationConfigurationDefaultLargeStagingDiskType;
3917
+ defaultLargeStagingDiskType?: ReplicationConfigurationDefaultLargeStagingDiskType | undefined;
3918
3918
  /**
3919
3919
  * <p>The configuration of the disks of the Source Server to be replicated.</p>
3920
3920
  * @public
3921
3921
  */
3922
- replicatedDisks?: ReplicationConfigurationReplicatedDisk[];
3922
+ replicatedDisks?: ReplicationConfigurationReplicatedDisk[] | undefined;
3923
3923
  /**
3924
3924
  * <p>The type of EBS encryption to be used during replication.</p>
3925
3925
  * @public
3926
3926
  */
3927
- ebsEncryption?: ReplicationConfigurationEbsEncryption;
3927
+ ebsEncryption?: ReplicationConfigurationEbsEncryption | undefined;
3928
3928
  /**
3929
3929
  * <p>The ARN of the EBS encryption key to be used during replication.</p>
3930
3930
  * @public
3931
3931
  */
3932
- ebsEncryptionKeyArn?: string;
3932
+ ebsEncryptionKeyArn?: string | undefined;
3933
3933
  /**
3934
3934
  * <p>Configure bandwidth throttling for the outbound data transfer rate of the Source Server in Mbps.</p>
3935
3935
  * @public
3936
3936
  */
3937
- bandwidthThrottling?: number;
3937
+ bandwidthThrottling?: number | undefined;
3938
3938
  /**
3939
3939
  * <p>The data plane routing mechanism that will be used for replication.</p>
3940
3940
  * @public
3941
3941
  */
3942
- dataPlaneRouting?: ReplicationConfigurationDataPlaneRouting;
3942
+ dataPlaneRouting?: ReplicationConfigurationDataPlaneRouting | undefined;
3943
3943
  /**
3944
3944
  * <p>Whether to create a Public IP for the Recovery Instance by default.</p>
3945
3945
  * @public
3946
3946
  */
3947
- createPublicIP?: boolean;
3947
+ createPublicIP?: boolean | undefined;
3948
3948
  /**
3949
3949
  * <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>
3950
3950
  * @public
3951
3951
  */
3952
- stagingAreaTags?: Record<string, string>;
3952
+ stagingAreaTags?: Record<string, string> | undefined;
3953
3953
  /**
3954
3954
  * <p>The Point in time (PIT) policy to manage snapshots taken during replication.</p>
3955
3955
  * @public
3956
3956
  */
3957
- pitPolicy?: PITPolicyRule[];
3957
+ pitPolicy?: PITPolicyRule[] | undefined;
3958
3958
  /**
3959
3959
  * <p>Whether to allow the AWS replication agent to automatically replicate newly added disks.</p>
3960
3960
  * @public
3961
3961
  */
3962
- autoReplicateNewDisks?: boolean;
3962
+ autoReplicateNewDisks?: boolean | undefined;
3963
3963
  }
3964
3964
  /**
3965
3965
  * @public
@@ -3985,7 +3985,7 @@ export interface StartRecoveryRequestSourceServer {
3985
3985
  * <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>
3986
3986
  * @public
3987
3987
  */
3988
- recoverySnapshotID?: string;
3988
+ recoverySnapshotID?: string | undefined;
3989
3989
  }
3990
3990
  /**
3991
3991
  * @public
@@ -4000,12 +4000,12 @@ export interface StartRecoveryRequest {
4000
4000
  * <p>Whether this Source Server Recovery operation is a drill or not.</p>
4001
4001
  * @public
4002
4002
  */
4003
- isDrill?: boolean;
4003
+ isDrill?: boolean | undefined;
4004
4004
  /**
4005
4005
  * <p>The tags to be associated with the Recovery Job.</p>
4006
4006
  * @public
4007
4007
  */
4008
- tags?: Record<string, string>;
4008
+ tags?: Record<string, string> | undefined;
4009
4009
  }
4010
4010
  /**
4011
4011
  * @public
@@ -4015,7 +4015,7 @@ export interface StartRecoveryResponse {
4015
4015
  * <p>The Recovery Job.</p>
4016
4016
  * @public
4017
4017
  */
4018
- job?: Job;
4018
+ job?: Job | undefined;
4019
4019
  }
4020
4020
  /**
4021
4021
  * @public
@@ -4035,7 +4035,7 @@ export interface StartReplicationResponse {
4035
4035
  * <p>The Source Server that this action was targeted on.</p>
4036
4036
  * @public
4037
4037
  */
4038
- sourceServer?: SourceServer;
4038
+ sourceServer?: SourceServer | undefined;
4039
4039
  }
4040
4040
  /**
4041
4041
  * @public
@@ -4055,7 +4055,7 @@ export interface StopReplicationResponse {
4055
4055
  * <p>The Source Server that this action was targeted on.</p>
4056
4056
  * @public
4057
4057
  */
4058
- sourceServer?: SourceServer;
4058
+ sourceServer?: SourceServer | undefined;
4059
4059
  }
4060
4060
  /**
4061
4061
  * @public
@@ -4070,42 +4070,42 @@ export interface UpdateLaunchConfigurationRequest {
4070
4070
  * <p>The name of the launch configuration.</p>
4071
4071
  * @public
4072
4072
  */
4073
- name?: string;
4073
+ name?: string | undefined;
4074
4074
  /**
4075
4075
  * <p>The state of the Recovery Instance in EC2 after the recovery operation.</p>
4076
4076
  * @public
4077
4077
  */
4078
- launchDisposition?: LaunchDisposition;
4078
+ launchDisposition?: LaunchDisposition | undefined;
4079
4079
  /**
4080
4080
  * <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>
4081
4081
  * @public
4082
4082
  */
4083
- targetInstanceTypeRightSizingMethod?: TargetInstanceTypeRightSizingMethod;
4083
+ targetInstanceTypeRightSizingMethod?: TargetInstanceTypeRightSizingMethod | undefined;
4084
4084
  /**
4085
4085
  * <p>Whether we should copy the Private IP of the Source Server to the Recovery Instance.</p>
4086
4086
  * @public
4087
4087
  */
4088
- copyPrivateIp?: boolean;
4088
+ copyPrivateIp?: boolean | undefined;
4089
4089
  /**
4090
4090
  * <p>Whether we want to copy the tags of the Source Server to the EC2 machine of the Recovery Instance.</p>
4091
4091
  * @public
4092
4092
  */
4093
- copyTags?: boolean;
4093
+ copyTags?: boolean | undefined;
4094
4094
  /**
4095
4095
  * <p>The licensing configuration to be used for this launch configuration.</p>
4096
4096
  * @public
4097
4097
  */
4098
- licensing?: Licensing;
4098
+ licensing?: Licensing | undefined;
4099
4099
  /**
4100
4100
  * <p>Whether we want to enable post-launch actions for the Source Server.</p>
4101
4101
  * @public
4102
4102
  */
4103
- postLaunchEnabled?: boolean;
4103
+ postLaunchEnabled?: boolean | undefined;
4104
4104
  /**
4105
4105
  * <p>Launch into existing instance properties.</p>
4106
4106
  * @public
4107
4107
  */
4108
- launchIntoInstanceProperties?: LaunchIntoInstanceProperties;
4108
+ launchIntoInstanceProperties?: LaunchIntoInstanceProperties | undefined;
4109
4109
  }
4110
4110
  /**
4111
4111
  * @public
@@ -4120,82 +4120,82 @@ export interface UpdateReplicationConfigurationRequest {
4120
4120
  * <p>The name of the Replication Configuration.</p>
4121
4121
  * @public
4122
4122
  */
4123
- name?: string;
4123
+ name?: string | undefined;
4124
4124
  /**
4125
4125
  * <p>The subnet to be used by the replication staging area.</p>
4126
4126
  * @public
4127
4127
  */
4128
- stagingAreaSubnetId?: string;
4128
+ stagingAreaSubnetId?: string | undefined;
4129
4129
  /**
4130
4130
  * <p>Whether to associate the default Elastic Disaster Recovery Security group with the Replication Configuration.</p>
4131
4131
  * @public
4132
4132
  */
4133
- associateDefaultSecurityGroup?: boolean;
4133
+ associateDefaultSecurityGroup?: boolean | undefined;
4134
4134
  /**
4135
4135
  * <p>The security group IDs that will be used by the replication server.</p>
4136
4136
  * @public
4137
4137
  */
4138
- replicationServersSecurityGroupsIDs?: string[];
4138
+ replicationServersSecurityGroupsIDs?: string[] | undefined;
4139
4139
  /**
4140
4140
  * <p>The instance type to be used for the replication server.</p>
4141
4141
  * @public
4142
4142
  */
4143
- replicationServerInstanceType?: string;
4143
+ replicationServerInstanceType?: string | undefined;
4144
4144
  /**
4145
4145
  * <p>Whether to use a dedicated Replication Server in the replication staging area.</p>
4146
4146
  * @public
4147
4147
  */
4148
- useDedicatedReplicationServer?: boolean;
4148
+ useDedicatedReplicationServer?: boolean | undefined;
4149
4149
  /**
4150
4150
  * <p>The Staging Disk EBS volume type to be used during replication.</p>
4151
4151
  * @public
4152
4152
  */
4153
- defaultLargeStagingDiskType?: ReplicationConfigurationDefaultLargeStagingDiskType;
4153
+ defaultLargeStagingDiskType?: ReplicationConfigurationDefaultLargeStagingDiskType | undefined;
4154
4154
  /**
4155
4155
  * <p>The configuration of the disks of the Source Server to be replicated.</p>
4156
4156
  * @public
4157
4157
  */
4158
- replicatedDisks?: ReplicationConfigurationReplicatedDisk[];
4158
+ replicatedDisks?: ReplicationConfigurationReplicatedDisk[] | undefined;
4159
4159
  /**
4160
4160
  * <p>The type of EBS encryption to be used during replication.</p>
4161
4161
  * @public
4162
4162
  */
4163
- ebsEncryption?: ReplicationConfigurationEbsEncryption;
4163
+ ebsEncryption?: ReplicationConfigurationEbsEncryption | undefined;
4164
4164
  /**
4165
4165
  * <p>The ARN of the EBS encryption key to be used during replication.</p>
4166
4166
  * @public
4167
4167
  */
4168
- ebsEncryptionKeyArn?: string;
4168
+ ebsEncryptionKeyArn?: string | undefined;
4169
4169
  /**
4170
4170
  * <p>Configure bandwidth throttling for the outbound data transfer rate of the Source Server in Mbps.</p>
4171
4171
  * @public
4172
4172
  */
4173
- bandwidthThrottling?: number;
4173
+ bandwidthThrottling?: number | undefined;
4174
4174
  /**
4175
4175
  * <p>The data plane routing mechanism that will be used for replication.</p>
4176
4176
  * @public
4177
4177
  */
4178
- dataPlaneRouting?: ReplicationConfigurationDataPlaneRouting;
4178
+ dataPlaneRouting?: ReplicationConfigurationDataPlaneRouting | undefined;
4179
4179
  /**
4180
4180
  * <p>Whether to create a Public IP for the Recovery Instance by default.</p>
4181
4181
  * @public
4182
4182
  */
4183
- createPublicIP?: boolean;
4183
+ createPublicIP?: boolean | undefined;
4184
4184
  /**
4185
4185
  * <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>
4186
4186
  * @public
4187
4187
  */
4188
- stagingAreaTags?: Record<string, string>;
4188
+ stagingAreaTags?: Record<string, string> | undefined;
4189
4189
  /**
4190
4190
  * <p>The Point in time (PIT) policy to manage snapshots taken during replication.</p>
4191
4191
  * @public
4192
4192
  */
4193
- pitPolicy?: PITPolicyRule[];
4193
+ pitPolicy?: PITPolicyRule[] | undefined;
4194
4194
  /**
4195
4195
  * <p>Whether to allow the AWS replication agent to automatically replicate newly added disks.</p>
4196
4196
  * @public
4197
4197
  */
4198
- autoReplicateNewDisks?: boolean;
4198
+ autoReplicateNewDisks?: boolean | undefined;
4199
4199
  }
4200
4200
  /**
4201
4201
  * @public