@aws-sdk/client-drs 3.686.0 → 3.691.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.
@@ -3,13 +3,13 @@ import { DrsServiceException as __BaseException } from "./DrsServiceException";
3
3
  export declare class AccessDeniedException extends __BaseException {
4
4
  readonly name: "AccessDeniedException";
5
5
  readonly $fault: "client";
6
- code?: string;
6
+ code?: string | undefined;
7
7
  constructor(
8
8
  opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
9
9
  );
10
10
  }
11
11
  export interface Account {
12
- accountID?: string;
12
+ accountID?: string | undefined;
13
13
  }
14
14
  export interface AssociateSourceNetworkStackRequest {
15
15
  sourceNetworkID: string | undefined;
@@ -54,8 +54,8 @@ export declare namespace ParticipatingResourceID {
54
54
  const visit: <T>(value: ParticipatingResourceID, visitor: Visitor<T>) => T;
55
55
  }
56
56
  export interface ParticipatingResource {
57
- participatingResourceID?: ParticipatingResourceID;
58
- launchStatus?: LaunchStatus;
57
+ participatingResourceID?: ParticipatingResourceID | undefined;
58
+ launchStatus?: LaunchStatus | undefined;
59
59
  }
60
60
  export declare const LaunchActionCategory: {
61
61
  readonly CONFIGURATION: "CONFIGURATION";
@@ -73,8 +73,8 @@ export declare const LaunchActionParameterType: {
73
73
  export type LaunchActionParameterType =
74
74
  (typeof LaunchActionParameterType)[keyof typeof LaunchActionParameterType];
75
75
  export interface LaunchActionParameter {
76
- value?: string;
77
- type?: LaunchActionParameterType;
76
+ value?: string | undefined;
77
+ type?: LaunchActionParameterType | undefined;
78
78
  }
79
79
  export declare const LaunchActionType: {
80
80
  readonly SSM_AUTOMATION: "SSM_AUTOMATION";
@@ -83,17 +83,17 @@ export declare const LaunchActionType: {
83
83
  export type LaunchActionType =
84
84
  (typeof LaunchActionType)[keyof typeof LaunchActionType];
85
85
  export interface LaunchAction {
86
- actionId?: string;
87
- actionCode?: string;
88
- type?: LaunchActionType;
89
- name?: string;
90
- active?: boolean;
91
- order?: number;
92
- actionVersion?: string;
93
- optional?: boolean;
94
- parameters?: Record<string, LaunchActionParameter>;
95
- description?: string;
96
- category?: LaunchActionCategory;
86
+ actionId?: string | undefined;
87
+ actionCode?: string | undefined;
88
+ type?: LaunchActionType | undefined;
89
+ name?: string | undefined;
90
+ active?: boolean | undefined;
91
+ order?: number | undefined;
92
+ actionVersion?: string | undefined;
93
+ optional?: boolean | undefined;
94
+ parameters?: Record<string, LaunchActionParameter> | undefined;
95
+ description?: string | undefined;
96
+ category?: LaunchActionCategory | undefined;
97
97
  }
98
98
  export declare const LaunchActionRunStatus: {
99
99
  readonly FAILED: "FAILED";
@@ -103,20 +103,20 @@ export declare const LaunchActionRunStatus: {
103
103
  export type LaunchActionRunStatus =
104
104
  (typeof LaunchActionRunStatus)[keyof typeof LaunchActionRunStatus];
105
105
  export interface LaunchActionRun {
106
- action?: LaunchAction;
107
- runId?: string;
108
- status?: LaunchActionRunStatus;
109
- failureReason?: string;
106
+ action?: LaunchAction | undefined;
107
+ runId?: string | undefined;
108
+ status?: LaunchActionRunStatus | undefined;
109
+ failureReason?: string | undefined;
110
110
  }
111
111
  export interface LaunchActionsStatus {
112
- ssmAgentDiscoveryDatetime?: string;
113
- runs?: LaunchActionRun[];
112
+ ssmAgentDiscoveryDatetime?: string | undefined;
113
+ runs?: LaunchActionRun[] | undefined;
114
114
  }
115
115
  export interface ParticipatingServer {
116
- sourceServerID?: string;
117
- recoveryInstanceID?: string;
118
- launchStatus?: LaunchStatus;
119
- launchActionsStatus?: LaunchActionsStatus;
116
+ sourceServerID?: string | undefined;
117
+ recoveryInstanceID?: string | undefined;
118
+ launchStatus?: LaunchStatus | undefined;
119
+ launchActionsStatus?: LaunchActionsStatus | undefined;
120
120
  }
121
121
  export declare const JobStatus: {
122
122
  readonly COMPLETED: "COMPLETED";
@@ -132,31 +132,31 @@ export declare const JobType: {
132
132
  export type JobType = (typeof JobType)[keyof typeof JobType];
133
133
  export interface Job {
134
134
  jobID: string | undefined;
135
- arn?: string;
136
- type?: JobType;
137
- initiatedBy?: InitiatedBy;
138
- creationDateTime?: string;
139
- endDateTime?: string;
140
- status?: JobStatus;
141
- participatingServers?: ParticipatingServer[];
142
- tags?: Record<string, string>;
143
- participatingResources?: ParticipatingResource[];
135
+ arn?: string | undefined;
136
+ type?: JobType | undefined;
137
+ initiatedBy?: InitiatedBy | undefined;
138
+ creationDateTime?: string | undefined;
139
+ endDateTime?: string | undefined;
140
+ status?: JobStatus | undefined;
141
+ participatingServers?: ParticipatingServer[] | undefined;
142
+ tags?: Record<string, string> | undefined;
143
+ participatingResources?: ParticipatingResource[] | undefined;
144
144
  }
145
145
  export interface AssociateSourceNetworkStackResponse {
146
- job?: Job;
146
+ job?: Job | undefined;
147
147
  }
148
148
  export declare class ConflictException extends __BaseException {
149
149
  readonly name: "ConflictException";
150
150
  readonly $fault: "client";
151
- code?: string;
152
- resourceId?: string;
153
- resourceType?: string;
151
+ code?: string | undefined;
152
+ resourceId?: string | undefined;
153
+ resourceType?: string | undefined;
154
154
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
155
155
  }
156
156
  export declare class InternalServerException extends __BaseException {
157
157
  readonly name: "InternalServerException";
158
158
  readonly $fault: "server";
159
- retryAfterSeconds?: number;
159
+ retryAfterSeconds?: number | undefined;
160
160
  constructor(
161
161
  opts: __ExceptionOptionType<InternalServerException, __BaseException>
162
162
  );
@@ -164,9 +164,9 @@ export declare class InternalServerException extends __BaseException {
164
164
  export declare class ResourceNotFoundException extends __BaseException {
165
165
  readonly name: "ResourceNotFoundException";
166
166
  readonly $fault: "client";
167
- code?: string;
168
- resourceId?: string;
169
- resourceType?: string;
167
+ code?: string | undefined;
168
+ resourceId?: string | undefined;
169
+ resourceType?: string | undefined;
170
170
  constructor(
171
171
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
172
172
  );
@@ -174,11 +174,11 @@ export declare class ResourceNotFoundException extends __BaseException {
174
174
  export declare class ServiceQuotaExceededException extends __BaseException {
175
175
  readonly name: "ServiceQuotaExceededException";
176
176
  readonly $fault: "client";
177
- code?: string;
178
- resourceId?: string;
179
- resourceType?: string;
180
- serviceCode?: string;
181
- quotaCode?: string;
177
+ code?: string | undefined;
178
+ resourceId?: string | undefined;
179
+ resourceType?: string | undefined;
180
+ serviceCode?: string | undefined;
181
+ quotaCode?: string | undefined;
182
182
  constructor(
183
183
  opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
184
184
  );
@@ -186,9 +186,9 @@ export declare class ServiceQuotaExceededException extends __BaseException {
186
186
  export declare class ThrottlingException extends __BaseException {
187
187
  readonly name: "ThrottlingException";
188
188
  readonly $fault: "client";
189
- serviceCode?: string;
190
- quotaCode?: string;
191
- retryAfterSeconds?: string;
189
+ serviceCode?: string | undefined;
190
+ quotaCode?: string | undefined;
191
+ retryAfterSeconds?: string | undefined;
192
192
  constructor(
193
193
  opts: __ExceptionOptionType<ThrottlingException, __BaseException>
194
194
  );
@@ -196,14 +196,14 @@ export declare class ThrottlingException extends __BaseException {
196
196
  export declare class UninitializedAccountException extends __BaseException {
197
197
  readonly name: "UninitializedAccountException";
198
198
  readonly $fault: "client";
199
- code?: string;
199
+ code?: string | undefined;
200
200
  constructor(
201
201
  opts: __ExceptionOptionType<UninitializedAccountException, __BaseException>
202
202
  );
203
203
  }
204
204
  export interface ValidationExceptionField {
205
- name?: string;
206
- message?: string;
205
+ name?: string | undefined;
206
+ message?: string | undefined;
207
207
  }
208
208
  export declare const ValidationExceptionReason: {
209
209
  readonly CANNOT_PARSE: "cannotParse";
@@ -216,9 +216,9 @@ export type ValidationExceptionReason =
216
216
  export declare class ValidationException extends __BaseException {
217
217
  readonly name: "ValidationException";
218
218
  readonly $fault: "client";
219
- code?: string;
220
- reason?: ValidationExceptionReason;
221
- fieldList?: ValidationExceptionField[];
219
+ code?: string | undefined;
220
+ reason?: ValidationExceptionReason | undefined;
221
+ fieldList?: ValidationExceptionField[] | undefined;
222
222
  constructor(
223
223
  opts: __ExceptionOptionType<ValidationException, __BaseException>
224
224
  );
@@ -230,24 +230,24 @@ export declare const ProductCodeMode: {
230
230
  export type ProductCodeMode =
231
231
  (typeof ProductCodeMode)[keyof typeof ProductCodeMode];
232
232
  export interface ProductCode {
233
- productCodeId?: string;
234
- productCodeMode?: ProductCodeMode;
233
+ productCodeId?: string | undefined;
234
+ productCodeMode?: ProductCodeMode | undefined;
235
235
  }
236
236
  export interface ConversionProperties {
237
- volumeToConversionMap?: Record<string, Record<string, string>>;
238
- rootVolumeName?: string;
239
- forceUefi?: boolean;
240
- dataTimestamp?: string;
241
- volumeToVolumeSize?: Record<string, number>;
242
- volumeToProductCodes?: Record<string, ProductCode[]>;
237
+ volumeToConversionMap?: Record<string, Record<string, string>> | undefined;
238
+ rootVolumeName?: string | undefined;
239
+ forceUefi?: boolean | undefined;
240
+ dataTimestamp?: string | undefined;
241
+ volumeToVolumeSize?: Record<string, number> | undefined;
242
+ volumeToProductCodes?: Record<string, ProductCode[]> | undefined;
243
243
  }
244
244
  export interface CPU {
245
- cores?: number;
246
- modelName?: string;
245
+ cores?: number | undefined;
246
+ modelName?: string | undefined;
247
247
  }
248
248
  export interface CreateExtendedSourceServerRequest {
249
249
  sourceServerArn: string | undefined;
250
- tags?: Record<string, string>;
250
+ tags?: Record<string, string> | undefined;
251
251
  }
252
252
  export declare const DataReplicationErrorString: {
253
253
  readonly AGENT_NOT_SEEN: "AGENT_NOT_SEEN";
@@ -268,8 +268,8 @@ export declare const DataReplicationErrorString: {
268
268
  export type DataReplicationErrorString =
269
269
  (typeof DataReplicationErrorString)[keyof typeof DataReplicationErrorString];
270
270
  export interface DataReplicationError {
271
- error?: DataReplicationErrorString;
272
- rawError?: string;
271
+ error?: DataReplicationErrorString | undefined;
272
+ rawError?: string | undefined;
273
273
  }
274
274
  export declare const DataReplicationInitiationStepName: {
275
275
  readonly ATTACH_STAGING_DISKS: "ATTACH_STAGING_DISKS";
@@ -296,13 +296,13 @@ export declare const DataReplicationInitiationStepStatus: {
296
296
  export type DataReplicationInitiationStepStatus =
297
297
  (typeof DataReplicationInitiationStepStatus)[keyof typeof DataReplicationInitiationStepStatus];
298
298
  export interface DataReplicationInitiationStep {
299
- name?: DataReplicationInitiationStepName;
300
- status?: DataReplicationInitiationStepStatus;
299
+ name?: DataReplicationInitiationStepName | undefined;
300
+ status?: DataReplicationInitiationStepStatus | undefined;
301
301
  }
302
302
  export interface DataReplicationInitiation {
303
- startDateTime?: string;
304
- nextAttemptDateTime?: string;
305
- steps?: DataReplicationInitiationStep[];
303
+ startDateTime?: string | undefined;
304
+ nextAttemptDateTime?: string | undefined;
305
+ steps?: DataReplicationInitiationStep[] | undefined;
306
306
  }
307
307
  export declare const DataReplicationState: {
308
308
  readonly BACKLOG: "BACKLOG";
@@ -327,22 +327,22 @@ export declare const VolumeStatus: {
327
327
  };
328
328
  export type VolumeStatus = (typeof VolumeStatus)[keyof typeof VolumeStatus];
329
329
  export interface DataReplicationInfoReplicatedDisk {
330
- deviceName?: string;
331
- totalStorageBytes?: number;
332
- replicatedStorageBytes?: number;
333
- rescannedStorageBytes?: number;
334
- backloggedStorageBytes?: number;
335
- volumeStatus?: VolumeStatus;
330
+ deviceName?: string | undefined;
331
+ totalStorageBytes?: number | undefined;
332
+ replicatedStorageBytes?: number | undefined;
333
+ rescannedStorageBytes?: number | undefined;
334
+ backloggedStorageBytes?: number | undefined;
335
+ volumeStatus?: VolumeStatus | undefined;
336
336
  }
337
337
  export interface DataReplicationInfo {
338
- lagDuration?: string;
339
- etaDateTime?: string;
340
- replicatedDisks?: DataReplicationInfoReplicatedDisk[];
341
- dataReplicationState?: DataReplicationState;
342
- dataReplicationInitiation?: DataReplicationInitiation;
343
- dataReplicationError?: DataReplicationError;
344
- stagingAvailabilityZone?: string;
345
- stagingOutpostArn?: string;
338
+ lagDuration?: string | undefined;
339
+ etaDateTime?: string | undefined;
340
+ replicatedDisks?: DataReplicationInfoReplicatedDisk[] | undefined;
341
+ dataReplicationState?: DataReplicationState | undefined;
342
+ dataReplicationInitiation?: DataReplicationInitiation | undefined;
343
+ dataReplicationError?: DataReplicationError | undefined;
344
+ stagingAvailabilityZone?: string | undefined;
345
+ stagingOutpostArn?: string | undefined;
346
346
  }
347
347
  export declare const LastLaunchResult: {
348
348
  readonly FAILED: "FAILED";
@@ -359,20 +359,20 @@ export declare const LastLaunchType: {
359
359
  export type LastLaunchType =
360
360
  (typeof LastLaunchType)[keyof typeof LastLaunchType];
361
361
  export interface LifeCycleLastLaunchInitiated {
362
- apiCallDateTime?: string;
363
- jobID?: string;
364
- type?: LastLaunchType;
362
+ apiCallDateTime?: string | undefined;
363
+ jobID?: string | undefined;
364
+ type?: LastLaunchType | undefined;
365
365
  }
366
366
  export interface LifeCycleLastLaunch {
367
- initiated?: LifeCycleLastLaunchInitiated;
368
- status?: LaunchStatus;
367
+ initiated?: LifeCycleLastLaunchInitiated | undefined;
368
+ status?: LaunchStatus | undefined;
369
369
  }
370
370
  export interface LifeCycle {
371
- addedToServiceDateTime?: string;
372
- firstByteDateTime?: string;
373
- elapsedReplicationDuration?: string;
374
- lastSeenByServiceDateTime?: string;
375
- lastLaunch?: LifeCycleLastLaunch;
371
+ addedToServiceDateTime?: string | undefined;
372
+ firstByteDateTime?: string | undefined;
373
+ elapsedReplicationDuration?: string | undefined;
374
+ lastSeenByServiceDateTime?: string | undefined;
375
+ lastLaunch?: LifeCycleLastLaunch | undefined;
376
376
  }
377
377
  export declare const ReplicationDirection: {
378
378
  readonly FAILBACK: "FAILBACK";
@@ -381,39 +381,39 @@ export declare const ReplicationDirection: {
381
381
  export type ReplicationDirection =
382
382
  (typeof ReplicationDirection)[keyof typeof ReplicationDirection];
383
383
  export interface SourceCloudProperties {
384
- originAccountID?: string;
385
- originRegion?: string;
386
- originAvailabilityZone?: string;
387
- sourceOutpostArn?: string;
384
+ originAccountID?: string | undefined;
385
+ originRegion?: string | undefined;
386
+ originAvailabilityZone?: string | undefined;
387
+ sourceOutpostArn?: string | undefined;
388
388
  }
389
389
  export interface Disk {
390
- deviceName?: string;
391
- bytes?: number;
390
+ deviceName?: string | undefined;
391
+ bytes?: number | undefined;
392
392
  }
393
393
  export interface IdentificationHints {
394
- fqdn?: string;
395
- hostname?: string;
396
- vmWareUuid?: string;
397
- awsInstanceID?: string;
394
+ fqdn?: string | undefined;
395
+ hostname?: string | undefined;
396
+ vmWareUuid?: string | undefined;
397
+ awsInstanceID?: string | undefined;
398
398
  }
399
399
  export interface NetworkInterface {
400
- macAddress?: string;
401
- ips?: string[];
402
- isPrimary?: boolean;
400
+ macAddress?: string | undefined;
401
+ ips?: string[] | undefined;
402
+ isPrimary?: boolean | undefined;
403
403
  }
404
404
  export interface OS {
405
- fullString?: string;
405
+ fullString?: string | undefined;
406
406
  }
407
407
  export interface SourceProperties {
408
- lastUpdatedDateTime?: string;
409
- recommendedInstanceType?: string;
410
- identificationHints?: IdentificationHints;
411
- networkInterfaces?: NetworkInterface[];
412
- disks?: Disk[];
413
- cpus?: CPU[];
414
- ramBytes?: number;
415
- os?: OS;
416
- supportsNitroInstances?: boolean;
408
+ lastUpdatedDateTime?: string | undefined;
409
+ recommendedInstanceType?: string | undefined;
410
+ identificationHints?: IdentificationHints | undefined;
411
+ networkInterfaces?: NetworkInterface[] | undefined;
412
+ disks?: Disk[] | undefined;
413
+ cpus?: CPU[] | undefined;
414
+ ramBytes?: number | undefined;
415
+ os?: OS | undefined;
416
+ supportsNitroInstances?: boolean | undefined;
417
417
  }
418
418
  export declare const ExtensionStatus: {
419
419
  readonly EXTENDED: "EXTENDED";
@@ -423,29 +423,29 @@ export declare const ExtensionStatus: {
423
423
  export type ExtensionStatus =
424
424
  (typeof ExtensionStatus)[keyof typeof ExtensionStatus];
425
425
  export interface StagingArea {
426
- status?: ExtensionStatus;
427
- stagingAccountID?: string;
428
- stagingSourceServerArn?: string;
429
- errorMessage?: string;
426
+ status?: ExtensionStatus | undefined;
427
+ stagingAccountID?: string | undefined;
428
+ stagingSourceServerArn?: string | undefined;
429
+ errorMessage?: string | undefined;
430
430
  }
431
431
  export interface SourceServer {
432
- sourceServerID?: string;
433
- arn?: string;
434
- tags?: Record<string, string>;
435
- recoveryInstanceId?: string;
436
- lastLaunchResult?: LastLaunchResult;
437
- dataReplicationInfo?: DataReplicationInfo;
438
- lifeCycle?: LifeCycle;
439
- sourceProperties?: SourceProperties;
440
- stagingArea?: StagingArea;
441
- sourceCloudProperties?: SourceCloudProperties;
442
- replicationDirection?: ReplicationDirection;
443
- reversedDirectionSourceServerArn?: string;
444
- sourceNetworkID?: string;
445
- agentVersion?: string;
432
+ sourceServerID?: string | undefined;
433
+ arn?: string | undefined;
434
+ tags?: Record<string, string> | undefined;
435
+ recoveryInstanceId?: string | undefined;
436
+ lastLaunchResult?: LastLaunchResult | undefined;
437
+ dataReplicationInfo?: DataReplicationInfo | undefined;
438
+ lifeCycle?: LifeCycle | undefined;
439
+ sourceProperties?: SourceProperties | undefined;
440
+ stagingArea?: StagingArea | undefined;
441
+ sourceCloudProperties?: SourceCloudProperties | undefined;
442
+ replicationDirection?: ReplicationDirection | undefined;
443
+ reversedDirectionSourceServerArn?: string | undefined;
444
+ sourceNetworkID?: string | undefined;
445
+ agentVersion?: string | undefined;
446
446
  }
447
447
  export interface CreateExtendedSourceServerResponse {
448
- sourceServer?: SourceServer;
448
+ sourceServer?: SourceServer | undefined;
449
449
  }
450
450
  export declare const LaunchDisposition: {
451
451
  readonly STARTED: "STARTED";
@@ -454,7 +454,7 @@ export declare const LaunchDisposition: {
454
454
  export type LaunchDisposition =
455
455
  (typeof LaunchDisposition)[keyof typeof LaunchDisposition];
456
456
  export interface Licensing {
457
- osByol?: boolean;
457
+ osByol?: boolean | undefined;
458
458
  }
459
459
  export declare const TargetInstanceTypeRightSizingMethod: {
460
460
  readonly BASIC: "BASIC";
@@ -464,31 +464,35 @@ export declare const TargetInstanceTypeRightSizingMethod: {
464
464
  export type TargetInstanceTypeRightSizingMethod =
465
465
  (typeof TargetInstanceTypeRightSizingMethod)[keyof typeof TargetInstanceTypeRightSizingMethod];
466
466
  export interface CreateLaunchConfigurationTemplateRequest {
467
- tags?: Record<string, string>;
468
- launchDisposition?: LaunchDisposition;
469
- targetInstanceTypeRightSizingMethod?: TargetInstanceTypeRightSizingMethod;
470
- copyPrivateIp?: boolean;
471
- copyTags?: boolean;
472
- licensing?: Licensing;
473
- exportBucketArn?: string;
474
- postLaunchEnabled?: boolean;
475
- launchIntoSourceInstance?: boolean;
467
+ tags?: Record<string, string> | undefined;
468
+ launchDisposition?: LaunchDisposition | undefined;
469
+ targetInstanceTypeRightSizingMethod?:
470
+ | TargetInstanceTypeRightSizingMethod
471
+ | undefined;
472
+ copyPrivateIp?: boolean | undefined;
473
+ copyTags?: boolean | undefined;
474
+ licensing?: Licensing | undefined;
475
+ exportBucketArn?: string | undefined;
476
+ postLaunchEnabled?: boolean | undefined;
477
+ launchIntoSourceInstance?: boolean | undefined;
476
478
  }
477
479
  export interface LaunchConfigurationTemplate {
478
- launchConfigurationTemplateID?: string;
479
- arn?: string;
480
- tags?: Record<string, string>;
481
- launchDisposition?: LaunchDisposition;
482
- targetInstanceTypeRightSizingMethod?: TargetInstanceTypeRightSizingMethod;
483
- copyPrivateIp?: boolean;
484
- copyTags?: boolean;
485
- licensing?: Licensing;
486
- exportBucketArn?: string;
487
- postLaunchEnabled?: boolean;
488
- launchIntoSourceInstance?: boolean;
480
+ launchConfigurationTemplateID?: string | undefined;
481
+ arn?: string | undefined;
482
+ tags?: Record<string, string> | undefined;
483
+ launchDisposition?: LaunchDisposition | undefined;
484
+ targetInstanceTypeRightSizingMethod?:
485
+ | TargetInstanceTypeRightSizingMethod
486
+ | undefined;
487
+ copyPrivateIp?: boolean | undefined;
488
+ copyTags?: boolean | undefined;
489
+ licensing?: Licensing | undefined;
490
+ exportBucketArn?: string | undefined;
491
+ postLaunchEnabled?: boolean | undefined;
492
+ launchIntoSourceInstance?: boolean | undefined;
489
493
  }
490
494
  export interface CreateLaunchConfigurationTemplateResponse {
491
- launchConfigurationTemplate?: LaunchConfigurationTemplate;
495
+ launchConfigurationTemplate?: LaunchConfigurationTemplate | undefined;
492
496
  }
493
497
  export declare const ReplicationConfigurationDataPlaneRouting: {
494
498
  readonly PRIVATE_IP: "PRIVATE_IP";
@@ -519,11 +523,11 @@ export declare const PITPolicyRuleUnits: {
519
523
  export type PITPolicyRuleUnits =
520
524
  (typeof PITPolicyRuleUnits)[keyof typeof PITPolicyRuleUnits];
521
525
  export interface PITPolicyRule {
522
- ruleID?: number;
526
+ ruleID?: number | undefined;
523
527
  units: PITPolicyRuleUnits | undefined;
524
528
  interval: number | undefined;
525
529
  retentionDuration: number | undefined;
526
- enabled?: boolean;
530
+ enabled?: boolean | undefined;
527
531
  }
528
532
  export interface CreateReplicationConfigurationTemplateRequest {
529
533
  stagingAreaSubnetId: string | undefined;
@@ -535,42 +539,44 @@ export interface CreateReplicationConfigurationTemplateRequest {
535
539
  | ReplicationConfigurationDefaultLargeStagingDiskType
536
540
  | undefined;
537
541
  ebsEncryption: ReplicationConfigurationEbsEncryption | undefined;
538
- ebsEncryptionKeyArn?: string;
542
+ ebsEncryptionKeyArn?: string | undefined;
539
543
  bandwidthThrottling: number | undefined;
540
544
  dataPlaneRouting: ReplicationConfigurationDataPlaneRouting | undefined;
541
545
  createPublicIP: boolean | undefined;
542
546
  stagingAreaTags: Record<string, string> | undefined;
543
547
  pitPolicy: PITPolicyRule[] | undefined;
544
- tags?: Record<string, string>;
545
- autoReplicateNewDisks?: boolean;
548
+ tags?: Record<string, string> | undefined;
549
+ autoReplicateNewDisks?: boolean | undefined;
546
550
  }
547
551
  export interface ReplicationConfigurationTemplate {
548
552
  replicationConfigurationTemplateID: string | undefined;
549
- arn?: string;
550
- stagingAreaSubnetId?: string;
551
- associateDefaultSecurityGroup?: boolean;
552
- replicationServersSecurityGroupsIDs?: string[];
553
- replicationServerInstanceType?: string;
554
- useDedicatedReplicationServer?: boolean;
555
- defaultLargeStagingDiskType?: ReplicationConfigurationDefaultLargeStagingDiskType;
556
- ebsEncryption?: ReplicationConfigurationEbsEncryption;
557
- ebsEncryptionKeyArn?: string;
558
- bandwidthThrottling?: number;
559
- dataPlaneRouting?: ReplicationConfigurationDataPlaneRouting;
560
- createPublicIP?: boolean;
561
- stagingAreaTags?: Record<string, string>;
562
- tags?: Record<string, string>;
563
- pitPolicy?: PITPolicyRule[];
564
- autoReplicateNewDisks?: boolean;
553
+ arn?: string | undefined;
554
+ stagingAreaSubnetId?: string | undefined;
555
+ associateDefaultSecurityGroup?: boolean | undefined;
556
+ replicationServersSecurityGroupsIDs?: string[] | undefined;
557
+ replicationServerInstanceType?: string | undefined;
558
+ useDedicatedReplicationServer?: boolean | undefined;
559
+ defaultLargeStagingDiskType?:
560
+ | ReplicationConfigurationDefaultLargeStagingDiskType
561
+ | undefined;
562
+ ebsEncryption?: ReplicationConfigurationEbsEncryption | undefined;
563
+ ebsEncryptionKeyArn?: string | undefined;
564
+ bandwidthThrottling?: number | undefined;
565
+ dataPlaneRouting?: ReplicationConfigurationDataPlaneRouting | undefined;
566
+ createPublicIP?: boolean | undefined;
567
+ stagingAreaTags?: Record<string, string> | undefined;
568
+ tags?: Record<string, string> | undefined;
569
+ pitPolicy?: PITPolicyRule[] | undefined;
570
+ autoReplicateNewDisks?: boolean | undefined;
565
571
  }
566
572
  export interface CreateSourceNetworkRequest {
567
573
  vpcID: string | undefined;
568
574
  originAccountID: string | undefined;
569
575
  originRegion: string | undefined;
570
- tags?: Record<string, string>;
576
+ tags?: Record<string, string> | undefined;
571
577
  }
572
578
  export interface CreateSourceNetworkResponse {
573
- sourceNetworkID?: string;
579
+ sourceNetworkID?: string | undefined;
574
580
  }
575
581
  export interface DeleteJobRequest {
576
582
  jobID: string | undefined;
@@ -602,8 +608,8 @@ export interface DeleteSourceServerRequest {
602
608
  export interface DeleteSourceServerResponse {}
603
609
  export interface DescribeJobLogItemsRequest {
604
610
  jobID: string | undefined;
605
- maxResults?: number;
606
- nextToken?: string;
611
+ maxResults?: number | undefined;
612
+ nextToken?: string | undefined;
607
613
  }
608
614
  export declare const JobLogEvent: {
609
615
  readonly CLEANUP_END: "CLEANUP_END";
@@ -636,10 +642,10 @@ export declare const JobLogEvent: {
636
642
  };
637
643
  export type JobLogEvent = (typeof JobLogEvent)[keyof typeof JobLogEvent];
638
644
  export interface SourceNetworkData {
639
- sourceNetworkID?: string;
640
- sourceVpc?: string;
641
- targetVpc?: string;
642
- stackName?: string;
645
+ sourceNetworkID?: string | undefined;
646
+ sourceVpc?: string | undefined;
647
+ targetVpc?: string | undefined;
648
+ stackName?: string | undefined;
643
649
  }
644
650
  export type EventResourceData =
645
651
  | EventResourceData.SourceNetworkDataMember
@@ -660,53 +666,53 @@ export declare namespace EventResourceData {
660
666
  const visit: <T>(value: EventResourceData, visitor: Visitor<T>) => T;
661
667
  }
662
668
  export interface JobLogEventData {
663
- sourceServerID?: string;
664
- conversionServerID?: string;
665
- targetInstanceID?: string;
666
- rawError?: string;
667
- conversionProperties?: ConversionProperties;
668
- eventResourceData?: EventResourceData;
669
+ sourceServerID?: string | undefined;
670
+ conversionServerID?: string | undefined;
671
+ targetInstanceID?: string | undefined;
672
+ rawError?: string | undefined;
673
+ conversionProperties?: ConversionProperties | undefined;
674
+ eventResourceData?: EventResourceData | undefined;
669
675
  }
670
676
  export interface JobLog {
671
- logDateTime?: string;
672
- event?: JobLogEvent;
673
- eventData?: JobLogEventData;
677
+ logDateTime?: string | undefined;
678
+ event?: JobLogEvent | undefined;
679
+ eventData?: JobLogEventData | undefined;
674
680
  }
675
681
  export interface DescribeJobLogItemsResponse {
676
- items?: JobLog[];
677
- nextToken?: string;
682
+ items?: JobLog[] | undefined;
683
+ nextToken?: string | undefined;
678
684
  }
679
685
  export interface DescribeJobsRequestFilters {
680
- jobIDs?: string[];
681
- fromDate?: string;
682
- toDate?: string;
686
+ jobIDs?: string[] | undefined;
687
+ fromDate?: string | undefined;
688
+ toDate?: string | undefined;
683
689
  }
684
690
  export interface DescribeJobsRequest {
685
- filters?: DescribeJobsRequestFilters;
686
- maxResults?: number;
687
- nextToken?: string;
691
+ filters?: DescribeJobsRequestFilters | undefined;
692
+ maxResults?: number | undefined;
693
+ nextToken?: string | undefined;
688
694
  }
689
695
  export interface DescribeJobsResponse {
690
- items?: Job[];
691
- nextToken?: string;
696
+ items?: Job[] | undefined;
697
+ nextToken?: string | undefined;
692
698
  }
693
699
  export interface DescribeLaunchConfigurationTemplatesRequest {
694
- launchConfigurationTemplateIDs?: string[];
695
- maxResults?: number;
696
- nextToken?: string;
700
+ launchConfigurationTemplateIDs?: string[] | undefined;
701
+ maxResults?: number | undefined;
702
+ nextToken?: string | undefined;
697
703
  }
698
704
  export interface DescribeLaunchConfigurationTemplatesResponse {
699
- items?: LaunchConfigurationTemplate[];
700
- nextToken?: string;
705
+ items?: LaunchConfigurationTemplate[] | undefined;
706
+ nextToken?: string | undefined;
701
707
  }
702
708
  export interface DescribeRecoveryInstancesRequestFilters {
703
- recoveryInstanceIDs?: string[];
704
- sourceServerIDs?: string[];
709
+ recoveryInstanceIDs?: string[] | undefined;
710
+ sourceServerIDs?: string[] | undefined;
705
711
  }
706
712
  export interface DescribeRecoveryInstancesRequest {
707
- filters?: DescribeRecoveryInstancesRequestFilters;
708
- maxResults?: number;
709
- nextToken?: string;
713
+ filters?: DescribeRecoveryInstancesRequestFilters | undefined;
714
+ maxResults?: number | undefined;
715
+ nextToken?: string | undefined;
710
716
  }
711
717
  export declare const FailbackReplicationError: {
712
718
  readonly AGENT_NOT_SEEN: "AGENT_NOT_SEEN";
@@ -734,8 +740,8 @@ export declare const FailbackReplicationError: {
734
740
  export type FailbackReplicationError =
735
741
  (typeof FailbackReplicationError)[keyof typeof FailbackReplicationError];
736
742
  export interface RecoveryInstanceDataReplicationError {
737
- error?: FailbackReplicationError;
738
- rawError?: string;
743
+ error?: FailbackReplicationError | undefined;
744
+ rawError?: string | undefined;
739
745
  }
740
746
  export declare const RecoveryInstanceDataReplicationInitiationStepName: {
741
747
  readonly ATTACH_STAGING_DISKS: "ATTACH_STAGING_DISKS";
@@ -769,12 +775,12 @@ export declare const RecoveryInstanceDataReplicationInitiationStepStatus: {
769
775
  export type RecoveryInstanceDataReplicationInitiationStepStatus =
770
776
  (typeof RecoveryInstanceDataReplicationInitiationStepStatus)[keyof typeof RecoveryInstanceDataReplicationInitiationStepStatus];
771
777
  export interface RecoveryInstanceDataReplicationInitiationStep {
772
- name?: RecoveryInstanceDataReplicationInitiationStepName;
773
- status?: RecoveryInstanceDataReplicationInitiationStepStatus;
778
+ name?: RecoveryInstanceDataReplicationInitiationStepName | undefined;
779
+ status?: RecoveryInstanceDataReplicationInitiationStepStatus | undefined;
774
780
  }
775
781
  export interface RecoveryInstanceDataReplicationInitiation {
776
- startDateTime?: string;
777
- steps?: RecoveryInstanceDataReplicationInitiationStep[];
782
+ startDateTime?: string | undefined;
783
+ steps?: RecoveryInstanceDataReplicationInitiationStep[] | undefined;
778
784
  }
779
785
  export declare const RecoveryInstanceDataReplicationState: {
780
786
  readonly BACKLOG: "BACKLOG";
@@ -793,21 +799,25 @@ export declare const RecoveryInstanceDataReplicationState: {
793
799
  export type RecoveryInstanceDataReplicationState =
794
800
  (typeof RecoveryInstanceDataReplicationState)[keyof typeof RecoveryInstanceDataReplicationState];
795
801
  export interface RecoveryInstanceDataReplicationInfoReplicatedDisk {
796
- deviceName?: string;
797
- totalStorageBytes?: number;
798
- replicatedStorageBytes?: number;
799
- rescannedStorageBytes?: number;
800
- backloggedStorageBytes?: number;
802
+ deviceName?: string | undefined;
803
+ totalStorageBytes?: number | undefined;
804
+ replicatedStorageBytes?: number | undefined;
805
+ rescannedStorageBytes?: number | undefined;
806
+ backloggedStorageBytes?: number | undefined;
801
807
  }
802
808
  export interface RecoveryInstanceDataReplicationInfo {
803
- lagDuration?: string;
804
- etaDateTime?: string;
805
- replicatedDisks?: RecoveryInstanceDataReplicationInfoReplicatedDisk[];
806
- dataReplicationState?: RecoveryInstanceDataReplicationState;
807
- dataReplicationInitiation?: RecoveryInstanceDataReplicationInitiation;
808
- dataReplicationError?: RecoveryInstanceDataReplicationError;
809
- stagingAvailabilityZone?: string;
810
- stagingOutpostArn?: string;
809
+ lagDuration?: string | undefined;
810
+ etaDateTime?: string | undefined;
811
+ replicatedDisks?:
812
+ | RecoveryInstanceDataReplicationInfoReplicatedDisk[]
813
+ | undefined;
814
+ dataReplicationState?: RecoveryInstanceDataReplicationState | undefined;
815
+ dataReplicationInitiation?:
816
+ | RecoveryInstanceDataReplicationInitiation
817
+ | undefined;
818
+ dataReplicationError?: RecoveryInstanceDataReplicationError | undefined;
819
+ stagingAvailabilityZone?: string | undefined;
820
+ stagingOutpostArn?: string | undefined;
811
821
  }
812
822
  export declare const EC2InstanceState: {
813
823
  readonly NOT_FOUND: "NOT_FOUND";
@@ -837,16 +847,16 @@ export declare const FailbackState: {
837
847
  };
838
848
  export type FailbackState = (typeof FailbackState)[keyof typeof FailbackState];
839
849
  export interface RecoveryInstanceFailback {
840
- failbackClientID?: string;
841
- failbackJobID?: string;
842
- failbackInitiationTime?: string;
843
- state?: FailbackState;
844
- agentLastSeenByServiceDateTime?: string;
845
- failbackClientLastSeenByServiceDateTime?: string;
846
- failbackToOriginalServer?: boolean;
847
- firstByteDateTime?: string;
848
- elapsedReplicationDuration?: string;
849
- failbackLaunchType?: FailbackLaunchType;
850
+ failbackClientID?: string | undefined;
851
+ failbackJobID?: string | undefined;
852
+ failbackInitiationTime?: string | undefined;
853
+ state?: FailbackState | undefined;
854
+ agentLastSeenByServiceDateTime?: string | undefined;
855
+ failbackClientLastSeenByServiceDateTime?: string | undefined;
856
+ failbackToOriginalServer?: boolean | undefined;
857
+ firstByteDateTime?: string | undefined;
858
+ elapsedReplicationDuration?: string | undefined;
859
+ failbackLaunchType?: FailbackLaunchType | undefined;
850
860
  }
851
861
  export declare const OriginEnvironment: {
852
862
  readonly AWS: "AWS";
@@ -855,44 +865,44 @@ export declare const OriginEnvironment: {
855
865
  export type OriginEnvironment =
856
866
  (typeof OriginEnvironment)[keyof typeof OriginEnvironment];
857
867
  export interface RecoveryInstanceDisk {
858
- internalDeviceName?: string;
859
- bytes?: number;
860
- ebsVolumeID?: string;
868
+ internalDeviceName?: string | undefined;
869
+ bytes?: number | undefined;
870
+ ebsVolumeID?: string | undefined;
861
871
  }
862
872
  export interface RecoveryInstanceProperties {
863
- lastUpdatedDateTime?: string;
864
- identificationHints?: IdentificationHints;
865
- networkInterfaces?: NetworkInterface[];
866
- disks?: RecoveryInstanceDisk[];
867
- cpus?: CPU[];
868
- ramBytes?: number;
869
- os?: OS;
873
+ lastUpdatedDateTime?: string | undefined;
874
+ identificationHints?: IdentificationHints | undefined;
875
+ networkInterfaces?: NetworkInterface[] | undefined;
876
+ disks?: RecoveryInstanceDisk[] | undefined;
877
+ cpus?: CPU[] | undefined;
878
+ ramBytes?: number | undefined;
879
+ os?: OS | undefined;
870
880
  }
871
881
  export interface RecoveryInstance {
872
- ec2InstanceID?: string;
873
- ec2InstanceState?: EC2InstanceState;
874
- jobID?: string;
875
- recoveryInstanceID?: string;
876
- sourceServerID?: string;
877
- arn?: string;
878
- tags?: Record<string, string>;
879
- failback?: RecoveryInstanceFailback;
880
- dataReplicationInfo?: RecoveryInstanceDataReplicationInfo;
881
- recoveryInstanceProperties?: RecoveryInstanceProperties;
882
- pointInTimeSnapshotDateTime?: string;
883
- isDrill?: boolean;
884
- originEnvironment?: OriginEnvironment;
885
- originAvailabilityZone?: string;
886
- agentVersion?: string;
887
- sourceOutpostArn?: string;
882
+ ec2InstanceID?: string | undefined;
883
+ ec2InstanceState?: EC2InstanceState | undefined;
884
+ jobID?: string | undefined;
885
+ recoveryInstanceID?: string | undefined;
886
+ sourceServerID?: string | undefined;
887
+ arn?: string | undefined;
888
+ tags?: Record<string, string> | undefined;
889
+ failback?: RecoveryInstanceFailback | undefined;
890
+ dataReplicationInfo?: RecoveryInstanceDataReplicationInfo | undefined;
891
+ recoveryInstanceProperties?: RecoveryInstanceProperties | undefined;
892
+ pointInTimeSnapshotDateTime?: string | undefined;
893
+ isDrill?: boolean | undefined;
894
+ originEnvironment?: OriginEnvironment | undefined;
895
+ originAvailabilityZone?: string | undefined;
896
+ agentVersion?: string | undefined;
897
+ sourceOutpostArn?: string | undefined;
888
898
  }
889
899
  export interface DescribeRecoveryInstancesResponse {
890
- nextToken?: string;
891
- items?: RecoveryInstance[];
900
+ nextToken?: string | undefined;
901
+ items?: RecoveryInstance[] | undefined;
892
902
  }
893
903
  export interface DescribeRecoverySnapshotsRequestFilters {
894
- fromDateTime?: string;
895
- toDateTime?: string;
904
+ fromDateTime?: string | undefined;
905
+ toDateTime?: string | undefined;
896
906
  }
897
907
  export declare const RecoverySnapshotsOrder: {
898
908
  readonly ASC: "ASC";
@@ -902,40 +912,40 @@ export type RecoverySnapshotsOrder =
902
912
  (typeof RecoverySnapshotsOrder)[keyof typeof RecoverySnapshotsOrder];
903
913
  export interface DescribeRecoverySnapshotsRequest {
904
914
  sourceServerID: string | undefined;
905
- filters?: DescribeRecoverySnapshotsRequestFilters;
906
- order?: RecoverySnapshotsOrder;
907
- maxResults?: number;
908
- nextToken?: string;
915
+ filters?: DescribeRecoverySnapshotsRequestFilters | undefined;
916
+ order?: RecoverySnapshotsOrder | undefined;
917
+ maxResults?: number | undefined;
918
+ nextToken?: string | undefined;
909
919
  }
910
920
  export interface RecoverySnapshot {
911
921
  snapshotID: string | undefined;
912
922
  sourceServerID: string | undefined;
913
923
  expectedTimestamp: string | undefined;
914
- timestamp?: string;
915
- ebsSnapshots?: string[];
924
+ timestamp?: string | undefined;
925
+ ebsSnapshots?: string[] | undefined;
916
926
  }
917
927
  export interface DescribeRecoverySnapshotsResponse {
918
- items?: RecoverySnapshot[];
919
- nextToken?: string;
928
+ items?: RecoverySnapshot[] | undefined;
929
+ nextToken?: string | undefined;
920
930
  }
921
931
  export interface DescribeReplicationConfigurationTemplatesRequest {
922
- replicationConfigurationTemplateIDs?: string[];
923
- maxResults?: number;
924
- nextToken?: string;
932
+ replicationConfigurationTemplateIDs?: string[] | undefined;
933
+ maxResults?: number | undefined;
934
+ nextToken?: string | undefined;
925
935
  }
926
936
  export interface DescribeReplicationConfigurationTemplatesResponse {
927
- items?: ReplicationConfigurationTemplate[];
928
- nextToken?: string;
937
+ items?: ReplicationConfigurationTemplate[] | undefined;
938
+ nextToken?: string | undefined;
929
939
  }
930
940
  export interface DescribeSourceNetworksRequestFilters {
931
- sourceNetworkIDs?: string[];
932
- originAccountID?: string;
933
- originRegion?: string;
941
+ sourceNetworkIDs?: string[] | undefined;
942
+ originAccountID?: string | undefined;
943
+ originRegion?: string | undefined;
934
944
  }
935
945
  export interface DescribeSourceNetworksRequest {
936
- filters?: DescribeSourceNetworksRequestFilters;
937
- maxResults?: number;
938
- nextToken?: string;
946
+ filters?: DescribeSourceNetworksRequestFilters | undefined;
947
+ maxResults?: number | undefined;
948
+ nextToken?: string | undefined;
939
949
  }
940
950
  export declare const RecoveryResult: {
941
951
  readonly ASSOCIATE_FAIL: "ASSOCIATE_FAIL";
@@ -949,9 +959,9 @@ export declare const RecoveryResult: {
949
959
  export type RecoveryResult =
950
960
  (typeof RecoveryResult)[keyof typeof RecoveryResult];
951
961
  export interface RecoveryLifeCycle {
952
- apiCallDateTime?: Date;
953
- jobID?: string;
954
- lastRecoveryResult?: RecoveryResult;
962
+ apiCallDateTime?: Date | undefined;
963
+ jobID?: string | undefined;
964
+ lastRecoveryResult?: RecoveryResult | undefined;
955
965
  }
956
966
  export declare const ReplicationStatus: {
957
967
  readonly ERROR: "ERROR";
@@ -962,35 +972,35 @@ export declare const ReplicationStatus: {
962
972
  export type ReplicationStatus =
963
973
  (typeof ReplicationStatus)[keyof typeof ReplicationStatus];
964
974
  export interface SourceNetwork {
965
- sourceNetworkID?: string;
966
- sourceVpcID?: string;
967
- arn?: string;
968
- tags?: Record<string, string>;
969
- replicationStatus?: ReplicationStatus;
970
- replicationStatusDetails?: string;
971
- cfnStackName?: string;
972
- sourceRegion?: string;
973
- sourceAccountID?: string;
974
- lastRecovery?: RecoveryLifeCycle;
975
- launchedVpcID?: string;
975
+ sourceNetworkID?: string | undefined;
976
+ sourceVpcID?: string | undefined;
977
+ arn?: string | undefined;
978
+ tags?: Record<string, string> | undefined;
979
+ replicationStatus?: ReplicationStatus | undefined;
980
+ replicationStatusDetails?: string | undefined;
981
+ cfnStackName?: string | undefined;
982
+ sourceRegion?: string | undefined;
983
+ sourceAccountID?: string | undefined;
984
+ lastRecovery?: RecoveryLifeCycle | undefined;
985
+ launchedVpcID?: string | undefined;
976
986
  }
977
987
  export interface DescribeSourceNetworksResponse {
978
- items?: SourceNetwork[];
979
- nextToken?: string;
988
+ items?: SourceNetwork[] | undefined;
989
+ nextToken?: string | undefined;
980
990
  }
981
991
  export interface DescribeSourceServersRequestFilters {
982
- sourceServerIDs?: string[];
983
- hardwareId?: string;
984
- stagingAccountIDs?: string[];
992
+ sourceServerIDs?: string[] | undefined;
993
+ hardwareId?: string | undefined;
994
+ stagingAccountIDs?: string[] | undefined;
985
995
  }
986
996
  export interface DescribeSourceServersRequest {
987
- filters?: DescribeSourceServersRequestFilters;
988
- maxResults?: number;
989
- nextToken?: string;
997
+ filters?: DescribeSourceServersRequestFilters | undefined;
998
+ maxResults?: number | undefined;
999
+ nextToken?: string | undefined;
990
1000
  }
991
1001
  export interface DescribeSourceServersResponse {
992
- items?: SourceServer[];
993
- nextToken?: string;
1002
+ items?: SourceServer[] | undefined;
1003
+ nextToken?: string | undefined;
994
1004
  }
995
1005
  export interface DisconnectRecoveryInstanceRequest {
996
1006
  recoveryInstanceID: string | undefined;
@@ -1002,58 +1012,60 @@ export interface InitializeServiceRequest {}
1002
1012
  export interface InitializeServiceResponse {}
1003
1013
  export interface UpdateLaunchConfigurationTemplateRequest {
1004
1014
  launchConfigurationTemplateID: string | undefined;
1005
- launchDisposition?: LaunchDisposition;
1006
- targetInstanceTypeRightSizingMethod?: TargetInstanceTypeRightSizingMethod;
1007
- copyPrivateIp?: boolean;
1008
- copyTags?: boolean;
1009
- licensing?: Licensing;
1010
- exportBucketArn?: string;
1011
- postLaunchEnabled?: boolean;
1012
- launchIntoSourceInstance?: boolean;
1015
+ launchDisposition?: LaunchDisposition | undefined;
1016
+ targetInstanceTypeRightSizingMethod?:
1017
+ | TargetInstanceTypeRightSizingMethod
1018
+ | undefined;
1019
+ copyPrivateIp?: boolean | undefined;
1020
+ copyTags?: boolean | undefined;
1021
+ licensing?: Licensing | undefined;
1022
+ exportBucketArn?: string | undefined;
1023
+ postLaunchEnabled?: boolean | undefined;
1024
+ launchIntoSourceInstance?: boolean | undefined;
1013
1025
  }
1014
1026
  export interface UpdateLaunchConfigurationTemplateResponse {
1015
- launchConfigurationTemplate?: LaunchConfigurationTemplate;
1027
+ launchConfigurationTemplate?: LaunchConfigurationTemplate | undefined;
1016
1028
  }
1017
1029
  export interface ListExtensibleSourceServersRequest {
1018
1030
  stagingAccountID: string | undefined;
1019
- maxResults?: number;
1020
- nextToken?: string;
1031
+ maxResults?: number | undefined;
1032
+ nextToken?: string | undefined;
1021
1033
  }
1022
1034
  export interface StagingSourceServer {
1023
- hostname?: string;
1024
- arn?: string;
1025
- tags?: Record<string, string>;
1035
+ hostname?: string | undefined;
1036
+ arn?: string | undefined;
1037
+ tags?: Record<string, string> | undefined;
1026
1038
  }
1027
1039
  export interface ListExtensibleSourceServersResponse {
1028
- items?: StagingSourceServer[];
1029
- nextToken?: string;
1040
+ items?: StagingSourceServer[] | undefined;
1041
+ nextToken?: string | undefined;
1030
1042
  }
1031
1043
  export interface LaunchActionsRequestFilters {
1032
- actionIds?: string[];
1044
+ actionIds?: string[] | undefined;
1033
1045
  }
1034
1046
  export interface ListLaunchActionsRequest {
1035
1047
  resourceId: string | undefined;
1036
- filters?: LaunchActionsRequestFilters;
1037
- maxResults?: number;
1038
- nextToken?: string;
1048
+ filters?: LaunchActionsRequestFilters | undefined;
1049
+ maxResults?: number | undefined;
1050
+ nextToken?: string | undefined;
1039
1051
  }
1040
1052
  export interface ListLaunchActionsResponse {
1041
- items?: LaunchAction[];
1042
- nextToken?: string;
1053
+ items?: LaunchAction[] | undefined;
1054
+ nextToken?: string | undefined;
1043
1055
  }
1044
1056
  export interface ListStagingAccountsRequest {
1045
- maxResults?: number;
1046
- nextToken?: string;
1057
+ maxResults?: number | undefined;
1058
+ nextToken?: string | undefined;
1047
1059
  }
1048
1060
  export interface ListStagingAccountsResponse {
1049
- accounts?: Account[];
1050
- nextToken?: string;
1061
+ accounts?: Account[] | undefined;
1062
+ nextToken?: string | undefined;
1051
1063
  }
1052
1064
  export interface ListTagsForResourceRequest {
1053
1065
  resourceArn: string | undefined;
1054
1066
  }
1055
1067
  export interface ListTagsForResourceResponse {
1056
- tags?: Record<string, string>;
1068
+ tags?: Record<string, string> | undefined;
1057
1069
  }
1058
1070
  export interface PutLaunchActionRequest {
1059
1071
  resourceId: string | undefined;
@@ -1065,44 +1077,44 @@ export interface PutLaunchActionRequest {
1065
1077
  name: string | undefined;
1066
1078
  actionVersion: string | undefined;
1067
1079
  category: LaunchActionCategory | undefined;
1068
- parameters?: Record<string, LaunchActionParameter>;
1080
+ parameters?: Record<string, LaunchActionParameter> | undefined;
1069
1081
  description: string | undefined;
1070
1082
  }
1071
1083
  export interface PutLaunchActionResponse {
1072
- resourceId?: string;
1073
- actionId?: string;
1074
- actionCode?: string;
1075
- type?: LaunchActionType;
1076
- name?: string;
1077
- active?: boolean;
1078
- order?: number;
1079
- actionVersion?: string;
1080
- optional?: boolean;
1081
- parameters?: Record<string, LaunchActionParameter>;
1082
- description?: string;
1083
- category?: LaunchActionCategory;
1084
+ resourceId?: string | undefined;
1085
+ actionId?: string | undefined;
1086
+ actionCode?: string | undefined;
1087
+ type?: LaunchActionType | undefined;
1088
+ name?: string | undefined;
1089
+ active?: boolean | undefined;
1090
+ order?: number | undefined;
1091
+ actionVersion?: string | undefined;
1092
+ optional?: boolean | undefined;
1093
+ parameters?: Record<string, LaunchActionParameter> | undefined;
1094
+ description?: string | undefined;
1095
+ category?: LaunchActionCategory | undefined;
1084
1096
  }
1085
1097
  export interface GetFailbackReplicationConfigurationRequest {
1086
1098
  recoveryInstanceID: string | undefined;
1087
1099
  }
1088
1100
  export interface GetFailbackReplicationConfigurationResponse {
1089
1101
  recoveryInstanceID: string | undefined;
1090
- name?: string;
1091
- bandwidthThrottling?: number;
1092
- usePrivateIP?: boolean;
1102
+ name?: string | undefined;
1103
+ bandwidthThrottling?: number | undefined;
1104
+ usePrivateIP?: boolean | undefined;
1093
1105
  }
1094
1106
  export interface ReverseReplicationRequest {
1095
1107
  recoveryInstanceID: string | undefined;
1096
1108
  }
1097
1109
  export interface ReverseReplicationResponse {
1098
- reversedDirectionSourceServerArn?: string;
1110
+ reversedDirectionSourceServerArn?: string | undefined;
1099
1111
  }
1100
1112
  export interface StartFailbackLaunchRequest {
1101
1113
  recoveryInstanceIDs: string[] | undefined;
1102
- tags?: Record<string, string>;
1114
+ tags?: Record<string, string> | undefined;
1103
1115
  }
1104
1116
  export interface StartFailbackLaunchResponse {
1105
- job?: Job;
1117
+ job?: Job | undefined;
1106
1118
  }
1107
1119
  export interface StopFailbackRequest {
1108
1120
  recoveryInstanceID: string | undefined;
@@ -1111,79 +1123,83 @@ export interface TerminateRecoveryInstancesRequest {
1111
1123
  recoveryInstanceIDs: string[] | undefined;
1112
1124
  }
1113
1125
  export interface TerminateRecoveryInstancesResponse {
1114
- job?: Job;
1126
+ job?: Job | undefined;
1115
1127
  }
1116
1128
  export interface UpdateFailbackReplicationConfigurationRequest {
1117
1129
  recoveryInstanceID: string | undefined;
1118
- name?: string;
1119
- bandwidthThrottling?: number;
1120
- usePrivateIP?: boolean;
1130
+ name?: string | undefined;
1131
+ bandwidthThrottling?: number | undefined;
1132
+ usePrivateIP?: boolean | undefined;
1121
1133
  }
1122
1134
  export interface UpdateReplicationConfigurationTemplateRequest {
1123
1135
  replicationConfigurationTemplateID: string | undefined;
1124
- arn?: string;
1125
- stagingAreaSubnetId?: string;
1126
- associateDefaultSecurityGroup?: boolean;
1127
- replicationServersSecurityGroupsIDs?: string[];
1128
- replicationServerInstanceType?: string;
1129
- useDedicatedReplicationServer?: boolean;
1130
- defaultLargeStagingDiskType?: ReplicationConfigurationDefaultLargeStagingDiskType;
1131
- ebsEncryption?: ReplicationConfigurationEbsEncryption;
1132
- ebsEncryptionKeyArn?: string;
1133
- bandwidthThrottling?: number;
1134
- dataPlaneRouting?: ReplicationConfigurationDataPlaneRouting;
1135
- createPublicIP?: boolean;
1136
- stagingAreaTags?: Record<string, string>;
1137
- pitPolicy?: PITPolicyRule[];
1138
- autoReplicateNewDisks?: boolean;
1136
+ arn?: string | undefined;
1137
+ stagingAreaSubnetId?: string | undefined;
1138
+ associateDefaultSecurityGroup?: boolean | undefined;
1139
+ replicationServersSecurityGroupsIDs?: string[] | undefined;
1140
+ replicationServerInstanceType?: string | undefined;
1141
+ useDedicatedReplicationServer?: boolean | undefined;
1142
+ defaultLargeStagingDiskType?:
1143
+ | ReplicationConfigurationDefaultLargeStagingDiskType
1144
+ | undefined;
1145
+ ebsEncryption?: ReplicationConfigurationEbsEncryption | undefined;
1146
+ ebsEncryptionKeyArn?: string | undefined;
1147
+ bandwidthThrottling?: number | undefined;
1148
+ dataPlaneRouting?: ReplicationConfigurationDataPlaneRouting | undefined;
1149
+ createPublicIP?: boolean | undefined;
1150
+ stagingAreaTags?: Record<string, string> | undefined;
1151
+ pitPolicy?: PITPolicyRule[] | undefined;
1152
+ autoReplicateNewDisks?: boolean | undefined;
1139
1153
  }
1140
1154
  export interface ExportSourceNetworkCfnTemplateRequest {
1141
1155
  sourceNetworkID: string | undefined;
1142
1156
  }
1143
1157
  export interface ExportSourceNetworkCfnTemplateResponse {
1144
- s3DestinationUrl?: string;
1158
+ s3DestinationUrl?: string | undefined;
1145
1159
  }
1146
1160
  export interface StartSourceNetworkRecoveryRequestNetworkEntry {
1147
1161
  sourceNetworkID: string | undefined;
1148
- cfnStackName?: string;
1162
+ cfnStackName?: string | undefined;
1149
1163
  }
1150
1164
  export interface StartSourceNetworkRecoveryRequest {
1151
1165
  sourceNetworks: StartSourceNetworkRecoveryRequestNetworkEntry[] | undefined;
1152
- deployAsNew?: boolean;
1153
- tags?: Record<string, string>;
1166
+ deployAsNew?: boolean | undefined;
1167
+ tags?: Record<string, string> | undefined;
1154
1168
  }
1155
1169
  export interface StartSourceNetworkRecoveryResponse {
1156
- job?: Job;
1170
+ job?: Job | undefined;
1157
1171
  }
1158
1172
  export interface StartSourceNetworkReplicationRequest {
1159
1173
  sourceNetworkID: string | undefined;
1160
1174
  }
1161
1175
  export interface StartSourceNetworkReplicationResponse {
1162
- sourceNetwork?: SourceNetwork;
1176
+ sourceNetwork?: SourceNetwork | undefined;
1163
1177
  }
1164
1178
  export interface StopSourceNetworkReplicationRequest {
1165
1179
  sourceNetworkID: string | undefined;
1166
1180
  }
1167
1181
  export interface StopSourceNetworkReplicationResponse {
1168
- sourceNetwork?: SourceNetwork;
1182
+ sourceNetwork?: SourceNetwork | undefined;
1169
1183
  }
1170
1184
  export interface GetLaunchConfigurationRequest {
1171
1185
  sourceServerID: string | undefined;
1172
1186
  }
1173
1187
  export interface LaunchIntoInstanceProperties {
1174
- launchIntoEC2InstanceID?: string;
1188
+ launchIntoEC2InstanceID?: string | undefined;
1175
1189
  }
1176
1190
  export interface LaunchConfiguration {
1177
- sourceServerID?: string;
1178
- name?: string;
1179
- ec2LaunchTemplateID?: string;
1180
- launchDisposition?: LaunchDisposition;
1181
- targetInstanceTypeRightSizingMethod?: TargetInstanceTypeRightSizingMethod;
1182
- copyPrivateIp?: boolean;
1183
- copyTags?: boolean;
1184
- licensing?: Licensing;
1185
- postLaunchEnabled?: boolean;
1186
- launchIntoInstanceProperties?: LaunchIntoInstanceProperties;
1191
+ sourceServerID?: string | undefined;
1192
+ name?: string | undefined;
1193
+ ec2LaunchTemplateID?: string | undefined;
1194
+ launchDisposition?: LaunchDisposition | undefined;
1195
+ targetInstanceTypeRightSizingMethod?:
1196
+ | TargetInstanceTypeRightSizingMethod
1197
+ | undefined;
1198
+ copyPrivateIp?: boolean | undefined;
1199
+ copyTags?: boolean | undefined;
1200
+ licensing?: Licensing | undefined;
1201
+ postLaunchEnabled?: boolean | undefined;
1202
+ launchIntoInstanceProperties?: LaunchIntoInstanceProperties | undefined;
1187
1203
  }
1188
1204
  export interface GetReplicationConfigurationRequest {
1189
1205
  sourceServerID: string | undefined;
@@ -1200,88 +1216,98 @@ export declare const ReplicationConfigurationReplicatedDiskStagingDiskType: {
1200
1216
  export type ReplicationConfigurationReplicatedDiskStagingDiskType =
1201
1217
  (typeof ReplicationConfigurationReplicatedDiskStagingDiskType)[keyof typeof ReplicationConfigurationReplicatedDiskStagingDiskType];
1202
1218
  export interface ReplicationConfigurationReplicatedDisk {
1203
- deviceName?: string;
1204
- isBootDisk?: boolean;
1205
- stagingDiskType?: ReplicationConfigurationReplicatedDiskStagingDiskType;
1206
- iops?: number;
1207
- throughput?: number;
1208
- optimizedStagingDiskType?: ReplicationConfigurationReplicatedDiskStagingDiskType;
1219
+ deviceName?: string | undefined;
1220
+ isBootDisk?: boolean | undefined;
1221
+ stagingDiskType?:
1222
+ | ReplicationConfigurationReplicatedDiskStagingDiskType
1223
+ | undefined;
1224
+ iops?: number | undefined;
1225
+ throughput?: number | undefined;
1226
+ optimizedStagingDiskType?:
1227
+ | ReplicationConfigurationReplicatedDiskStagingDiskType
1228
+ | undefined;
1209
1229
  }
1210
1230
  export interface ReplicationConfiguration {
1211
- sourceServerID?: string;
1212
- name?: string;
1213
- stagingAreaSubnetId?: string;
1214
- associateDefaultSecurityGroup?: boolean;
1215
- replicationServersSecurityGroupsIDs?: string[];
1216
- replicationServerInstanceType?: string;
1217
- useDedicatedReplicationServer?: boolean;
1218
- defaultLargeStagingDiskType?: ReplicationConfigurationDefaultLargeStagingDiskType;
1219
- replicatedDisks?: ReplicationConfigurationReplicatedDisk[];
1220
- ebsEncryption?: ReplicationConfigurationEbsEncryption;
1221
- ebsEncryptionKeyArn?: string;
1222
- bandwidthThrottling?: number;
1223
- dataPlaneRouting?: ReplicationConfigurationDataPlaneRouting;
1224
- createPublicIP?: boolean;
1225
- stagingAreaTags?: Record<string, string>;
1226
- pitPolicy?: PITPolicyRule[];
1227
- autoReplicateNewDisks?: boolean;
1231
+ sourceServerID?: string | undefined;
1232
+ name?: string | undefined;
1233
+ stagingAreaSubnetId?: string | undefined;
1234
+ associateDefaultSecurityGroup?: boolean | undefined;
1235
+ replicationServersSecurityGroupsIDs?: string[] | undefined;
1236
+ replicationServerInstanceType?: string | undefined;
1237
+ useDedicatedReplicationServer?: boolean | undefined;
1238
+ defaultLargeStagingDiskType?:
1239
+ | ReplicationConfigurationDefaultLargeStagingDiskType
1240
+ | undefined;
1241
+ replicatedDisks?: ReplicationConfigurationReplicatedDisk[] | undefined;
1242
+ ebsEncryption?: ReplicationConfigurationEbsEncryption | undefined;
1243
+ ebsEncryptionKeyArn?: string | undefined;
1244
+ bandwidthThrottling?: number | undefined;
1245
+ dataPlaneRouting?: ReplicationConfigurationDataPlaneRouting | undefined;
1246
+ createPublicIP?: boolean | undefined;
1247
+ stagingAreaTags?: Record<string, string> | undefined;
1248
+ pitPolicy?: PITPolicyRule[] | undefined;
1249
+ autoReplicateNewDisks?: boolean | undefined;
1228
1250
  }
1229
1251
  export interface RetryDataReplicationRequest {
1230
1252
  sourceServerID: string | undefined;
1231
1253
  }
1232
1254
  export interface StartRecoveryRequestSourceServer {
1233
1255
  sourceServerID: string | undefined;
1234
- recoverySnapshotID?: string;
1256
+ recoverySnapshotID?: string | undefined;
1235
1257
  }
1236
1258
  export interface StartRecoveryRequest {
1237
1259
  sourceServers: StartRecoveryRequestSourceServer[] | undefined;
1238
- isDrill?: boolean;
1239
- tags?: Record<string, string>;
1260
+ isDrill?: boolean | undefined;
1261
+ tags?: Record<string, string> | undefined;
1240
1262
  }
1241
1263
  export interface StartRecoveryResponse {
1242
- job?: Job;
1264
+ job?: Job | undefined;
1243
1265
  }
1244
1266
  export interface StartReplicationRequest {
1245
1267
  sourceServerID: string | undefined;
1246
1268
  }
1247
1269
  export interface StartReplicationResponse {
1248
- sourceServer?: SourceServer;
1270
+ sourceServer?: SourceServer | undefined;
1249
1271
  }
1250
1272
  export interface StopReplicationRequest {
1251
1273
  sourceServerID: string | undefined;
1252
1274
  }
1253
1275
  export interface StopReplicationResponse {
1254
- sourceServer?: SourceServer;
1276
+ sourceServer?: SourceServer | undefined;
1255
1277
  }
1256
1278
  export interface UpdateLaunchConfigurationRequest {
1257
1279
  sourceServerID: string | undefined;
1258
- name?: string;
1259
- launchDisposition?: LaunchDisposition;
1260
- targetInstanceTypeRightSizingMethod?: TargetInstanceTypeRightSizingMethod;
1261
- copyPrivateIp?: boolean;
1262
- copyTags?: boolean;
1263
- licensing?: Licensing;
1264
- postLaunchEnabled?: boolean;
1265
- launchIntoInstanceProperties?: LaunchIntoInstanceProperties;
1280
+ name?: string | undefined;
1281
+ launchDisposition?: LaunchDisposition | undefined;
1282
+ targetInstanceTypeRightSizingMethod?:
1283
+ | TargetInstanceTypeRightSizingMethod
1284
+ | undefined;
1285
+ copyPrivateIp?: boolean | undefined;
1286
+ copyTags?: boolean | undefined;
1287
+ licensing?: Licensing | undefined;
1288
+ postLaunchEnabled?: boolean | undefined;
1289
+ launchIntoInstanceProperties?: LaunchIntoInstanceProperties | undefined;
1266
1290
  }
1267
1291
  export interface UpdateReplicationConfigurationRequest {
1268
1292
  sourceServerID: string | undefined;
1269
- name?: string;
1270
- stagingAreaSubnetId?: string;
1271
- associateDefaultSecurityGroup?: boolean;
1272
- replicationServersSecurityGroupsIDs?: string[];
1273
- replicationServerInstanceType?: string;
1274
- useDedicatedReplicationServer?: boolean;
1275
- defaultLargeStagingDiskType?: ReplicationConfigurationDefaultLargeStagingDiskType;
1276
- replicatedDisks?: ReplicationConfigurationReplicatedDisk[];
1277
- ebsEncryption?: ReplicationConfigurationEbsEncryption;
1278
- ebsEncryptionKeyArn?: string;
1279
- bandwidthThrottling?: number;
1280
- dataPlaneRouting?: ReplicationConfigurationDataPlaneRouting;
1281
- createPublicIP?: boolean;
1282
- stagingAreaTags?: Record<string, string>;
1283
- pitPolicy?: PITPolicyRule[];
1284
- autoReplicateNewDisks?: boolean;
1293
+ name?: string | undefined;
1294
+ stagingAreaSubnetId?: string | undefined;
1295
+ associateDefaultSecurityGroup?: boolean | undefined;
1296
+ replicationServersSecurityGroupsIDs?: string[] | undefined;
1297
+ replicationServerInstanceType?: string | undefined;
1298
+ useDedicatedReplicationServer?: boolean | undefined;
1299
+ defaultLargeStagingDiskType?:
1300
+ | ReplicationConfigurationDefaultLargeStagingDiskType
1301
+ | undefined;
1302
+ replicatedDisks?: ReplicationConfigurationReplicatedDisk[] | undefined;
1303
+ ebsEncryption?: ReplicationConfigurationEbsEncryption | undefined;
1304
+ ebsEncryptionKeyArn?: string | undefined;
1305
+ bandwidthThrottling?: number | undefined;
1306
+ dataPlaneRouting?: ReplicationConfigurationDataPlaneRouting | undefined;
1307
+ createPublicIP?: boolean | undefined;
1308
+ stagingAreaTags?: Record<string, string> | undefined;
1309
+ pitPolicy?: PITPolicyRule[] | undefined;
1310
+ autoReplicateNewDisks?: boolean | undefined;
1285
1311
  }
1286
1312
  export interface TagResourceRequest {
1287
1313
  resourceArn: string | undefined;