@aws-sdk/client-ec2 3.687.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.
@@ -18,36 +18,36 @@ export interface ModifyVerifiedAccessTrustProviderRequest {
18
18
  * <p>The options for an OpenID Connect-compatible user-identity trust provider.</p>
19
19
  * @public
20
20
  */
21
- OidcOptions?: ModifyVerifiedAccessTrustProviderOidcOptions;
21
+ OidcOptions?: ModifyVerifiedAccessTrustProviderOidcOptions | undefined;
22
22
  /**
23
23
  * <p>The options for a device-based trust provider. This parameter is required when the
24
24
  * provider type is <code>device</code>.</p>
25
25
  * @public
26
26
  */
27
- DeviceOptions?: ModifyVerifiedAccessTrustProviderDeviceOptions;
27
+ DeviceOptions?: ModifyVerifiedAccessTrustProviderDeviceOptions | undefined;
28
28
  /**
29
29
  * <p>A description for the Verified Access trust provider.</p>
30
30
  * @public
31
31
  */
32
- Description?: string;
32
+ Description?: string | undefined;
33
33
  /**
34
34
  * <p>Checks whether you have the required permissions for the action, without actually making the request,
35
35
  * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
36
36
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
37
37
  * @public
38
38
  */
39
- DryRun?: boolean;
39
+ DryRun?: boolean | undefined;
40
40
  /**
41
41
  * <p>A unique, case-sensitive token that you provide to ensure idempotency of your
42
42
  * modification request. For more information, see <a href="https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html">Ensuring idempotency</a>.</p>
43
43
  * @public
44
44
  */
45
- ClientToken?: string;
45
+ ClientToken?: string | undefined;
46
46
  /**
47
47
  * <p>The options for server side encryption.</p>
48
48
  * @public
49
49
  */
50
- SseSpecification?: VerifiedAccessSseSpecificationRequest;
50
+ SseSpecification?: VerifiedAccessSseSpecificationRequest | undefined;
51
51
  }
52
52
  /**
53
53
  * @public
@@ -57,7 +57,7 @@ export interface ModifyVerifiedAccessTrustProviderResult {
57
57
  * <p>Details about the Verified Access trust provider.</p>
58
58
  * @public
59
59
  */
60
- VerifiedAccessTrustProvider?: VerifiedAccessTrustProvider;
60
+ VerifiedAccessTrustProvider?: VerifiedAccessTrustProvider | undefined;
61
61
  }
62
62
  /**
63
63
  * @public
@@ -69,7 +69,7 @@ export interface ModifyVolumeRequest {
69
69
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
70
70
  * @public
71
71
  */
72
- DryRun?: boolean;
72
+ DryRun?: boolean | undefined;
73
73
  /**
74
74
  * <p>The ID of the volume.</p>
75
75
  * @public
@@ -104,13 +104,13 @@ export interface ModifyVolumeRequest {
104
104
  * <p>Default: The existing size is retained.</p>
105
105
  * @public
106
106
  */
107
- Size?: number;
107
+ Size?: number | undefined;
108
108
  /**
109
109
  * <p>The target EBS volume type of the volume. For more information, see <a href="https://docs.aws.amazon.com/ebs/latest/userguide/ebs-volume-types.html">Amazon EBS volume types</a> in the <i>Amazon EBS User Guide</i>.</p>
110
110
  * <p>Default: The existing type is retained.</p>
111
111
  * @public
112
112
  */
113
- VolumeType?: VolumeType;
113
+ VolumeType?: VolumeType | undefined;
114
114
  /**
115
115
  * <p>The target IOPS rate of the volume. This parameter is valid only for <code>gp3</code>, <code>io1</code>, and <code>io2</code> volumes.</p>
116
116
  * <p>The following are the supported values for each volume type:</p>
@@ -135,7 +135,7 @@ export interface ModifyVolumeRequest {
135
135
  * the volume type to <code>io1</code>, <code>io2</code>, or <code>gp3</code>, the default is 3,000.</p>
136
136
  * @public
137
137
  */
138
- Iops?: number;
138
+ Iops?: number | undefined;
139
139
  /**
140
140
  * <p>The target throughput of the volume, in MiB/s. This parameter is valid only for <code>gp3</code> volumes.
141
141
  * The maximum value is 1,000.</p>
@@ -144,7 +144,7 @@ export interface ModifyVolumeRequest {
144
144
  * <p>Valid Range: Minimum value of 125. Maximum value of 1000.</p>
145
145
  * @public
146
146
  */
147
- Throughput?: number;
147
+ Throughput?: number | undefined;
148
148
  /**
149
149
  * <p>Specifies whether to enable Amazon EBS Multi-Attach. If you enable Multi-Attach, you can attach the
150
150
  * volume to up to 16 <a href="https://docs.aws.amazon.com/ec2/latest/instancetypes/ec2-nitro-instances.html">
@@ -154,7 +154,7 @@ export interface ModifyVolumeRequest {
154
154
  * Amazon EBS Multi-Attach</a> in the <i>Amazon EBS User Guide</i>.</p>
155
155
  * @public
156
156
  */
157
- MultiAttachEnabled?: boolean;
157
+ MultiAttachEnabled?: boolean | undefined;
158
158
  }
159
159
  /**
160
160
  * @public
@@ -164,7 +164,7 @@ export interface ModifyVolumeResult {
164
164
  * <p>Information about the volume modification.</p>
165
165
  * @public
166
166
  */
167
- VolumeModification?: VolumeModification;
167
+ VolumeModification?: VolumeModification | undefined;
168
168
  }
169
169
  /**
170
170
  * @public
@@ -174,7 +174,7 @@ export interface ModifyVolumeAttributeRequest {
174
174
  * <p>Indicates whether the volume should be auto-enabled for I/O operations.</p>
175
175
  * @public
176
176
  */
177
- AutoEnableIO?: AttributeBooleanValue;
177
+ AutoEnableIO?: AttributeBooleanValue | undefined;
178
178
  /**
179
179
  * <p>The ID of the volume.</p>
180
180
  * @public
@@ -186,7 +186,7 @@ export interface ModifyVolumeAttributeRequest {
186
186
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
187
187
  * @public
188
188
  */
189
- DryRun?: boolean;
189
+ DryRun?: boolean | undefined;
190
190
  }
191
191
  /**
192
192
  * @public
@@ -197,7 +197,7 @@ export interface ModifyVpcAttributeRequest {
197
197
  * <p>You cannot modify the DNS resolution and DNS hostnames attributes in the same request. Use separate requests for each attribute. You can only enable DNS hostnames if you've enabled DNS support.</p>
198
198
  * @public
199
199
  */
200
- EnableDnsHostnames?: AttributeBooleanValue;
200
+ EnableDnsHostnames?: AttributeBooleanValue | undefined;
201
201
  /**
202
202
  * <p>Indicates whether the DNS resolution is supported for the VPC. If enabled, queries to
203
203
  * the Amazon provided DNS server at the 169.254.169.253 IP address, or the reserved IP
@@ -207,7 +207,7 @@ export interface ModifyVpcAttributeRequest {
207
207
  * <p>You cannot modify the DNS resolution and DNS hostnames attributes in the same request. Use separate requests for each attribute.</p>
208
208
  * @public
209
209
  */
210
- EnableDnsSupport?: AttributeBooleanValue;
210
+ EnableDnsSupport?: AttributeBooleanValue | undefined;
211
211
  /**
212
212
  * <p>The ID of the VPC.</p>
213
213
  * @public
@@ -217,7 +217,7 @@ export interface ModifyVpcAttributeRequest {
217
217
  * <p>Indicates whether Network Address Usage metrics are enabled for your VPC.</p>
218
218
  * @public
219
219
  */
220
- EnableNetworkAddressUsageMetrics?: AttributeBooleanValue;
220
+ EnableNetworkAddressUsageMetrics?: AttributeBooleanValue | undefined;
221
221
  }
222
222
  /**
223
223
  * @public
@@ -229,7 +229,7 @@ export interface ModifyVpcEndpointRequest {
229
229
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
230
230
  * @public
231
231
  */
232
- DryRun?: boolean;
232
+ DryRun?: boolean | undefined;
233
233
  /**
234
234
  * <p>The ID of the endpoint.</p>
235
235
  * @public
@@ -240,64 +240,64 @@ export interface ModifyVpcEndpointRequest {
240
240
  * default policy. The default policy allows full access to the service.</p>
241
241
  * @public
242
242
  */
243
- ResetPolicy?: boolean;
243
+ ResetPolicy?: boolean | undefined;
244
244
  /**
245
245
  * <p>(Interface and gateway endpoints) A policy to attach to the endpoint that controls access to the service. The policy must
246
246
  * be in valid JSON format.</p>
247
247
  * @public
248
248
  */
249
- PolicyDocument?: string;
249
+ PolicyDocument?: string | undefined;
250
250
  /**
251
251
  * <p>(Gateway endpoint) The IDs of the route tables to associate with the endpoint.</p>
252
252
  * @public
253
253
  */
254
- AddRouteTableIds?: string[];
254
+ AddRouteTableIds?: string[] | undefined;
255
255
  /**
256
256
  * <p>(Gateway endpoint) The IDs of the route tables to disassociate from the endpoint.</p>
257
257
  * @public
258
258
  */
259
- RemoveRouteTableIds?: string[];
259
+ RemoveRouteTableIds?: string[] | undefined;
260
260
  /**
261
261
  * <p>(Interface and Gateway Load Balancer endpoints) The IDs of the subnets in which to serve the endpoint.
262
262
  * For a Gateway Load Balancer endpoint, you can specify only one subnet.</p>
263
263
  * @public
264
264
  */
265
- AddSubnetIds?: string[];
265
+ AddSubnetIds?: string[] | undefined;
266
266
  /**
267
267
  * <p>(Interface endpoint) The IDs of the subnets from which to remove the endpoint.</p>
268
268
  * @public
269
269
  */
270
- RemoveSubnetIds?: string[];
270
+ RemoveSubnetIds?: string[] | undefined;
271
271
  /**
272
272
  * <p>(Interface endpoint) The IDs of the security groups to associate with the endpoint network interfaces.</p>
273
273
  * @public
274
274
  */
275
- AddSecurityGroupIds?: string[];
275
+ AddSecurityGroupIds?: string[] | undefined;
276
276
  /**
277
277
  * <p>(Interface endpoint) The IDs of the security groups to disassociate from the endpoint network interfaces.</p>
278
278
  * @public
279
279
  */
280
- RemoveSecurityGroupIds?: string[];
280
+ RemoveSecurityGroupIds?: string[] | undefined;
281
281
  /**
282
282
  * <p>The IP address type for the endpoint.</p>
283
283
  * @public
284
284
  */
285
- IpAddressType?: IpAddressType;
285
+ IpAddressType?: IpAddressType | undefined;
286
286
  /**
287
287
  * <p>The DNS options for the endpoint.</p>
288
288
  * @public
289
289
  */
290
- DnsOptions?: DnsOptionsSpecification;
290
+ DnsOptions?: DnsOptionsSpecification | undefined;
291
291
  /**
292
292
  * <p>(Interface endpoint) Indicates whether a private hosted zone is associated with the VPC.</p>
293
293
  * @public
294
294
  */
295
- PrivateDnsEnabled?: boolean;
295
+ PrivateDnsEnabled?: boolean | undefined;
296
296
  /**
297
297
  * <p>The subnet configurations for the endpoint.</p>
298
298
  * @public
299
299
  */
300
- SubnetConfigurations?: SubnetConfiguration[];
300
+ SubnetConfigurations?: SubnetConfiguration[] | undefined;
301
301
  }
302
302
  /**
303
303
  * @public
@@ -307,7 +307,7 @@ export interface ModifyVpcEndpointResult {
307
307
  * <p>Returns <code>true</code> if the request succeeds; otherwise, it returns an error.</p>
308
308
  * @public
309
309
  */
310
- Return?: boolean;
310
+ Return?: boolean | undefined;
311
311
  }
312
312
  /**
313
313
  * @public
@@ -319,7 +319,7 @@ export interface ModifyVpcEndpointConnectionNotificationRequest {
319
319
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
320
320
  * @public
321
321
  */
322
- DryRun?: boolean;
322
+ DryRun?: boolean | undefined;
323
323
  /**
324
324
  * <p>The ID of the notification.</p>
325
325
  * @public
@@ -329,13 +329,13 @@ export interface ModifyVpcEndpointConnectionNotificationRequest {
329
329
  * <p>The ARN for the SNS topic for the notification.</p>
330
330
  * @public
331
331
  */
332
- ConnectionNotificationArn?: string;
332
+ ConnectionNotificationArn?: string | undefined;
333
333
  /**
334
334
  * <p>The events for the endpoint. Valid values are <code>Accept</code>,
335
335
  * <code>Connect</code>, <code>Delete</code>, and <code>Reject</code>.</p>
336
336
  * @public
337
337
  */
338
- ConnectionEvents?: string[];
338
+ ConnectionEvents?: string[] | undefined;
339
339
  }
340
340
  /**
341
341
  * @public
@@ -345,7 +345,7 @@ export interface ModifyVpcEndpointConnectionNotificationResult {
345
345
  * <p>Returns <code>true</code> if the request succeeds; otherwise, it returns an error.</p>
346
346
  * @public
347
347
  */
348
- ReturnValue?: boolean;
348
+ ReturnValue?: boolean | undefined;
349
349
  }
350
350
  /**
351
351
  * @public
@@ -357,7 +357,7 @@ export interface ModifyVpcEndpointServiceConfigurationRequest {
357
357
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
358
358
  * @public
359
359
  */
360
- DryRun?: boolean;
360
+ DryRun?: boolean | undefined;
361
361
  /**
362
362
  * <p>The ID of the service.</p>
363
363
  * @public
@@ -367,51 +367,51 @@ export interface ModifyVpcEndpointServiceConfigurationRequest {
367
367
  * <p>(Interface endpoint configuration) The private DNS name to assign to the endpoint service.</p>
368
368
  * @public
369
369
  */
370
- PrivateDnsName?: string;
370
+ PrivateDnsName?: string | undefined;
371
371
  /**
372
372
  * <p>(Interface endpoint configuration) Removes the private DNS name of the endpoint service.</p>
373
373
  * @public
374
374
  */
375
- RemovePrivateDnsName?: boolean;
375
+ RemovePrivateDnsName?: boolean | undefined;
376
376
  /**
377
377
  * <p>Indicates whether requests to create an endpoint to your service must be accepted.</p>
378
378
  * @public
379
379
  */
380
- AcceptanceRequired?: boolean;
380
+ AcceptanceRequired?: boolean | undefined;
381
381
  /**
382
382
  * <p>The Amazon Resource Names (ARNs) of Network Load Balancers to add to your service
383
383
  * configuration.</p>
384
384
  * @public
385
385
  */
386
- AddNetworkLoadBalancerArns?: string[];
386
+ AddNetworkLoadBalancerArns?: string[] | undefined;
387
387
  /**
388
388
  * <p>The Amazon Resource Names (ARNs) of Network Load Balancers to remove from your service
389
389
  * configuration.</p>
390
390
  * @public
391
391
  */
392
- RemoveNetworkLoadBalancerArns?: string[];
392
+ RemoveNetworkLoadBalancerArns?: string[] | undefined;
393
393
  /**
394
394
  * <p>The Amazon Resource Names (ARNs) of Gateway Load Balancers to add to your service
395
395
  * configuration.</p>
396
396
  * @public
397
397
  */
398
- AddGatewayLoadBalancerArns?: string[];
398
+ AddGatewayLoadBalancerArns?: string[] | undefined;
399
399
  /**
400
400
  * <p>The Amazon Resource Names (ARNs) of Gateway Load Balancers to remove from your service
401
401
  * configuration.</p>
402
402
  * @public
403
403
  */
404
- RemoveGatewayLoadBalancerArns?: string[];
404
+ RemoveGatewayLoadBalancerArns?: string[] | undefined;
405
405
  /**
406
406
  * <p>The IP address types to add to your service configuration.</p>
407
407
  * @public
408
408
  */
409
- AddSupportedIpAddressTypes?: string[];
409
+ AddSupportedIpAddressTypes?: string[] | undefined;
410
410
  /**
411
411
  * <p>The IP address types to remove from your service configuration.</p>
412
412
  * @public
413
413
  */
414
- RemoveSupportedIpAddressTypes?: string[];
414
+ RemoveSupportedIpAddressTypes?: string[] | undefined;
415
415
  }
416
416
  /**
417
417
  * @public
@@ -421,7 +421,7 @@ export interface ModifyVpcEndpointServiceConfigurationResult {
421
421
  * <p>Returns <code>true</code> if the request succeeds; otherwise, it returns an error.</p>
422
422
  * @public
423
423
  */
424
- Return?: boolean;
424
+ Return?: boolean | undefined;
425
425
  }
426
426
  /**
427
427
  * @public
@@ -433,7 +433,7 @@ export interface ModifyVpcEndpointServicePayerResponsibilityRequest {
433
433
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
434
434
  * @public
435
435
  */
436
- DryRun?: boolean;
436
+ DryRun?: boolean | undefined;
437
437
  /**
438
438
  * <p>The ID of the service.</p>
439
439
  * @public
@@ -455,7 +455,7 @@ export interface ModifyVpcEndpointServicePayerResponsibilityResult {
455
455
  * <p>Returns <code>true</code> if the request succeeds; otherwise, it returns an error.</p>
456
456
  * @public
457
457
  */
458
- ReturnValue?: boolean;
458
+ ReturnValue?: boolean | undefined;
459
459
  }
460
460
  /**
461
461
  * @public
@@ -467,7 +467,7 @@ export interface ModifyVpcEndpointServicePermissionsRequest {
467
467
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
468
468
  * @public
469
469
  */
470
- DryRun?: boolean;
470
+ DryRun?: boolean | undefined;
471
471
  /**
472
472
  * <p>The ID of the service.</p>
473
473
  * @public
@@ -479,13 +479,13 @@ export interface ModifyVpcEndpointServicePermissionsRequest {
479
479
  * To grant permissions to all principals, specify an asterisk (*).</p>
480
480
  * @public
481
481
  */
482
- AddAllowedPrincipals?: string[];
482
+ AddAllowedPrincipals?: string[] | undefined;
483
483
  /**
484
484
  * <p>The Amazon Resource Names (ARN) of the principals.
485
485
  * Permissions are revoked for principals in this list.</p>
486
486
  * @public
487
487
  */
488
- RemoveAllowedPrincipals?: string[];
488
+ RemoveAllowedPrincipals?: string[] | undefined;
489
489
  }
490
490
  /**
491
491
  * @public
@@ -495,12 +495,12 @@ export interface ModifyVpcEndpointServicePermissionsResult {
495
495
  * <p>Information about the added principals.</p>
496
496
  * @public
497
497
  */
498
- AddedPrincipals?: AddedPrincipal[];
498
+ AddedPrincipals?: AddedPrincipal[] | undefined;
499
499
  /**
500
500
  * <p>Returns <code>true</code> if the request succeeds; otherwise, it returns an error.</p>
501
501
  * @public
502
502
  */
503
- ReturnValue?: boolean;
503
+ ReturnValue?: boolean | undefined;
504
504
  }
505
505
  /**
506
506
  * <p>The VPC peering connection options.</p>
@@ -512,17 +512,17 @@ export interface PeeringConnectionOptionsRequest {
512
512
  * when queried from instances in the peer VPC.</p>
513
513
  * @public
514
514
  */
515
- AllowDnsResolutionFromRemoteVpc?: boolean;
515
+ AllowDnsResolutionFromRemoteVpc?: boolean | undefined;
516
516
  /**
517
517
  * <p>Deprecated.</p>
518
518
  * @public
519
519
  */
520
- AllowEgressFromLocalClassicLinkToRemoteVpc?: boolean;
520
+ AllowEgressFromLocalClassicLinkToRemoteVpc?: boolean | undefined;
521
521
  /**
522
522
  * <p>Deprecated.</p>
523
523
  * @public
524
524
  */
525
- AllowEgressFromLocalVpcToRemoteClassicLink?: boolean;
525
+ AllowEgressFromLocalVpcToRemoteClassicLink?: boolean | undefined;
526
526
  }
527
527
  /**
528
528
  * @public
@@ -532,19 +532,19 @@ export interface ModifyVpcPeeringConnectionOptionsRequest {
532
532
  * <p>The VPC peering connection options for the accepter VPC.</p>
533
533
  * @public
534
534
  */
535
- AccepterPeeringConnectionOptions?: PeeringConnectionOptionsRequest;
535
+ AccepterPeeringConnectionOptions?: PeeringConnectionOptionsRequest | undefined;
536
536
  /**
537
537
  * <p>Checks whether you have the required permissions for the action, without actually making the request,
538
538
  * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
539
539
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
540
540
  * @public
541
541
  */
542
- DryRun?: boolean;
542
+ DryRun?: boolean | undefined;
543
543
  /**
544
544
  * <p>The VPC peering connection options for the requester VPC.</p>
545
545
  * @public
546
546
  */
547
- RequesterPeeringConnectionOptions?: PeeringConnectionOptionsRequest;
547
+ RequesterPeeringConnectionOptions?: PeeringConnectionOptionsRequest | undefined;
548
548
  /**
549
549
  * <p>The ID of the VPC peering connection.</p>
550
550
  * @public
@@ -561,17 +561,17 @@ export interface PeeringConnectionOptions {
561
561
  * IP addresses when queried from instances in the peer VPC.</p>
562
562
  * @public
563
563
  */
564
- AllowDnsResolutionFromRemoteVpc?: boolean;
564
+ AllowDnsResolutionFromRemoteVpc?: boolean | undefined;
565
565
  /**
566
566
  * <p>Deprecated.</p>
567
567
  * @public
568
568
  */
569
- AllowEgressFromLocalClassicLinkToRemoteVpc?: boolean;
569
+ AllowEgressFromLocalClassicLinkToRemoteVpc?: boolean | undefined;
570
570
  /**
571
571
  * <p>Deprecated.</p>
572
572
  * @public
573
573
  */
574
- AllowEgressFromLocalVpcToRemoteClassicLink?: boolean;
574
+ AllowEgressFromLocalVpcToRemoteClassicLink?: boolean | undefined;
575
575
  }
576
576
  /**
577
577
  * @public
@@ -581,12 +581,12 @@ export interface ModifyVpcPeeringConnectionOptionsResult {
581
581
  * <p>Information about the VPC peering connection options for the accepter VPC.</p>
582
582
  * @public
583
583
  */
584
- AccepterPeeringConnectionOptions?: PeeringConnectionOptions;
584
+ AccepterPeeringConnectionOptions?: PeeringConnectionOptions | undefined;
585
585
  /**
586
586
  * <p>Information about the VPC peering connection options for the requester VPC.</p>
587
587
  * @public
588
588
  */
589
- RequesterPeeringConnectionOptions?: PeeringConnectionOptions;
589
+ RequesterPeeringConnectionOptions?: PeeringConnectionOptions | undefined;
590
590
  }
591
591
  /**
592
592
  * @public
@@ -619,7 +619,7 @@ export interface ModifyVpcTenancyRequest {
619
619
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
620
620
  * @public
621
621
  */
622
- DryRun?: boolean;
622
+ DryRun?: boolean | undefined;
623
623
  }
624
624
  /**
625
625
  * @public
@@ -630,7 +630,7 @@ export interface ModifyVpcTenancyResult {
630
630
  * error.</p>
631
631
  * @public
632
632
  */
633
- ReturnValue?: boolean;
633
+ ReturnValue?: boolean | undefined;
634
634
  }
635
635
  /**
636
636
  * @public
@@ -645,18 +645,18 @@ export interface ModifyVpnConnectionRequest {
645
645
  * <p>The ID of the transit gateway.</p>
646
646
  * @public
647
647
  */
648
- TransitGatewayId?: string;
648
+ TransitGatewayId?: string | undefined;
649
649
  /**
650
650
  * <p>The ID of the customer gateway at your end of the VPN connection.</p>
651
651
  * @public
652
652
  */
653
- CustomerGatewayId?: string;
653
+ CustomerGatewayId?: string | undefined;
654
654
  /**
655
655
  * <p>The ID of the virtual private gateway at the Amazon Web Services side of the VPN
656
656
  * connection.</p>
657
657
  * @public
658
658
  */
659
- VpnGatewayId?: string;
659
+ VpnGatewayId?: string | undefined;
660
660
  /**
661
661
  * <p>Checks whether you have the required permissions for the action, without actually
662
662
  * making the request, and provides an error response. If you have the required
@@ -664,7 +664,7 @@ export interface ModifyVpnConnectionRequest {
664
664
  * <code>UnauthorizedOperation</code>.</p>
665
665
  * @public
666
666
  */
667
- DryRun?: boolean;
667
+ DryRun?: boolean | undefined;
668
668
  }
669
669
  /**
670
670
  * @public
@@ -674,7 +674,7 @@ export interface ModifyVpnConnectionResult {
674
674
  * <p>Information about the VPN connection.</p>
675
675
  * @public
676
676
  */
677
- VpnConnection?: VpnConnection;
677
+ VpnConnection?: VpnConnection | undefined;
678
678
  }
679
679
  /**
680
680
  * @public
@@ -691,33 +691,33 @@ export interface ModifyVpnConnectionOptionsRequest {
691
691
  * </p>
692
692
  * @public
693
693
  */
694
- LocalIpv4NetworkCidr?: string;
694
+ LocalIpv4NetworkCidr?: string | undefined;
695
695
  /**
696
696
  * <p>The IPv4 CIDR on the Amazon Web Services side of the VPN connection.</p>
697
697
  * <p>Default: <code>0.0.0.0/0</code>
698
698
  * </p>
699
699
  * @public
700
700
  */
701
- RemoteIpv4NetworkCidr?: string;
701
+ RemoteIpv4NetworkCidr?: string | undefined;
702
702
  /**
703
703
  * <p>The IPv6 CIDR on the customer gateway (on-premises) side of the VPN connection.</p>
704
704
  * <p>Default: <code>::/0</code>
705
705
  * </p>
706
706
  * @public
707
707
  */
708
- LocalIpv6NetworkCidr?: string;
708
+ LocalIpv6NetworkCidr?: string | undefined;
709
709
  /**
710
710
  * <p>The IPv6 CIDR on the Amazon Web Services side of the VPN connection.</p>
711
711
  * <p>Default: <code>::/0</code>
712
712
  * </p>
713
713
  * @public
714
714
  */
715
- RemoteIpv6NetworkCidr?: string;
715
+ RemoteIpv6NetworkCidr?: string | undefined;
716
716
  /**
717
717
  * <p>Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
718
718
  * @public
719
719
  */
720
- DryRun?: boolean;
720
+ DryRun?: boolean | undefined;
721
721
  }
722
722
  /**
723
723
  * @public
@@ -727,7 +727,7 @@ export interface ModifyVpnConnectionOptionsResult {
727
727
  * <p>Information about the VPN connection.</p>
728
728
  * @public
729
729
  */
730
- VpnConnection?: VpnConnection;
730
+ VpnConnection?: VpnConnection | undefined;
731
731
  }
732
732
  /**
733
733
  * @public
@@ -750,7 +750,7 @@ export interface ModifyVpnTunnelCertificateRequest {
750
750
  * <code>UnauthorizedOperation</code>.</p>
751
751
  * @public
752
752
  */
753
- DryRun?: boolean;
753
+ DryRun?: boolean | undefined;
754
754
  }
755
755
  /**
756
756
  * @public
@@ -760,7 +760,7 @@ export interface ModifyVpnTunnelCertificateResult {
760
760
  * <p>Information about the VPN connection.</p>
761
761
  * @public
762
762
  */
763
- VpnConnection?: VpnConnection;
763
+ VpnConnection?: VpnConnection | undefined;
764
764
  }
765
765
  /**
766
766
  * <p>The Amazon Web Services Site-to-Site VPN tunnel options to modify.</p>
@@ -811,14 +811,14 @@ export interface ModifyVpnTunnelOptionsSpecification {
811
811
  * </ul>
812
812
  * @public
813
813
  */
814
- TunnelInsideCidr?: string;
814
+ TunnelInsideCidr?: string | undefined;
815
815
  /**
816
816
  * <p>The range of inside IPv6 addresses for the tunnel. Any specified CIDR blocks must be
817
817
  * unique across all VPN connections that use the same transit gateway.</p>
818
818
  * <p>Constraints: A size /126 CIDR block from the local <code>fd00::/8</code> range.</p>
819
819
  * @public
820
820
  */
821
- TunnelInsideIpv6Cidr?: string;
821
+ TunnelInsideIpv6Cidr?: string | undefined;
822
822
  /**
823
823
  * <p>The pre-shared key (PSK) to establish initial authentication between the virtual
824
824
  * private gateway and the customer gateway.</p>
@@ -827,7 +827,7 @@ export interface ModifyVpnTunnelOptionsSpecification {
827
827
  * zero (0).</p>
828
828
  * @public
829
829
  */
830
- PreSharedKey?: string;
830
+ PreSharedKey?: string | undefined;
831
831
  /**
832
832
  * <p>The lifetime for phase 1 of the IKE negotiation, in seconds.</p>
833
833
  * <p>Constraints: A value between 900 and 28,800.</p>
@@ -835,7 +835,7 @@ export interface ModifyVpnTunnelOptionsSpecification {
835
835
  * </p>
836
836
  * @public
837
837
  */
838
- Phase1LifetimeSeconds?: number;
838
+ Phase1LifetimeSeconds?: number | undefined;
839
839
  /**
840
840
  * <p>The lifetime for phase 2 of the IKE negotiation, in seconds.</p>
841
841
  * <p>Constraints: A value between 900 and 3,600. The value must be less than the value for
@@ -844,7 +844,7 @@ export interface ModifyVpnTunnelOptionsSpecification {
844
844
  * </p>
845
845
  * @public
846
846
  */
847
- Phase2LifetimeSeconds?: number;
847
+ Phase2LifetimeSeconds?: number | undefined;
848
848
  /**
849
849
  * <p>The margin time, in seconds, before the phase 2 lifetime expires, during which the
850
850
  * Amazon Web Services side of the VPN connection performs an IKE rekey. The exact time
@@ -855,7 +855,7 @@ export interface ModifyVpnTunnelOptionsSpecification {
855
855
  * </p>
856
856
  * @public
857
857
  */
858
- RekeyMarginTimeSeconds?: number;
858
+ RekeyMarginTimeSeconds?: number | undefined;
859
859
  /**
860
860
  * <p>The percentage of the rekey window (determined by <code>RekeyMarginTimeSeconds</code>)
861
861
  * during which the rekey time is randomly selected.</p>
@@ -864,7 +864,7 @@ export interface ModifyVpnTunnelOptionsSpecification {
864
864
  * </p>
865
865
  * @public
866
866
  */
867
- RekeyFuzzPercentage?: number;
867
+ RekeyFuzzPercentage?: number | undefined;
868
868
  /**
869
869
  * <p>The number of packets in an IKE replay window.</p>
870
870
  * <p>Constraints: A value between 64 and 2048.</p>
@@ -872,7 +872,7 @@ export interface ModifyVpnTunnelOptionsSpecification {
872
872
  * </p>
873
873
  * @public
874
874
  */
875
- ReplayWindowSize?: number;
875
+ ReplayWindowSize?: number | undefined;
876
876
  /**
877
877
  * <p>The number of seconds after which a DPD timeout occurs. A DPD timeout of 40 seconds means that the VPN endpoint will consider the peer dead 30 seconds after the first failed keep-alive.</p>
878
878
  * <p>Constraints: A value greater than or equal to 30.</p>
@@ -880,7 +880,7 @@ export interface ModifyVpnTunnelOptionsSpecification {
880
880
  * </p>
881
881
  * @public
882
882
  */
883
- DPDTimeoutSeconds?: number;
883
+ DPDTimeoutSeconds?: number | undefined;
884
884
  /**
885
885
  * <p>The action to take after DPD timeout occurs. Specify <code>restart</code> to restart
886
886
  * the IKE initiation. Specify <code>clear</code> to end the IKE session.</p>
@@ -890,7 +890,7 @@ export interface ModifyVpnTunnelOptionsSpecification {
890
890
  * </p>
891
891
  * @public
892
892
  */
893
- DPDTimeoutAction?: string;
893
+ DPDTimeoutAction?: string | undefined;
894
894
  /**
895
895
  * <p>One or more encryption algorithms that are permitted for the VPN tunnel for phase 1
896
896
  * IKE negotiations.</p>
@@ -899,7 +899,7 @@ export interface ModifyVpnTunnelOptionsSpecification {
899
899
  * </p>
900
900
  * @public
901
901
  */
902
- Phase1EncryptionAlgorithms?: Phase1EncryptionAlgorithmsRequestListValue[];
902
+ Phase1EncryptionAlgorithms?: Phase1EncryptionAlgorithmsRequestListValue[] | undefined;
903
903
  /**
904
904
  * <p>One or more encryption algorithms that are permitted for the VPN tunnel for phase 2
905
905
  * IKE negotiations.</p>
@@ -908,7 +908,7 @@ export interface ModifyVpnTunnelOptionsSpecification {
908
908
  * </p>
909
909
  * @public
910
910
  */
911
- Phase2EncryptionAlgorithms?: Phase2EncryptionAlgorithmsRequestListValue[];
911
+ Phase2EncryptionAlgorithms?: Phase2EncryptionAlgorithmsRequestListValue[] | undefined;
912
912
  /**
913
913
  * <p>One or more integrity algorithms that are permitted for the VPN tunnel for phase 1 IKE
914
914
  * negotiations.</p>
@@ -917,7 +917,7 @@ export interface ModifyVpnTunnelOptionsSpecification {
917
917
  * </p>
918
918
  * @public
919
919
  */
920
- Phase1IntegrityAlgorithms?: Phase1IntegrityAlgorithmsRequestListValue[];
920
+ Phase1IntegrityAlgorithms?: Phase1IntegrityAlgorithmsRequestListValue[] | undefined;
921
921
  /**
922
922
  * <p>One or more integrity algorithms that are permitted for the VPN tunnel for phase 2 IKE
923
923
  * negotiations.</p>
@@ -926,7 +926,7 @@ export interface ModifyVpnTunnelOptionsSpecification {
926
926
  * </p>
927
927
  * @public
928
928
  */
929
- Phase2IntegrityAlgorithms?: Phase2IntegrityAlgorithmsRequestListValue[];
929
+ Phase2IntegrityAlgorithms?: Phase2IntegrityAlgorithmsRequestListValue[] | undefined;
930
930
  /**
931
931
  * <p>One or more Diffie-Hellman group numbers that are permitted for the VPN tunnel for
932
932
  * phase 1 IKE negotiations.</p>
@@ -936,7 +936,7 @@ export interface ModifyVpnTunnelOptionsSpecification {
936
936
  * </p>
937
937
  * @public
938
938
  */
939
- Phase1DHGroupNumbers?: Phase1DHGroupNumbersRequestListValue[];
939
+ Phase1DHGroupNumbers?: Phase1DHGroupNumbersRequestListValue[] | undefined;
940
940
  /**
941
941
  * <p>One or more Diffie-Hellman group numbers that are permitted for the VPN tunnel for
942
942
  * phase 2 IKE negotiations.</p>
@@ -947,14 +947,14 @@ export interface ModifyVpnTunnelOptionsSpecification {
947
947
  * </p>
948
948
  * @public
949
949
  */
950
- Phase2DHGroupNumbers?: Phase2DHGroupNumbersRequestListValue[];
950
+ Phase2DHGroupNumbers?: Phase2DHGroupNumbersRequestListValue[] | undefined;
951
951
  /**
952
952
  * <p>The IKE versions that are permitted for the VPN tunnel.</p>
953
953
  * <p>Valid values: <code>ikev1</code> | <code>ikev2</code>
954
954
  * </p>
955
955
  * @public
956
956
  */
957
- IKEVersions?: IKEVersionsRequestListValue[];
957
+ IKEVersions?: IKEVersionsRequestListValue[] | undefined;
958
958
  /**
959
959
  * <p>The action to take when the establishing the tunnel for the VPN connection. By
960
960
  * default, your customer gateway device must initiate the IKE negotiation and bring up the
@@ -966,17 +966,17 @@ export interface ModifyVpnTunnelOptionsSpecification {
966
966
  * </p>
967
967
  * @public
968
968
  */
969
- StartupAction?: string;
969
+ StartupAction?: string | undefined;
970
970
  /**
971
971
  * <p>Options for logging VPN tunnel activity.</p>
972
972
  * @public
973
973
  */
974
- LogOptions?: VpnTunnelLogOptionsSpecification;
974
+ LogOptions?: VpnTunnelLogOptionsSpecification | undefined;
975
975
  /**
976
976
  * <p>Turn on or off tunnel endpoint lifecycle control feature.</p>
977
977
  * @public
978
978
  */
979
- EnableTunnelLifecycleControl?: boolean;
979
+ EnableTunnelLifecycleControl?: boolean | undefined;
980
980
  }
981
981
  /**
982
982
  * @public
@@ -1004,14 +1004,14 @@ export interface ModifyVpnTunnelOptionsRequest {
1004
1004
  * <code>UnauthorizedOperation</code>.</p>
1005
1005
  * @public
1006
1006
  */
1007
- DryRun?: boolean;
1007
+ DryRun?: boolean | undefined;
1008
1008
  /**
1009
1009
  * <p>Choose whether or not to trigger immediate tunnel replacement. This is only applicable when turning on or off <code>EnableTunnelLifecycleControl</code>.</p>
1010
1010
  * <p>Valid values: <code>True</code> | <code>False</code>
1011
1011
  * </p>
1012
1012
  * @public
1013
1013
  */
1014
- SkipTunnelReplacement?: boolean;
1014
+ SkipTunnelReplacement?: boolean | undefined;
1015
1015
  }
1016
1016
  /**
1017
1017
  * @public
@@ -1021,7 +1021,7 @@ export interface ModifyVpnTunnelOptionsResult {
1021
1021
  * <p>Information about the VPN connection.</p>
1022
1022
  * @public
1023
1023
  */
1024
- VpnConnection?: VpnConnection;
1024
+ VpnConnection?: VpnConnection | undefined;
1025
1025
  }
1026
1026
  /**
1027
1027
  * @public
@@ -1038,7 +1038,7 @@ export interface MonitorInstancesRequest {
1038
1038
  * <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
1039
1039
  * @public
1040
1040
  */
1041
- DryRun?: boolean;
1041
+ DryRun?: boolean | undefined;
1042
1042
  }
1043
1043
  /**
1044
1044
  * <p>Describes the monitoring of an instance.</p>
@@ -1049,12 +1049,12 @@ export interface InstanceMonitoring {
1049
1049
  * <p>The ID of the instance.</p>
1050
1050
  * @public
1051
1051
  */
1052
- InstanceId?: string;
1052
+ InstanceId?: string | undefined;
1053
1053
  /**
1054
1054
  * <p>The monitoring for the instance.</p>
1055
1055
  * @public
1056
1056
  */
1057
- Monitoring?: Monitoring;
1057
+ Monitoring?: Monitoring | undefined;
1058
1058
  }
1059
1059
  /**
1060
1060
  * @public
@@ -1064,7 +1064,7 @@ export interface MonitorInstancesResult {
1064
1064
  * <p>The monitoring information.</p>
1065
1065
  * @public
1066
1066
  */
1067
- InstanceMonitorings?: InstanceMonitoring[];
1067
+ InstanceMonitorings?: InstanceMonitoring[] | undefined;
1068
1068
  }
1069
1069
  /**
1070
1070
  * @public
@@ -1076,7 +1076,7 @@ export interface MoveAddressToVpcRequest {
1076
1076
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
1077
1077
  * @public
1078
1078
  */
1079
- DryRun?: boolean;
1079
+ DryRun?: boolean | undefined;
1080
1080
  /**
1081
1081
  * <p>The Elastic IP address.</p>
1082
1082
  * @public
@@ -1104,12 +1104,12 @@ export interface MoveAddressToVpcResult {
1104
1104
  * <p>The allocation ID for the Elastic IP address.</p>
1105
1105
  * @public
1106
1106
  */
1107
- AllocationId?: string;
1107
+ AllocationId?: string | undefined;
1108
1108
  /**
1109
1109
  * <p>The status of the move of the IP address.</p>
1110
1110
  * @public
1111
1111
  */
1112
- Status?: Status;
1112
+ Status?: Status | undefined;
1113
1113
  }
1114
1114
  /**
1115
1115
  * @public
@@ -1121,7 +1121,7 @@ export interface MoveByoipCidrToIpamRequest {
1121
1121
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
1122
1122
  * @public
1123
1123
  */
1124
- DryRun?: boolean;
1124
+ DryRun?: boolean | undefined;
1125
1125
  /**
1126
1126
  * <p>The BYOIP CIDR.</p>
1127
1127
  * @public
@@ -1146,7 +1146,7 @@ export interface MoveByoipCidrToIpamResult {
1146
1146
  * <p>The BYOIP CIDR.</p>
1147
1147
  * @public
1148
1148
  */
1149
- ByoipCidr?: ByoipCidr;
1149
+ ByoipCidr?: ByoipCidr | undefined;
1150
1150
  }
1151
1151
  /**
1152
1152
  * @public
@@ -1156,12 +1156,12 @@ export interface MoveCapacityReservationInstancesRequest {
1156
1156
  * <p>Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
1157
1157
  * @public
1158
1158
  */
1159
- DryRun?: boolean;
1159
+ DryRun?: boolean | undefined;
1160
1160
  /**
1161
1161
  * <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html">Ensure Idempotency</a>.</p>
1162
1162
  * @public
1163
1163
  */
1164
- ClientToken?: string;
1164
+ ClientToken?: string | undefined;
1165
1165
  /**
1166
1166
  * <p>
1167
1167
  * The ID of the Capacity Reservation from which you want to move capacity.
@@ -1193,21 +1193,21 @@ export interface MoveCapacityReservationInstancesResult {
1193
1193
  * </p>
1194
1194
  * @public
1195
1195
  */
1196
- SourceCapacityReservation?: CapacityReservation;
1196
+ SourceCapacityReservation?: CapacityReservation | undefined;
1197
1197
  /**
1198
1198
  * <p>
1199
1199
  * Information about the destination Capacity Reservation.
1200
1200
  * </p>
1201
1201
  * @public
1202
1202
  */
1203
- DestinationCapacityReservation?: CapacityReservation;
1203
+ DestinationCapacityReservation?: CapacityReservation | undefined;
1204
1204
  /**
1205
1205
  * <p>
1206
1206
  * The number of instances that were moved from the source Capacity Reservation to the destination Capacity Reservation.
1207
1207
  * </p>
1208
1208
  * @public
1209
1209
  */
1210
- InstanceCount?: number;
1210
+ InstanceCount?: number | undefined;
1211
1211
  }
1212
1212
  /**
1213
1213
  * <p>Provides authorization for Amazon to bring a specific IP address range to a specific
@@ -1242,36 +1242,36 @@ export interface ProvisionByoipCidrRequest {
1242
1242
  * range to Amazon using BYOIP.</p>
1243
1243
  * @public
1244
1244
  */
1245
- CidrAuthorizationContext?: CidrAuthorizationContext;
1245
+ CidrAuthorizationContext?: CidrAuthorizationContext | undefined;
1246
1246
  /**
1247
1247
  * <p>(IPv6 only) Indicate whether the address range will be publicly advertised to the
1248
1248
  * internet.</p>
1249
1249
  * <p>Default: true</p>
1250
1250
  * @public
1251
1251
  */
1252
- PubliclyAdvertisable?: boolean;
1252
+ PubliclyAdvertisable?: boolean | undefined;
1253
1253
  /**
1254
1254
  * <p>A description for the address range and the address pool.</p>
1255
1255
  * @public
1256
1256
  */
1257
- Description?: string;
1257
+ Description?: string | undefined;
1258
1258
  /**
1259
1259
  * <p>Checks whether you have the required permissions for the action, without actually making the request,
1260
1260
  * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
1261
1261
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
1262
1262
  * @public
1263
1263
  */
1264
- DryRun?: boolean;
1264
+ DryRun?: boolean | undefined;
1265
1265
  /**
1266
1266
  * <p>The tags to apply to the address pool.</p>
1267
1267
  * @public
1268
1268
  */
1269
- PoolTagSpecifications?: TagSpecification[];
1269
+ PoolTagSpecifications?: TagSpecification[] | undefined;
1270
1270
  /**
1271
1271
  * <p>Reserved.</p>
1272
1272
  * @public
1273
1273
  */
1274
- MultiRegion?: boolean;
1274
+ MultiRegion?: boolean | undefined;
1275
1275
  /**
1276
1276
  * <p>If you have <a href="https://docs.aws.amazon.com/local-zones/latest/ug/how-local-zones-work.html">Local Zones</a> enabled, you can choose a network border group for Local Zones when you provision and advertise a BYOIPv4 CIDR. Choose the network border group carefully as the EIP and the Amazon Web Services resource it is associated with must reside in the same network border group.</p>
1277
1277
  * <p>You can provision BYOIP address ranges to and advertise them in the following Local Zone network border groups:</p>
@@ -1291,7 +1291,7 @@ export interface ProvisionByoipCidrRequest {
1291
1291
  * </note>
1292
1292
  * @public
1293
1293
  */
1294
- NetworkBorderGroup?: string;
1294
+ NetworkBorderGroup?: string | undefined;
1295
1295
  }
1296
1296
  /**
1297
1297
  * @public
@@ -1301,7 +1301,7 @@ export interface ProvisionByoipCidrResult {
1301
1301
  * <p>Information about the address range.</p>
1302
1302
  * @public
1303
1303
  */
1304
- ByoipCidr?: ByoipCidr;
1304
+ ByoipCidr?: ByoipCidr | undefined;
1305
1305
  }
1306
1306
  /**
1307
1307
  * <p>Provides authorization for Amazon to bring an Autonomous System Number (ASN) to a specific Amazon Web Services account using bring your own ASN (BYOASN).
@@ -1330,7 +1330,7 @@ export interface ProvisionIpamByoasnRequest {
1330
1330
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
1331
1331
  * @public
1332
1332
  */
1333
- DryRun?: boolean;
1333
+ DryRun?: boolean | undefined;
1334
1334
  /**
1335
1335
  * <p>An IPAM ID.</p>
1336
1336
  * @public
@@ -1355,7 +1355,7 @@ export interface ProvisionIpamByoasnResult {
1355
1355
  * <p>An ASN and BYOIP CIDR association.</p>
1356
1356
  * @public
1357
1357
  */
1358
- Byoasn?: Byoasn;
1358
+ Byoasn?: Byoasn | undefined;
1359
1359
  }
1360
1360
  /**
1361
1361
  * <p>A signed document that proves that you are authorized to bring the specified IP address range to Amazon using BYOIP.</p>
@@ -1366,12 +1366,12 @@ export interface IpamCidrAuthorizationContext {
1366
1366
  * <p>The plain-text authorization message for the prefix and account.</p>
1367
1367
  * @public
1368
1368
  */
1369
- Message?: string;
1369
+ Message?: string | undefined;
1370
1370
  /**
1371
1371
  * <p>The signed authorization message for the prefix and account.</p>
1372
1372
  * @public
1373
1373
  */
1374
- Signature?: string;
1374
+ Signature?: string | undefined;
1375
1375
  }
1376
1376
  /**
1377
1377
  * @public
@@ -1395,7 +1395,7 @@ export interface ProvisionIpamPoolCidrRequest {
1395
1395
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
1396
1396
  * @public
1397
1397
  */
1398
- DryRun?: boolean;
1398
+ DryRun?: boolean | undefined;
1399
1399
  /**
1400
1400
  * <p>The ID of the IPAM pool to which you want to assign a CIDR.</p>
1401
1401
  * @public
@@ -1405,32 +1405,32 @@ export interface ProvisionIpamPoolCidrRequest {
1405
1405
  * <p>The CIDR you want to assign to the IPAM pool. Either "NetmaskLength" or "Cidr" is required. This value will be null if you specify "NetmaskLength" and will be filled in during the provisioning process.</p>
1406
1406
  * @public
1407
1407
  */
1408
- Cidr?: string;
1408
+ Cidr?: string | undefined;
1409
1409
  /**
1410
1410
  * <p>A signed document that proves that you are authorized to bring a specified IP address range to Amazon using BYOIP. This option only applies to IPv4 and IPv6 pools in the public scope.</p>
1411
1411
  * @public
1412
1412
  */
1413
- CidrAuthorizationContext?: IpamCidrAuthorizationContext;
1413
+ CidrAuthorizationContext?: IpamCidrAuthorizationContext | undefined;
1414
1414
  /**
1415
1415
  * <p>The netmask length of the CIDR you'd like to provision to a pool. Can be used for provisioning Amazon-provided IPv6 CIDRs to top-level pools and for provisioning CIDRs to pools with source pools. Cannot be used to provision BYOIP CIDRs to top-level pools. Either "NetmaskLength" or "Cidr" is required.</p>
1416
1416
  * @public
1417
1417
  */
1418
- NetmaskLength?: number;
1418
+ NetmaskLength?: number | undefined;
1419
1419
  /**
1420
1420
  * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see <a href="https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html">Ensuring idempotency</a>.</p>
1421
1421
  * @public
1422
1422
  */
1423
- ClientToken?: string;
1423
+ ClientToken?: string | undefined;
1424
1424
  /**
1425
1425
  * <p>The method for verifying control of a public IP address range. Defaults to <code>remarks-x509</code> if not specified. This option only applies to IPv4 and IPv6 pools in the public scope.</p>
1426
1426
  * @public
1427
1427
  */
1428
- VerificationMethod?: VerificationMethod;
1428
+ VerificationMethod?: VerificationMethod | undefined;
1429
1429
  /**
1430
1430
  * <p>Verification token ID. This option only applies to IPv4 and IPv6 pools in the public scope.</p>
1431
1431
  * @public
1432
1432
  */
1433
- IpamExternalResourceVerificationTokenId?: string;
1433
+ IpamExternalResourceVerificationTokenId?: string | undefined;
1434
1434
  }
1435
1435
  /**
1436
1436
  * @public
@@ -1440,7 +1440,7 @@ export interface ProvisionIpamPoolCidrResult {
1440
1440
  * <p>Information about the provisioned CIDR.</p>
1441
1441
  * @public
1442
1442
  */
1443
- IpamPoolCidr?: IpamPoolCidr;
1443
+ IpamPoolCidr?: IpamPoolCidr | undefined;
1444
1444
  }
1445
1445
  /**
1446
1446
  * @public
@@ -1452,7 +1452,7 @@ export interface ProvisionPublicIpv4PoolCidrRequest {
1452
1452
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
1453
1453
  * @public
1454
1454
  */
1455
- DryRun?: boolean;
1455
+ DryRun?: boolean | undefined;
1456
1456
  /**
1457
1457
  * <p>The ID of the IPAM pool you would like to use to allocate this CIDR.</p>
1458
1458
  * @public
@@ -1472,7 +1472,7 @@ export interface ProvisionPublicIpv4PoolCidrRequest {
1472
1472
  * <p>The Availability Zone (AZ) or Local Zone (LZ) network border group that the resource that the IP address is assigned to is in. Defaults to an AZ network border group. For more information on available Local Zones, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-byoip.html#byoip-zone-avail">Local Zone availability</a> in the <i>Amazon EC2 User Guide</i>.</p>
1473
1473
  * @public
1474
1474
  */
1475
- NetworkBorderGroup?: string;
1475
+ NetworkBorderGroup?: string | undefined;
1476
1476
  }
1477
1477
  /**
1478
1478
  * @public
@@ -1482,12 +1482,12 @@ export interface ProvisionPublicIpv4PoolCidrResult {
1482
1482
  * <p>The ID of the pool that you want to provision the CIDR to.</p>
1483
1483
  * @public
1484
1484
  */
1485
- PoolId?: string;
1485
+ PoolId?: string | undefined;
1486
1486
  /**
1487
1487
  * <p>Information about the address range of the public IPv4 pool.</p>
1488
1488
  * @public
1489
1489
  */
1490
- PoolAddressRange?: PublicIpv4PoolRange;
1490
+ PoolAddressRange?: PublicIpv4PoolRange | undefined;
1491
1491
  }
1492
1492
  /**
1493
1493
  * @public
@@ -1497,12 +1497,12 @@ export interface PurchaseCapacityBlockRequest {
1497
1497
  * <p>Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
1498
1498
  * @public
1499
1499
  */
1500
- DryRun?: boolean;
1500
+ DryRun?: boolean | undefined;
1501
1501
  /**
1502
1502
  * <p>The tags to apply to the Capacity Block during launch.</p>
1503
1503
  * @public
1504
1504
  */
1505
- TagSpecifications?: TagSpecification[];
1505
+ TagSpecifications?: TagSpecification[] | undefined;
1506
1506
  /**
1507
1507
  * <p>The ID of the Capacity Block offering.</p>
1508
1508
  * @public
@@ -1522,7 +1522,7 @@ export interface PurchaseCapacityBlockResult {
1522
1522
  * <p>The Capacity Reservation.</p>
1523
1523
  * @public
1524
1524
  */
1525
- CapacityReservation?: CapacityReservation;
1525
+ CapacityReservation?: CapacityReservation | undefined;
1526
1526
  }
1527
1527
  /**
1528
1528
  * @public
@@ -1532,14 +1532,14 @@ export interface PurchaseHostReservationRequest {
1532
1532
  * <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html">Ensuring Idempotency</a>.</p>
1533
1533
  * @public
1534
1534
  */
1535
- ClientToken?: string;
1535
+ ClientToken?: string | undefined;
1536
1536
  /**
1537
1537
  * <p>The currency in which the <code>totalUpfrontPrice</code>, <code>LimitPrice</code>, and
1538
1538
  * <code>totalHourlyPrice</code> amounts are specified. At this time, the only
1539
1539
  * supported currency is <code>USD</code>.</p>
1540
1540
  * @public
1541
1541
  */
1542
- CurrencyCode?: CurrencyCodeValues;
1542
+ CurrencyCode?: CurrencyCodeValues | undefined;
1543
1543
  /**
1544
1544
  * <p>The IDs of the Dedicated Hosts with which the reservation will be associated.</p>
1545
1545
  * @public
@@ -1554,7 +1554,7 @@ export interface PurchaseHostReservationRequest {
1554
1554
  * a limit price of USD 100, specify 100.00.</p>
1555
1555
  * @public
1556
1556
  */
1557
- LimitPrice?: string;
1557
+ LimitPrice?: string | undefined;
1558
1558
  /**
1559
1559
  * <p>The ID of the offering.</p>
1560
1560
  * @public
@@ -1564,7 +1564,7 @@ export interface PurchaseHostReservationRequest {
1564
1564
  * <p>The tags to apply to the Dedicated Host Reservation during purchase.</p>
1565
1565
  * @public
1566
1566
  */
1567
- TagSpecifications?: TagSpecification[];
1567
+ TagSpecifications?: TagSpecification[] | undefined;
1568
1568
  }
1569
1569
  /**
1570
1570
  * @public
@@ -1574,29 +1574,29 @@ export interface PurchaseHostReservationResult {
1574
1574
  * <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html">Ensuring Idempotency</a>.</p>
1575
1575
  * @public
1576
1576
  */
1577
- ClientToken?: string;
1577
+ ClientToken?: string | undefined;
1578
1578
  /**
1579
1579
  * <p>The currency in which the <code>totalUpfrontPrice</code> and
1580
1580
  * <code>totalHourlyPrice</code> amounts are specified. At this time, the only
1581
1581
  * supported currency is <code>USD</code>.</p>
1582
1582
  * @public
1583
1583
  */
1584
- CurrencyCode?: CurrencyCodeValues;
1584
+ CurrencyCode?: CurrencyCodeValues | undefined;
1585
1585
  /**
1586
1586
  * <p>Describes the details of the purchase.</p>
1587
1587
  * @public
1588
1588
  */
1589
- Purchase?: Purchase[];
1589
+ Purchase?: Purchase[] | undefined;
1590
1590
  /**
1591
1591
  * <p>The total hourly price of the reservation calculated per hour.</p>
1592
1592
  * @public
1593
1593
  */
1594
- TotalHourlyPrice?: string;
1594
+ TotalHourlyPrice?: string | undefined;
1595
1595
  /**
1596
1596
  * <p>The total amount charged to your account when you purchase the reservation.</p>
1597
1597
  * @public
1598
1598
  */
1599
- TotalUpfrontPrice?: string;
1599
+ TotalUpfrontPrice?: string | undefined;
1600
1600
  }
1601
1601
  /**
1602
1602
  * <p>Describes the limit price of a Reserved Instance offering.</p>
@@ -1607,13 +1607,13 @@ export interface ReservedInstanceLimitPrice {
1607
1607
  * <p>Used for Reserved Instance Marketplace offerings. Specifies the limit price on the total order (instanceCount * price).</p>
1608
1608
  * @public
1609
1609
  */
1610
- Amount?: number;
1610
+ Amount?: number | undefined;
1611
1611
  /**
1612
1612
  * <p>The currency in which the <code>limitPrice</code> amount is specified.
1613
1613
  * At this time, the only supported currency is <code>USD</code>.</p>
1614
1614
  * @public
1615
1615
  */
1616
- CurrencyCode?: CurrencyCodeValues;
1616
+ CurrencyCode?: CurrencyCodeValues | undefined;
1617
1617
  }
1618
1618
  /**
1619
1619
  * <p>Contains the parameters for PurchaseReservedInstancesOffering.</p>
@@ -1634,19 +1634,19 @@ export interface PurchaseReservedInstancesOfferingRequest {
1634
1634
  * <p>The time at which to purchase the Reserved Instance, in UTC format (for example, <i>YYYY</i>-<i>MM</i>-<i>DD</i>T<i>HH</i>:<i>MM</i>:<i>SS</i>Z).</p>
1635
1635
  * @public
1636
1636
  */
1637
- PurchaseTime?: Date;
1637
+ PurchaseTime?: Date | undefined;
1638
1638
  /**
1639
1639
  * <p>Checks whether you have the required permissions for the action, without actually making the request,
1640
1640
  * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
1641
1641
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
1642
1642
  * @public
1643
1643
  */
1644
- DryRun?: boolean;
1644
+ DryRun?: boolean | undefined;
1645
1645
  /**
1646
1646
  * <p>Specified for Reserved Instance Marketplace offerings to limit the total order and ensure that the Reserved Instances are not purchased at unexpected prices.</p>
1647
1647
  * @public
1648
1648
  */
1649
- LimitPrice?: ReservedInstanceLimitPrice;
1649
+ LimitPrice?: ReservedInstanceLimitPrice | undefined;
1650
1650
  }
1651
1651
  /**
1652
1652
  * <p>Contains the output of PurchaseReservedInstancesOffering.</p>
@@ -1659,7 +1659,7 @@ export interface PurchaseReservedInstancesOfferingResult {
1659
1659
  * pricing tiers</a> in the <i>Amazon EC2 User Guide</i>.</p>
1660
1660
  * @public
1661
1661
  */
1662
- ReservedInstancesId?: string;
1662
+ ReservedInstancesId?: string | undefined;
1663
1663
  }
1664
1664
  /**
1665
1665
  * <p>Describes a request to purchase Scheduled Instances.</p>
@@ -1687,14 +1687,14 @@ export interface PurchaseScheduledInstancesRequest {
1687
1687
  * For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html">Ensuring Idempotency</a>.</p>
1688
1688
  * @public
1689
1689
  */
1690
- ClientToken?: string;
1690
+ ClientToken?: string | undefined;
1691
1691
  /**
1692
1692
  * <p>Checks whether you have the required permissions for the action, without actually making the request,
1693
1693
  * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
1694
1694
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
1695
1695
  * @public
1696
1696
  */
1697
- DryRun?: boolean;
1697
+ DryRun?: boolean | undefined;
1698
1698
  /**
1699
1699
  * <p>The purchase requests.</p>
1700
1700
  * @public
@@ -1710,7 +1710,7 @@ export interface PurchaseScheduledInstancesResult {
1710
1710
  * <p>Information about the Scheduled Instances.</p>
1711
1711
  * @public
1712
1712
  */
1713
- ScheduledInstanceSet?: ScheduledInstance[];
1713
+ ScheduledInstanceSet?: ScheduledInstance[] | undefined;
1714
1714
  }
1715
1715
  /**
1716
1716
  * @public
@@ -1727,7 +1727,7 @@ export interface RebootInstancesRequest {
1727
1727
  * <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
1728
1728
  * @public
1729
1729
  */
1730
- DryRun?: boolean;
1730
+ DryRun?: boolean | undefined;
1731
1731
  }
1732
1732
  /**
1733
1733
  * <p>Contains the parameters for RegisterImage.</p>
@@ -1741,7 +1741,7 @@ export interface RegisterImageRequest {
1741
1741
  * <i>Amazon S3 Service Developer Guide</i>.</p>
1742
1742
  * @public
1743
1743
  */
1744
- ImageLocation?: string;
1744
+ ImageLocation?: string | undefined;
1745
1745
  /**
1746
1746
  * <p>The billing product codes. Your account must be authorized to specify billing product codes.</p>
1747
1747
  * <p>If your account is not authorized to specify billing product codes, you can publish AMIs
@@ -1751,7 +1751,7 @@ export interface RegisterImageRequest {
1751
1751
  * products</a> in the <i>Amazon Web Services Marketplace Seller Guide</i>.</p>
1752
1752
  * @public
1753
1753
  */
1754
- BillingProducts?: string[];
1754
+ BillingProducts?: string[] | undefined;
1755
1755
  /**
1756
1756
  * <p>The boot mode of the AMI. A value of <code>uefi-preferred</code> indicates that the AMI supports both UEFI and Legacy BIOS.</p>
1757
1757
  * <note>
@@ -1761,13 +1761,13 @@ export interface RegisterImageRequest {
1761
1761
  * <i>Amazon EC2 User Guide</i>.</p>
1762
1762
  * @public
1763
1763
  */
1764
- BootMode?: BootModeValues;
1764
+ BootMode?: BootModeValues | undefined;
1765
1765
  /**
1766
1766
  * <p>Set to <code>v2.0</code> to enable Trusted Platform Module (TPM) support. For more
1767
1767
  * information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/nitrotpm.html">NitroTPM</a> in the <i>Amazon EC2 User Guide</i>.</p>
1768
1768
  * @public
1769
1769
  */
1770
- TpmSupport?: TpmSupportValues;
1770
+ TpmSupport?: TpmSupportValues | undefined;
1771
1771
  /**
1772
1772
  * <p>Base64 representation of the non-volatile UEFI variable store. To retrieve the UEFI data,
1773
1773
  * use the <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_GetInstanceUefiData">GetInstanceUefiData</a> command. You can inspect and modify the UEFI data by using the
@@ -1776,7 +1776,7 @@ export interface RegisterImageRequest {
1776
1776
  * <i>Amazon EC2 User Guide</i>.</p>
1777
1777
  * @public
1778
1778
  */
1779
- UefiData?: string;
1779
+ UefiData?: string | undefined;
1780
1780
  /**
1781
1781
  * <p>Set to <code>v2.0</code> to indicate that IMDSv2 is specified in the AMI. Instances
1782
1782
  * launched from this AMI will have <code>HttpTokens</code> automatically set to
@@ -1789,7 +1789,7 @@ export interface RegisterImageRequest {
1789
1789
  * </note>
1790
1790
  * @public
1791
1791
  */
1792
- ImdsSupport?: ImdsSupportValues;
1792
+ ImdsSupport?: ImdsSupportValues | undefined;
1793
1793
  /**
1794
1794
  * <p>The tags to apply to the AMI.</p>
1795
1795
  * <p>To tag the AMI, the value for <code>ResourceType</code> must be <code>image</code>. If you
@@ -1797,14 +1797,14 @@ export interface RegisterImageRequest {
1797
1797
  * <p>To tag an AMI after it has been registered, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateTags.html">CreateTags</a>.</p>
1798
1798
  * @public
1799
1799
  */
1800
- TagSpecifications?: TagSpecification[];
1800
+ TagSpecifications?: TagSpecification[] | undefined;
1801
1801
  /**
1802
1802
  * <p>Checks whether you have the required permissions for the action, without actually making the request,
1803
1803
  * and provides an error response. If you have the required permissions, the error response is
1804
1804
  * <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
1805
1805
  * @public
1806
1806
  */
1807
- DryRun?: boolean;
1807
+ DryRun?: boolean | undefined;
1808
1808
  /**
1809
1809
  * <p>A name for your AMI.</p>
1810
1810
  * <p>Constraints: 3-128 alphanumeric characters, parentheses (()), square brackets ([]), spaces ( ), periods (.), slashes (/), dashes (-), single quotes ('), at-signs (@), or underscores(_)</p>
@@ -1815,29 +1815,29 @@ export interface RegisterImageRequest {
1815
1815
  * <p>A description for your AMI.</p>
1816
1816
  * @public
1817
1817
  */
1818
- Description?: string;
1818
+ Description?: string | undefined;
1819
1819
  /**
1820
1820
  * <p>The architecture of the AMI.</p>
1821
1821
  * <p>Default: For Amazon EBS-backed AMIs, <code>i386</code>.
1822
1822
  * For instance store-backed AMIs, the architecture specified in the manifest file.</p>
1823
1823
  * @public
1824
1824
  */
1825
- Architecture?: ArchitectureValues;
1825
+ Architecture?: ArchitectureValues | undefined;
1826
1826
  /**
1827
1827
  * <p>The ID of the kernel.</p>
1828
1828
  * @public
1829
1829
  */
1830
- KernelId?: string;
1830
+ KernelId?: string | undefined;
1831
1831
  /**
1832
1832
  * <p>The ID of the RAM disk.</p>
1833
1833
  * @public
1834
1834
  */
1835
- RamdiskId?: string;
1835
+ RamdiskId?: string | undefined;
1836
1836
  /**
1837
1837
  * <p>The device name of the root device volume (for example, <code>/dev/sda1</code>).</p>
1838
1838
  * @public
1839
1839
  */
1840
- RootDeviceName?: string;
1840
+ RootDeviceName?: string | undefined;
1841
1841
  /**
1842
1842
  * <p>The block device mapping entries.</p>
1843
1843
  * <p>If you specify an Amazon EBS volume using the ID of an Amazon EBS snapshot, you can't specify the encryption state of the volume.</p>
@@ -1847,27 +1847,27 @@ export interface RegisterImageRequest {
1847
1847
  * snapshots on Outposts</a> in the <i>Amazon EBS User Guide</i>.</p>
1848
1848
  * @public
1849
1849
  */
1850
- BlockDeviceMappings?: BlockDeviceMapping[];
1850
+ BlockDeviceMappings?: BlockDeviceMapping[] | undefined;
1851
1851
  /**
1852
1852
  * <p>The type of virtualization (<code>hvm</code> | <code>paravirtual</code>).</p>
1853
1853
  * <p>Default: <code>paravirtual</code>
1854
1854
  * </p>
1855
1855
  * @public
1856
1856
  */
1857
- VirtualizationType?: string;
1857
+ VirtualizationType?: string | undefined;
1858
1858
  /**
1859
1859
  * <p>Set to <code>simple</code> to enable enhanced networking with the Intel 82599 Virtual Function interface for the AMI and any instances that you launch from the AMI.</p>
1860
1860
  * <p>There is no way to disable <code>sriovNetSupport</code> at this time.</p>
1861
1861
  * <p>This option is supported only for HVM AMIs. Specifying this option with a PV AMI can make instances launched from the AMI unreachable.</p>
1862
1862
  * @public
1863
1863
  */
1864
- SriovNetSupport?: string;
1864
+ SriovNetSupport?: string | undefined;
1865
1865
  /**
1866
1866
  * <p>Set to <code>true</code> to enable enhanced networking with ENA for the AMI and any instances that you launch from the AMI.</p>
1867
1867
  * <p>This option is supported only for HVM AMIs. Specifying this option with a PV AMI can make instances launched from the AMI unreachable.</p>
1868
1868
  * @public
1869
1869
  */
1870
- EnaSupport?: boolean;
1870
+ EnaSupport?: boolean | undefined;
1871
1871
  }
1872
1872
  /**
1873
1873
  * <p>Contains the output of RegisterImage.</p>
@@ -1878,7 +1878,7 @@ export interface RegisterImageResult {
1878
1878
  * <p>The ID of the newly registered AMI.</p>
1879
1879
  * @public
1880
1880
  */
1881
- ImageId?: string;
1881
+ ImageId?: string | undefined;
1882
1882
  }
1883
1883
  /**
1884
1884
  * <p>Information about the tag keys to register for the current Region. You can either specify
@@ -1892,12 +1892,12 @@ export interface RegisterInstanceTagAttributeRequest {
1892
1892
  * to register all tag keys.</p>
1893
1893
  * @public
1894
1894
  */
1895
- IncludeAllTagsOfInstance?: boolean;
1895
+ IncludeAllTagsOfInstance?: boolean | undefined;
1896
1896
  /**
1897
1897
  * <p>The tag keys to register.</p>
1898
1898
  * @public
1899
1899
  */
1900
- InstanceTagKeys?: string[];
1900
+ InstanceTagKeys?: string[] | undefined;
1901
1901
  }
1902
1902
  /**
1903
1903
  * @public
@@ -1909,7 +1909,7 @@ export interface RegisterInstanceEventNotificationAttributesRequest {
1909
1909
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
1910
1910
  * @public
1911
1911
  */
1912
- DryRun?: boolean;
1912
+ DryRun?: boolean | undefined;
1913
1913
  /**
1914
1914
  * <p>Information about the tag keys to register.</p>
1915
1915
  * @public
@@ -1924,7 +1924,7 @@ export interface RegisterInstanceEventNotificationAttributesResult {
1924
1924
  * <p>The resulting set of tag keys.</p>
1925
1925
  * @public
1926
1926
  */
1927
- InstanceTagAttribute?: InstanceTagNotificationAttribute;
1927
+ InstanceTagAttribute?: InstanceTagNotificationAttribute | undefined;
1928
1928
  }
1929
1929
  /**
1930
1930
  * @public
@@ -1939,7 +1939,7 @@ export interface RegisterTransitGatewayMulticastGroupMembersRequest {
1939
1939
  * <p>The IP address assigned to the transit gateway multicast group.</p>
1940
1940
  * @public
1941
1941
  */
1942
- GroupIpAddress?: string;
1942
+ GroupIpAddress?: string | undefined;
1943
1943
  /**
1944
1944
  * <p>The group members' network interface IDs to register with the transit gateway multicast group.</p>
1945
1945
  * @public
@@ -1951,7 +1951,7 @@ export interface RegisterTransitGatewayMulticastGroupMembersRequest {
1951
1951
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
1952
1952
  * @public
1953
1953
  */
1954
- DryRun?: boolean;
1954
+ DryRun?: boolean | undefined;
1955
1955
  }
1956
1956
  /**
1957
1957
  * <p>Describes the registered transit gateway multicast group members.</p>
@@ -1962,17 +1962,17 @@ export interface TransitGatewayMulticastRegisteredGroupMembers {
1962
1962
  * <p>The ID of the transit gateway multicast domain.</p>
1963
1963
  * @public
1964
1964
  */
1965
- TransitGatewayMulticastDomainId?: string;
1965
+ TransitGatewayMulticastDomainId?: string | undefined;
1966
1966
  /**
1967
1967
  * <p>The ID of the registered network interfaces.</p>
1968
1968
  * @public
1969
1969
  */
1970
- RegisteredNetworkInterfaceIds?: string[];
1970
+ RegisteredNetworkInterfaceIds?: string[] | undefined;
1971
1971
  /**
1972
1972
  * <p>The IP address assigned to the transit gateway multicast group.</p>
1973
1973
  * @public
1974
1974
  */
1975
- GroupIpAddress?: string;
1975
+ GroupIpAddress?: string | undefined;
1976
1976
  }
1977
1977
  /**
1978
1978
  * @public
@@ -1982,7 +1982,7 @@ export interface RegisterTransitGatewayMulticastGroupMembersResult {
1982
1982
  * <p>Information about the registered transit gateway multicast group members.</p>
1983
1983
  * @public
1984
1984
  */
1985
- RegisteredMulticastGroupMembers?: TransitGatewayMulticastRegisteredGroupMembers;
1985
+ RegisteredMulticastGroupMembers?: TransitGatewayMulticastRegisteredGroupMembers | undefined;
1986
1986
  }
1987
1987
  /**
1988
1988
  * @public
@@ -1997,7 +1997,7 @@ export interface RegisterTransitGatewayMulticastGroupSourcesRequest {
1997
1997
  * <p>The IP address assigned to the transit gateway multicast group.</p>
1998
1998
  * @public
1999
1999
  */
2000
- GroupIpAddress?: string;
2000
+ GroupIpAddress?: string | undefined;
2001
2001
  /**
2002
2002
  * <p>The group sources' network interface IDs to register with the transit gateway multicast group.</p>
2003
2003
  * @public
@@ -2009,7 +2009,7 @@ export interface RegisterTransitGatewayMulticastGroupSourcesRequest {
2009
2009
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
2010
2010
  * @public
2011
2011
  */
2012
- DryRun?: boolean;
2012
+ DryRun?: boolean | undefined;
2013
2013
  }
2014
2014
  /**
2015
2015
  * <p>Describes the members registered with the transit gateway multicast group.</p>
@@ -2020,17 +2020,17 @@ export interface TransitGatewayMulticastRegisteredGroupSources {
2020
2020
  * <p>The ID of the transit gateway multicast domain.</p>
2021
2021
  * @public
2022
2022
  */
2023
- TransitGatewayMulticastDomainId?: string;
2023
+ TransitGatewayMulticastDomainId?: string | undefined;
2024
2024
  /**
2025
2025
  * <p>The IDs of the network interfaces members registered with the transit gateway multicast group.</p>
2026
2026
  * @public
2027
2027
  */
2028
- RegisteredNetworkInterfaceIds?: string[];
2028
+ RegisteredNetworkInterfaceIds?: string[] | undefined;
2029
2029
  /**
2030
2030
  * <p>The IP address assigned to the transit gateway multicast group.</p>
2031
2031
  * @public
2032
2032
  */
2033
- GroupIpAddress?: string;
2033
+ GroupIpAddress?: string | undefined;
2034
2034
  }
2035
2035
  /**
2036
2036
  * @public
@@ -2040,7 +2040,7 @@ export interface RegisterTransitGatewayMulticastGroupSourcesResult {
2040
2040
  * <p>Information about the transit gateway multicast group sources.</p>
2041
2041
  * @public
2042
2042
  */
2043
- RegisteredMulticastGroupSources?: TransitGatewayMulticastRegisteredGroupSources;
2043
+ RegisteredMulticastGroupSources?: TransitGatewayMulticastRegisteredGroupSources | undefined;
2044
2044
  }
2045
2045
  /**
2046
2046
  * @public
@@ -2050,7 +2050,7 @@ export interface RejectCapacityReservationBillingOwnershipRequest {
2050
2050
  * <p>Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
2051
2051
  * @public
2052
2052
  */
2053
- DryRun?: boolean;
2053
+ DryRun?: boolean | undefined;
2054
2054
  /**
2055
2055
  * <p>The ID of the Capacity Reservation for which to reject the request.</p>
2056
2056
  * @public
@@ -2065,7 +2065,7 @@ export interface RejectCapacityReservationBillingOwnershipResult {
2065
2065
  * <p>Returns <code>true</code> if the request succeeds; otherwise, it returns an error.</p>
2066
2066
  * @public
2067
2067
  */
2068
- Return?: boolean;
2068
+ Return?: boolean | undefined;
2069
2069
  }
2070
2070
  /**
2071
2071
  * @public
@@ -2075,24 +2075,24 @@ export interface RejectTransitGatewayMulticastDomainAssociationsRequest {
2075
2075
  * <p>The ID of the transit gateway multicast domain.</p>
2076
2076
  * @public
2077
2077
  */
2078
- TransitGatewayMulticastDomainId?: string;
2078
+ TransitGatewayMulticastDomainId?: string | undefined;
2079
2079
  /**
2080
2080
  * <p>The ID of the transit gateway attachment.</p>
2081
2081
  * @public
2082
2082
  */
2083
- TransitGatewayAttachmentId?: string;
2083
+ TransitGatewayAttachmentId?: string | undefined;
2084
2084
  /**
2085
2085
  * <p>The IDs of the subnets to associate with the transit gateway multicast domain.</p>
2086
2086
  * @public
2087
2087
  */
2088
- SubnetIds?: string[];
2088
+ SubnetIds?: string[] | undefined;
2089
2089
  /**
2090
2090
  * <p>Checks whether you have the required permissions for the action, without actually making the request,
2091
2091
  * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
2092
2092
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
2093
2093
  * @public
2094
2094
  */
2095
- DryRun?: boolean;
2095
+ DryRun?: boolean | undefined;
2096
2096
  }
2097
2097
  /**
2098
2098
  * @public
@@ -2102,7 +2102,7 @@ export interface RejectTransitGatewayMulticastDomainAssociationsResult {
2102
2102
  * <p>Information about the multicast domain associations.</p>
2103
2103
  * @public
2104
2104
  */
2105
- Associations?: TransitGatewayMulticastDomainAssociations;
2105
+ Associations?: TransitGatewayMulticastDomainAssociations | undefined;
2106
2106
  }
2107
2107
  /**
2108
2108
  * @public
@@ -2119,7 +2119,7 @@ export interface RejectTransitGatewayPeeringAttachmentRequest {
2119
2119
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
2120
2120
  * @public
2121
2121
  */
2122
- DryRun?: boolean;
2122
+ DryRun?: boolean | undefined;
2123
2123
  }
2124
2124
  /**
2125
2125
  * @public
@@ -2129,7 +2129,7 @@ export interface RejectTransitGatewayPeeringAttachmentResult {
2129
2129
  * <p>The transit gateway peering attachment.</p>
2130
2130
  * @public
2131
2131
  */
2132
- TransitGatewayPeeringAttachment?: TransitGatewayPeeringAttachment;
2132
+ TransitGatewayPeeringAttachment?: TransitGatewayPeeringAttachment | undefined;
2133
2133
  }
2134
2134
  /**
2135
2135
  * @public
@@ -2146,7 +2146,7 @@ export interface RejectTransitGatewayVpcAttachmentRequest {
2146
2146
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
2147
2147
  * @public
2148
2148
  */
2149
- DryRun?: boolean;
2149
+ DryRun?: boolean | undefined;
2150
2150
  }
2151
2151
  /**
2152
2152
  * @public
@@ -2156,7 +2156,7 @@ export interface RejectTransitGatewayVpcAttachmentResult {
2156
2156
  * <p>Information about the attachment.</p>
2157
2157
  * @public
2158
2158
  */
2159
- TransitGatewayVpcAttachment?: TransitGatewayVpcAttachment;
2159
+ TransitGatewayVpcAttachment?: TransitGatewayVpcAttachment | undefined;
2160
2160
  }
2161
2161
  /**
2162
2162
  * @public
@@ -2168,7 +2168,7 @@ export interface RejectVpcEndpointConnectionsRequest {
2168
2168
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
2169
2169
  * @public
2170
2170
  */
2171
- DryRun?: boolean;
2171
+ DryRun?: boolean | undefined;
2172
2172
  /**
2173
2173
  * <p>The ID of the service.</p>
2174
2174
  * @public
@@ -2188,7 +2188,7 @@ export interface RejectVpcEndpointConnectionsResult {
2188
2188
  * <p>Information about the endpoints that were not rejected, if applicable.</p>
2189
2189
  * @public
2190
2190
  */
2191
- Unsuccessful?: UnsuccessfulItem[];
2191
+ Unsuccessful?: UnsuccessfulItem[] | undefined;
2192
2192
  }
2193
2193
  /**
2194
2194
  * @public
@@ -2200,7 +2200,7 @@ export interface RejectVpcPeeringConnectionRequest {
2200
2200
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
2201
2201
  * @public
2202
2202
  */
2203
- DryRun?: boolean;
2203
+ DryRun?: boolean | undefined;
2204
2204
  /**
2205
2205
  * <p>The ID of the VPC peering connection.</p>
2206
2206
  * @public
@@ -2215,7 +2215,7 @@ export interface RejectVpcPeeringConnectionResult {
2215
2215
  * <p>Returns <code>true</code> if the request succeeds; otherwise, it returns an error.</p>
2216
2216
  * @public
2217
2217
  */
2218
- Return?: boolean;
2218
+ Return?: boolean | undefined;
2219
2219
  }
2220
2220
  /**
2221
2221
  * @public
@@ -2225,26 +2225,26 @@ export interface ReleaseAddressRequest {
2225
2225
  * <p>The allocation ID. This parameter is required.</p>
2226
2226
  * @public
2227
2227
  */
2228
- AllocationId?: string;
2228
+ AllocationId?: string | undefined;
2229
2229
  /**
2230
2230
  * <p>Deprecated.</p>
2231
2231
  * @public
2232
2232
  */
2233
- PublicIp?: string;
2233
+ PublicIp?: string | undefined;
2234
2234
  /**
2235
2235
  * <p>The set of Availability Zones, Local Zones, or Wavelength Zones from which Amazon Web Services advertises
2236
2236
  * IP addresses.</p>
2237
2237
  * <p>If you provide an incorrect network border group, you receive an <code>InvalidAddress.NotFound</code> error.</p>
2238
2238
  * @public
2239
2239
  */
2240
- NetworkBorderGroup?: string;
2240
+ NetworkBorderGroup?: string | undefined;
2241
2241
  /**
2242
2242
  * <p>Checks whether you have the required permissions for the action, without actually making the request,
2243
2243
  * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
2244
2244
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
2245
2245
  * @public
2246
2246
  */
2247
- DryRun?: boolean;
2247
+ DryRun?: boolean | undefined;
2248
2248
  }
2249
2249
  /**
2250
2250
  * @public
@@ -2264,13 +2264,13 @@ export interface ReleaseHostsResult {
2264
2264
  * <p>The IDs of the Dedicated Hosts that were successfully released.</p>
2265
2265
  * @public
2266
2266
  */
2267
- Successful?: string[];
2267
+ Successful?: string[] | undefined;
2268
2268
  /**
2269
2269
  * <p>The IDs of the Dedicated Hosts that could not be released, including an error
2270
2270
  * message.</p>
2271
2271
  * @public
2272
2272
  */
2273
- Unsuccessful?: UnsuccessfulItem[];
2273
+ Unsuccessful?: UnsuccessfulItem[] | undefined;
2274
2274
  }
2275
2275
  /**
2276
2276
  * @public
@@ -2282,7 +2282,7 @@ export interface ReleaseIpamPoolAllocationRequest {
2282
2282
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
2283
2283
  * @public
2284
2284
  */
2285
- DryRun?: boolean;
2285
+ DryRun?: boolean | undefined;
2286
2286
  /**
2287
2287
  * <p>The ID of the IPAM pool which contains the allocation you want to release.</p>
2288
2288
  * @public
@@ -2307,7 +2307,7 @@ export interface ReleaseIpamPoolAllocationResult {
2307
2307
  * <p>Indicates if the release was successful.</p>
2308
2308
  * @public
2309
2309
  */
2310
- Success?: boolean;
2310
+ Success?: boolean | undefined;
2311
2311
  }
2312
2312
  /**
2313
2313
  * @public
@@ -2332,7 +2332,7 @@ export interface ReplaceIamInstanceProfileAssociationResult {
2332
2332
  * <p>Information about the IAM instance profile association.</p>
2333
2333
  * @public
2334
2334
  */
2335
- IamInstanceProfileAssociation?: IamInstanceProfileAssociation;
2335
+ IamInstanceProfileAssociation?: IamInstanceProfileAssociation | undefined;
2336
2336
  }
2337
2337
  /**
2338
2338
  * @public
@@ -2344,7 +2344,7 @@ export interface ReplaceNetworkAclAssociationRequest {
2344
2344
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
2345
2345
  * @public
2346
2346
  */
2347
- DryRun?: boolean;
2347
+ DryRun?: boolean | undefined;
2348
2348
  /**
2349
2349
  * <p>The ID of the current association between the original network ACL and the subnet.</p>
2350
2350
  * @public
@@ -2364,7 +2364,7 @@ export interface ReplaceNetworkAclAssociationResult {
2364
2364
  * <p>The ID of the new association.</p>
2365
2365
  * @public
2366
2366
  */
2367
- NewAssociationId?: string;
2367
+ NewAssociationId?: string | undefined;
2368
2368
  }
2369
2369
  /**
2370
2370
  * @public
@@ -2376,7 +2376,7 @@ export interface ReplaceNetworkAclEntryRequest {
2376
2376
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
2377
2377
  * @public
2378
2378
  */
2379
- DryRun?: boolean;
2379
+ DryRun?: boolean | undefined;
2380
2380
  /**
2381
2381
  * <p>The ID of the ACL.</p>
2382
2382
  * @public
@@ -2413,25 +2413,25 @@ export interface ReplaceNetworkAclEntryRequest {
2413
2413
  * <code>172.16.0.0/24</code>).</p>
2414
2414
  * @public
2415
2415
  */
2416
- CidrBlock?: string;
2416
+ CidrBlock?: string | undefined;
2417
2417
  /**
2418
2418
  * <p>The IPv6 network range to allow or deny, in CIDR notation (for example
2419
2419
  * <code>2001:bd8:1234:1a00::/64</code>).</p>
2420
2420
  * @public
2421
2421
  */
2422
- Ipv6CidrBlock?: string;
2422
+ Ipv6CidrBlock?: string | undefined;
2423
2423
  /**
2424
2424
  * <p>ICMP protocol: The ICMP or ICMPv6 type and code. Required if specifying protocol
2425
2425
  * 1 (ICMP) or protocol 58 (ICMPv6) with an IPv6 CIDR block.</p>
2426
2426
  * @public
2427
2427
  */
2428
- IcmpTypeCode?: IcmpTypeCode;
2428
+ IcmpTypeCode?: IcmpTypeCode | undefined;
2429
2429
  /**
2430
2430
  * <p>TCP or UDP protocols: The range of ports the rule applies to.
2431
2431
  * Required if specifying protocol 6 (TCP) or 17 (UDP).</p>
2432
2432
  * @public
2433
2433
  */
2434
- PortRange?: PortRange;
2434
+ PortRange?: PortRange | undefined;
2435
2435
  }
2436
2436
  /**
2437
2437
  * @public
@@ -2441,44 +2441,44 @@ export interface ReplaceRouteRequest {
2441
2441
  * <p>The ID of the prefix list for the route.</p>
2442
2442
  * @public
2443
2443
  */
2444
- DestinationPrefixListId?: string;
2444
+ DestinationPrefixListId?: string | undefined;
2445
2445
  /**
2446
2446
  * <p>The ID of a VPC endpoint. Supported for Gateway Load Balancer endpoints only.</p>
2447
2447
  * @public
2448
2448
  */
2449
- VpcEndpointId?: string;
2449
+ VpcEndpointId?: string | undefined;
2450
2450
  /**
2451
2451
  * <p>Specifies whether to reset the local route to its default target (<code>local</code>).</p>
2452
2452
  * @public
2453
2453
  */
2454
- LocalTarget?: boolean;
2454
+ LocalTarget?: boolean | undefined;
2455
2455
  /**
2456
2456
  * <p>The ID of a transit gateway.</p>
2457
2457
  * @public
2458
2458
  */
2459
- TransitGatewayId?: string;
2459
+ TransitGatewayId?: string | undefined;
2460
2460
  /**
2461
2461
  * <p>The ID of the local gateway.</p>
2462
2462
  * @public
2463
2463
  */
2464
- LocalGatewayId?: string;
2464
+ LocalGatewayId?: string | undefined;
2465
2465
  /**
2466
2466
  * <p>[IPv4 traffic only] The ID of a carrier gateway.</p>
2467
2467
  * @public
2468
2468
  */
2469
- CarrierGatewayId?: string;
2469
+ CarrierGatewayId?: string | undefined;
2470
2470
  /**
2471
2471
  * <p>The Amazon Resource Name (ARN) of the core network.</p>
2472
2472
  * @public
2473
2473
  */
2474
- CoreNetworkArn?: string;
2474
+ CoreNetworkArn?: string | undefined;
2475
2475
  /**
2476
2476
  * <p>Checks whether you have the required permissions for the action, without actually making the request,
2477
2477
  * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
2478
2478
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
2479
2479
  * @public
2480
2480
  */
2481
- DryRun?: boolean;
2481
+ DryRun?: boolean | undefined;
2482
2482
  /**
2483
2483
  * <p>The ID of the route table.</p>
2484
2484
  * @public
@@ -2489,43 +2489,43 @@ export interface ReplaceRouteRequest {
2489
2489
  * provide must match the CIDR of an existing route in the table.</p>
2490
2490
  * @public
2491
2491
  */
2492
- DestinationCidrBlock?: string;
2492
+ DestinationCidrBlock?: string | undefined;
2493
2493
  /**
2494
2494
  * <p>The ID of an internet gateway or virtual private gateway.</p>
2495
2495
  * @public
2496
2496
  */
2497
- GatewayId?: string;
2497
+ GatewayId?: string | undefined;
2498
2498
  /**
2499
2499
  * <p>The IPv6 CIDR address block used for the destination match. The value that you
2500
2500
  * provide must match the CIDR of an existing route in the table.</p>
2501
2501
  * @public
2502
2502
  */
2503
- DestinationIpv6CidrBlock?: string;
2503
+ DestinationIpv6CidrBlock?: string | undefined;
2504
2504
  /**
2505
2505
  * <p>[IPv6 traffic only] The ID of an egress-only internet gateway.</p>
2506
2506
  * @public
2507
2507
  */
2508
- EgressOnlyInternetGatewayId?: string;
2508
+ EgressOnlyInternetGatewayId?: string | undefined;
2509
2509
  /**
2510
2510
  * <p>The ID of a NAT instance in your VPC.</p>
2511
2511
  * @public
2512
2512
  */
2513
- InstanceId?: string;
2513
+ InstanceId?: string | undefined;
2514
2514
  /**
2515
2515
  * <p>The ID of a network interface.</p>
2516
2516
  * @public
2517
2517
  */
2518
- NetworkInterfaceId?: string;
2518
+ NetworkInterfaceId?: string | undefined;
2519
2519
  /**
2520
2520
  * <p>The ID of a VPC peering connection.</p>
2521
2521
  * @public
2522
2522
  */
2523
- VpcPeeringConnectionId?: string;
2523
+ VpcPeeringConnectionId?: string | undefined;
2524
2524
  /**
2525
2525
  * <p>[IPv4 traffic only] The ID of a NAT gateway.</p>
2526
2526
  * @public
2527
2527
  */
2528
- NatGatewayId?: string;
2528
+ NatGatewayId?: string | undefined;
2529
2529
  }
2530
2530
  /**
2531
2531
  * @public
@@ -2537,7 +2537,7 @@ export interface ReplaceRouteTableAssociationRequest {
2537
2537
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
2538
2538
  * @public
2539
2539
  */
2540
- DryRun?: boolean;
2540
+ DryRun?: boolean | undefined;
2541
2541
  /**
2542
2542
  * <p>The association ID.</p>
2543
2543
  * @public
@@ -2557,12 +2557,12 @@ export interface ReplaceRouteTableAssociationResult {
2557
2557
  * <p>The ID of the new association.</p>
2558
2558
  * @public
2559
2559
  */
2560
- NewAssociationId?: string;
2560
+ NewAssociationId?: string | undefined;
2561
2561
  /**
2562
2562
  * <p>The state of the association.</p>
2563
2563
  * @public
2564
2564
  */
2565
- AssociationState?: RouteTableAssociationState;
2565
+ AssociationState?: RouteTableAssociationState | undefined;
2566
2566
  }
2567
2567
  /**
2568
2568
  * @public
@@ -2582,19 +2582,19 @@ export interface ReplaceTransitGatewayRouteRequest {
2582
2582
  * <p>The ID of the attachment.</p>
2583
2583
  * @public
2584
2584
  */
2585
- TransitGatewayAttachmentId?: string;
2585
+ TransitGatewayAttachmentId?: string | undefined;
2586
2586
  /**
2587
2587
  * <p>Indicates whether traffic matching this route is to be dropped.</p>
2588
2588
  * @public
2589
2589
  */
2590
- Blackhole?: boolean;
2590
+ Blackhole?: boolean | undefined;
2591
2591
  /**
2592
2592
  * <p>Checks whether you have the required permissions for the action, without actually making the request,
2593
2593
  * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
2594
2594
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
2595
2595
  * @public
2596
2596
  */
2597
- DryRun?: boolean;
2597
+ DryRun?: boolean | undefined;
2598
2598
  }
2599
2599
  /**
2600
2600
  * @public
@@ -2604,7 +2604,7 @@ export interface ReplaceTransitGatewayRouteResult {
2604
2604
  * <p>Information about the modified route.</p>
2605
2605
  * @public
2606
2606
  */
2607
- Route?: TransitGatewayRoute;
2607
+ Route?: TransitGatewayRoute | undefined;
2608
2608
  }
2609
2609
  /**
2610
2610
  * @public
@@ -2624,12 +2624,12 @@ export interface ReplaceVpnTunnelRequest {
2624
2624
  * <p>Trigger pending tunnel endpoint maintenance.</p>
2625
2625
  * @public
2626
2626
  */
2627
- ApplyPendingMaintenance?: boolean;
2627
+ ApplyPendingMaintenance?: boolean | undefined;
2628
2628
  /**
2629
2629
  * <p>Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
2630
2630
  * @public
2631
2631
  */
2632
- DryRun?: boolean;
2632
+ DryRun?: boolean | undefined;
2633
2633
  }
2634
2634
  /**
2635
2635
  * @public
@@ -2639,7 +2639,7 @@ export interface ReplaceVpnTunnelResult {
2639
2639
  * <p>Confirmation of replace tunnel operation.</p>
2640
2640
  * @public
2641
2641
  */
2642
- Return?: boolean;
2642
+ Return?: boolean | undefined;
2643
2643
  }
2644
2644
  /**
2645
2645
  * @public
@@ -2682,7 +2682,7 @@ export interface ReportInstanceStatusRequest {
2682
2682
  * <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
2683
2683
  * @public
2684
2684
  */
2685
- DryRun?: boolean;
2685
+ DryRun?: boolean | undefined;
2686
2686
  /**
2687
2687
  * <p>The instances.</p>
2688
2688
  * @public
@@ -2697,12 +2697,12 @@ export interface ReportInstanceStatusRequest {
2697
2697
  * <p>The time at which the reported instance health state began.</p>
2698
2698
  * @public
2699
2699
  */
2700
- StartTime?: Date;
2700
+ StartTime?: Date | undefined;
2701
2701
  /**
2702
2702
  * <p>The time at which the reported instance health state ended.</p>
2703
2703
  * @public
2704
2704
  */
2705
- EndTime?: Date;
2705
+ EndTime?: Date | undefined;
2706
2706
  /**
2707
2707
  * <p>The reason codes that describe the health state of your instance.</p>
2708
2708
  * <ul>
@@ -2758,7 +2758,7 @@ export interface ReportInstanceStatusRequest {
2758
2758
  * <p>Descriptive text about the health state of your instance.</p>
2759
2759
  * @public
2760
2760
  */
2761
- Description?: string;
2761
+ Description?: string | undefined;
2762
2762
  }
2763
2763
  /**
2764
2764
  * <p>Contains the parameters for RequestSpotFleet.</p>
@@ -2772,7 +2772,7 @@ export interface RequestSpotFleetRequest {
2772
2772
  * <code>UnauthorizedOperation</code>.</p>
2773
2773
  * @public
2774
2774
  */
2775
- DryRun?: boolean;
2775
+ DryRun?: boolean | undefined;
2776
2776
  /**
2777
2777
  * <p>The configuration for the Spot Fleet request.</p>
2778
2778
  * @public
@@ -2788,7 +2788,7 @@ export interface RequestSpotFleetResponse {
2788
2788
  * <p>The ID of the Spot Fleet request.</p>
2789
2789
  * @public
2790
2790
  */
2791
- SpotFleetRequestId?: string;
2791
+ SpotFleetRequestId?: string | undefined;
2792
2792
  }
2793
2793
  /**
2794
2794
  * <p>Describes the launch specification for an instance.</p>
@@ -2799,88 +2799,88 @@ export interface RequestSpotLaunchSpecification {
2799
2799
  * <p>The IDs of the security groups.</p>
2800
2800
  * @public
2801
2801
  */
2802
- SecurityGroupIds?: string[];
2802
+ SecurityGroupIds?: string[] | undefined;
2803
2803
  /**
2804
2804
  * <p>Not supported.</p>
2805
2805
  * @public
2806
2806
  */
2807
- SecurityGroups?: string[];
2807
+ SecurityGroups?: string[] | undefined;
2808
2808
  /**
2809
2809
  * <p>Deprecated.</p>
2810
2810
  * @public
2811
2811
  */
2812
- AddressingType?: string;
2812
+ AddressingType?: string | undefined;
2813
2813
  /**
2814
2814
  * <p>The block device mapping entries. You can't specify both a snapshot ID and an encryption value.
2815
2815
  * This is because only blank volumes can be encrypted on creation. If a snapshot is the basis for a volume,
2816
2816
  * it is not blank and its encryption status is used for the volume encryption status.</p>
2817
2817
  * @public
2818
2818
  */
2819
- BlockDeviceMappings?: BlockDeviceMapping[];
2819
+ BlockDeviceMappings?: BlockDeviceMapping[] | undefined;
2820
2820
  /**
2821
2821
  * <p>Indicates whether the instance is optimized for EBS I/O. This optimization provides dedicated throughput to Amazon EBS and an optimized configuration stack to provide optimal EBS I/O performance. This optimization isn't available with all instance types. Additional usage charges apply when using an EBS Optimized instance.</p>
2822
2822
  * <p>Default: <code>false</code>
2823
2823
  * </p>
2824
2824
  * @public
2825
2825
  */
2826
- EbsOptimized?: boolean;
2826
+ EbsOptimized?: boolean | undefined;
2827
2827
  /**
2828
2828
  * <p>The IAM instance profile.</p>
2829
2829
  * @public
2830
2830
  */
2831
- IamInstanceProfile?: IamInstanceProfileSpecification;
2831
+ IamInstanceProfile?: IamInstanceProfileSpecification | undefined;
2832
2832
  /**
2833
2833
  * <p>The ID of the AMI.</p>
2834
2834
  * @public
2835
2835
  */
2836
- ImageId?: string;
2836
+ ImageId?: string | undefined;
2837
2837
  /**
2838
2838
  * <p>The instance type. Only one instance type can be specified.</p>
2839
2839
  * @public
2840
2840
  */
2841
- InstanceType?: _InstanceType;
2841
+ InstanceType?: _InstanceType | undefined;
2842
2842
  /**
2843
2843
  * <p>The ID of the kernel.</p>
2844
2844
  * @public
2845
2845
  */
2846
- KernelId?: string;
2846
+ KernelId?: string | undefined;
2847
2847
  /**
2848
2848
  * <p>The name of the key pair.</p>
2849
2849
  * @public
2850
2850
  */
2851
- KeyName?: string;
2851
+ KeyName?: string | undefined;
2852
2852
  /**
2853
2853
  * <p>Indicates whether basic or detailed monitoring is enabled for the instance.</p>
2854
2854
  * <p>Default: Disabled</p>
2855
2855
  * @public
2856
2856
  */
2857
- Monitoring?: RunInstancesMonitoringEnabled;
2857
+ Monitoring?: RunInstancesMonitoringEnabled | undefined;
2858
2858
  /**
2859
2859
  * <p>The network interfaces. If you specify a network interface, you must specify
2860
2860
  * subnet IDs and security group IDs using the network interface.</p>
2861
2861
  * @public
2862
2862
  */
2863
- NetworkInterfaces?: InstanceNetworkInterfaceSpecification[];
2863
+ NetworkInterfaces?: InstanceNetworkInterfaceSpecification[] | undefined;
2864
2864
  /**
2865
2865
  * <p>The placement information for the instance.</p>
2866
2866
  * @public
2867
2867
  */
2868
- Placement?: SpotPlacement;
2868
+ Placement?: SpotPlacement | undefined;
2869
2869
  /**
2870
2870
  * <p>The ID of the RAM disk.</p>
2871
2871
  * @public
2872
2872
  */
2873
- RamdiskId?: string;
2873
+ RamdiskId?: string | undefined;
2874
2874
  /**
2875
2875
  * <p>The ID of the subnet in which to launch the instance.</p>
2876
2876
  * @public
2877
2877
  */
2878
- SubnetId?: string;
2878
+ SubnetId?: string | undefined;
2879
2879
  /**
2880
2880
  * <p>The base64-encoded user data that instances use when starting up. User data is limited to 16 KB.</p>
2881
2881
  * @public
2882
2882
  */
2883
- UserData?: string;
2883
+ UserData?: string | undefined;
2884
2884
  }
2885
2885
  /**
2886
2886
  * <p>Contains the parameters for RequestSpotInstances.</p>
@@ -2891,7 +2891,7 @@ export interface RequestSpotInstancesRequest {
2891
2891
  * <p>The launch specification.</p>
2892
2892
  * @public
2893
2893
  */
2894
- LaunchSpecification?: RequestSpotLaunchSpecification;
2894
+ LaunchSpecification?: RequestSpotLaunchSpecification | undefined;
2895
2895
  /**
2896
2896
  * <p>The key-value pair for tagging the Spot Instance request on creation. The value for
2897
2897
  * <code>ResourceType</code> must be <code>spot-instances-request</code>, otherwise the
@@ -2899,12 +2899,12 @@ export interface RequestSpotInstancesRequest {
2899
2899
  * see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateTags.html">CreateTags</a>. </p>
2900
2900
  * @public
2901
2901
  */
2902
- TagSpecifications?: TagSpecification[];
2902
+ TagSpecifications?: TagSpecification[] | undefined;
2903
2903
  /**
2904
2904
  * <p>The behavior when a Spot Instance is interrupted. The default is <code>terminate</code>.</p>
2905
2905
  * @public
2906
2906
  */
2907
- InstanceInterruptionBehavior?: InstanceInterruptionBehavior;
2907
+ InstanceInterruptionBehavior?: InstanceInterruptionBehavior | undefined;
2908
2908
  /**
2909
2909
  * <p>Checks whether you have the required permissions for the action, without actually
2910
2910
  * making the request, and provides an error response. If you have the required
@@ -2912,7 +2912,7 @@ export interface RequestSpotInstancesRequest {
2912
2912
  * <code>UnauthorizedOperation</code>.</p>
2913
2913
  * @public
2914
2914
  */
2915
- DryRun?: boolean;
2915
+ DryRun?: boolean | undefined;
2916
2916
  /**
2917
2917
  * <p>The maximum price per unit hour that you are willing to pay for a Spot Instance. We do not recommend
2918
2918
  * using this parameter because it can lead to increased interruptions. If you do not specify this parameter, you will pay the current Spot price.</p>
@@ -2921,27 +2921,27 @@ export interface RequestSpotInstancesRequest {
2921
2921
  * </important>
2922
2922
  * @public
2923
2923
  */
2924
- SpotPrice?: string;
2924
+ SpotPrice?: string | undefined;
2925
2925
  /**
2926
2926
  * <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the
2927
2927
  * request. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Run_Instance_Idempotency.html">Ensuring idempotency in
2928
2928
  * Amazon EC2 API requests</a> in the <i>Amazon EC2 User Guide</i>.</p>
2929
2929
  * @public
2930
2930
  */
2931
- ClientToken?: string;
2931
+ ClientToken?: string | undefined;
2932
2932
  /**
2933
2933
  * <p>The maximum number of Spot Instances to launch.</p>
2934
2934
  * <p>Default: 1</p>
2935
2935
  * @public
2936
2936
  */
2937
- InstanceCount?: number;
2937
+ InstanceCount?: number | undefined;
2938
2938
  /**
2939
2939
  * <p>The Spot Instance request type.</p>
2940
2940
  * <p>Default: <code>one-time</code>
2941
2941
  * </p>
2942
2942
  * @public
2943
2943
  */
2944
- Type?: SpotInstanceType;
2944
+ Type?: SpotInstanceType | undefined;
2945
2945
  /**
2946
2946
  * <p>The start date of the request. If this is a one-time request, the request becomes
2947
2947
  * active at this date and time and remains active until all instances launch, the request
@@ -2951,7 +2951,7 @@ export interface RequestSpotInstancesRequest {
2951
2951
  * must specify a start date and time that occurs after the current date and time.</p>
2952
2952
  * @public
2953
2953
  */
2954
- ValidFrom?: Date;
2954
+ ValidFrom?: Date | undefined;
2955
2955
  /**
2956
2956
  * <p>The end date of the request, in UTC format
2957
2957
  * (<i>YYYY</i>-<i>MM</i>-<i>DD</i>T<i>HH</i>:<i>MM</i>:<i>SS</i>Z).</p>
@@ -2970,14 +2970,14 @@ export interface RequestSpotInstancesRequest {
2970
2970
  * </ul>
2971
2971
  * @public
2972
2972
  */
2973
- ValidUntil?: Date;
2973
+ ValidUntil?: Date | undefined;
2974
2974
  /**
2975
2975
  * <p>The instance launch group. Launch groups are Spot Instances that launch together and
2976
2976
  * terminate together.</p>
2977
2977
  * <p>Default: Instances are launched and terminated individually</p>
2978
2978
  * @public
2979
2979
  */
2980
- LaunchGroup?: string;
2980
+ LaunchGroup?: string | undefined;
2981
2981
  /**
2982
2982
  * <p>The user-specified name for a logical grouping of requests.</p>
2983
2983
  * <p>When you specify an Availability Zone group in a Spot Instance request, all Spot
@@ -2996,12 +2996,12 @@ export interface RequestSpotInstancesRequest {
2996
2996
  * <p>Default: Instances are launched in any available Availability Zone.</p>
2997
2997
  * @public
2998
2998
  */
2999
- AvailabilityZoneGroup?: string;
2999
+ AvailabilityZoneGroup?: string | undefined;
3000
3000
  /**
3001
3001
  * <p>Deprecated.</p>
3002
3002
  * @public
3003
3003
  */
3004
- BlockDurationMinutes?: number;
3004
+ BlockDurationMinutes?: number | undefined;
3005
3005
  }
3006
3006
  /**
3007
3007
  * <p>Contains the output of RequestSpotInstances.</p>
@@ -3012,7 +3012,7 @@ export interface RequestSpotInstancesResult {
3012
3012
  * <p>The Spot Instance requests.</p>
3013
3013
  * @public
3014
3014
  */
3015
- SpotInstanceRequests?: SpotInstanceRequest[];
3015
+ SpotInstanceRequests?: SpotInstanceRequest[] | undefined;
3016
3016
  }
3017
3017
  /**
3018
3018
  * @public
@@ -3034,7 +3034,7 @@ export interface ResetAddressAttributeRequest {
3034
3034
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
3035
3035
  * @public
3036
3036
  */
3037
- DryRun?: boolean;
3037
+ DryRun?: boolean | undefined;
3038
3038
  }
3039
3039
  /**
3040
3040
  * @public
@@ -3044,7 +3044,7 @@ export interface ResetAddressAttributeResult {
3044
3044
  * <p>Information about the IP address.</p>
3045
3045
  * @public
3046
3046
  */
3047
- Address?: AddressAttribute;
3047
+ Address?: AddressAttribute | undefined;
3048
3048
  }
3049
3049
  /**
3050
3050
  * @public
@@ -3056,7 +3056,7 @@ export interface ResetEbsDefaultKmsKeyIdRequest {
3056
3056
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
3057
3057
  * @public
3058
3058
  */
3059
- DryRun?: boolean;
3059
+ DryRun?: boolean | undefined;
3060
3060
  }
3061
3061
  /**
3062
3062
  * @public
@@ -3066,7 +3066,7 @@ export interface ResetEbsDefaultKmsKeyIdResult {
3066
3066
  * <p>The Amazon Resource Name (ARN) of the default KMS key for EBS encryption by default.</p>
3067
3067
  * @public
3068
3068
  */
3069
- KmsKeyId?: string;
3069
+ KmsKeyId?: string | undefined;
3070
3070
  }
3071
3071
  /**
3072
3072
  * @public
@@ -3089,7 +3089,7 @@ export interface ResetFpgaImageAttributeRequest {
3089
3089
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
3090
3090
  * @public
3091
3091
  */
3092
- DryRun?: boolean;
3092
+ DryRun?: boolean | undefined;
3093
3093
  /**
3094
3094
  * <p>The ID of the AFI.</p>
3095
3095
  * @public
@@ -3099,7 +3099,7 @@ export interface ResetFpgaImageAttributeRequest {
3099
3099
  * <p>The attribute.</p>
3100
3100
  * @public
3101
3101
  */
3102
- Attribute?: ResetFpgaImageAttributeName;
3102
+ Attribute?: ResetFpgaImageAttributeName | undefined;
3103
3103
  }
3104
3104
  /**
3105
3105
  * @public
@@ -3109,7 +3109,7 @@ export interface ResetFpgaImageAttributeResult {
3109
3109
  * <p>Is <code>true</code> if the request succeeds, and an error otherwise.</p>
3110
3110
  * @public
3111
3111
  */
3112
- Return?: boolean;
3112
+ Return?: boolean | undefined;
3113
3113
  }
3114
3114
  /**
3115
3115
  * @public
@@ -3143,7 +3143,7 @@ export interface ResetImageAttributeRequest {
3143
3143
  * <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
3144
3144
  * @public
3145
3145
  */
3146
- DryRun?: boolean;
3146
+ DryRun?: boolean | undefined;
3147
3147
  }
3148
3148
  /**
3149
3149
  * @public
@@ -3155,7 +3155,7 @@ export interface ResetInstanceAttributeRequest {
3155
3155
  * <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
3156
3156
  * @public
3157
3157
  */
3158
- DryRun?: boolean;
3158
+ DryRun?: boolean | undefined;
3159
3159
  /**
3160
3160
  * <p>The ID of the instance.</p>
3161
3161
  * @public
@@ -3182,7 +3182,7 @@ export interface ResetNetworkInterfaceAttributeRequest {
3182
3182
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
3183
3183
  * @public
3184
3184
  */
3185
- DryRun?: boolean;
3185
+ DryRun?: boolean | undefined;
3186
3186
  /**
3187
3187
  * <p>The ID of the network interface.</p>
3188
3188
  * @public
@@ -3192,7 +3192,7 @@ export interface ResetNetworkInterfaceAttributeRequest {
3192
3192
  * <p>The source/destination checking attribute. Resets the value to <code>true</code>.</p>
3193
3193
  * @public
3194
3194
  */
3195
- SourceDestCheck?: string;
3195
+ SourceDestCheck?: string | undefined;
3196
3196
  }
3197
3197
  /**
3198
3198
  * @public
@@ -3215,7 +3215,7 @@ export interface ResetSnapshotAttributeRequest {
3215
3215
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
3216
3216
  * @public
3217
3217
  */
3218
- DryRun?: boolean;
3218
+ DryRun?: boolean | undefined;
3219
3219
  }
3220
3220
  /**
3221
3221
  * @public
@@ -3227,7 +3227,7 @@ export interface RestoreAddressToClassicRequest {
3227
3227
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
3228
3228
  * @public
3229
3229
  */
3230
- DryRun?: boolean;
3230
+ DryRun?: boolean | undefined;
3231
3231
  /**
3232
3232
  * <p>The Elastic IP address.</p>
3233
3233
  * @public
@@ -3242,12 +3242,12 @@ export interface RestoreAddressToClassicResult {
3242
3242
  * <p>The Elastic IP address.</p>
3243
3243
  * @public
3244
3244
  */
3245
- PublicIp?: string;
3245
+ PublicIp?: string | undefined;
3246
3246
  /**
3247
3247
  * <p>The move status for the IP address.</p>
3248
3248
  * @public
3249
3249
  */
3250
- Status?: Status;
3250
+ Status?: Status | undefined;
3251
3251
  }
3252
3252
  /**
3253
3253
  * @public
@@ -3264,7 +3264,7 @@ export interface RestoreImageFromRecycleBinRequest {
3264
3264
  * <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
3265
3265
  * @public
3266
3266
  */
3267
- DryRun?: boolean;
3267
+ DryRun?: boolean | undefined;
3268
3268
  }
3269
3269
  /**
3270
3270
  * @public
@@ -3274,7 +3274,7 @@ export interface RestoreImageFromRecycleBinResult {
3274
3274
  * <p>Returns <code>true</code> if the request succeeds; otherwise, it returns an error.</p>
3275
3275
  * @public
3276
3276
  */
3277
- Return?: boolean;
3277
+ Return?: boolean | undefined;
3278
3278
  }
3279
3279
  /**
3280
3280
  * @public
@@ -3286,7 +3286,7 @@ export interface RestoreManagedPrefixListVersionRequest {
3286
3286
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
3287
3287
  * @public
3288
3288
  */
3289
- DryRun?: boolean;
3289
+ DryRun?: boolean | undefined;
3290
3290
  /**
3291
3291
  * <p>The ID of the prefix list.</p>
3292
3292
  * @public
@@ -3311,7 +3311,7 @@ export interface RestoreManagedPrefixListVersionResult {
3311
3311
  * <p>Information about the prefix list.</p>
3312
3312
  * @public
3313
3313
  */
3314
- PrefixList?: ManagedPrefixList;
3314
+ PrefixList?: ManagedPrefixList | undefined;
3315
3315
  }
3316
3316
  /**
3317
3317
  * @public
@@ -3328,7 +3328,7 @@ export interface RestoreSnapshotFromRecycleBinRequest {
3328
3328
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
3329
3329
  * @public
3330
3330
  */
3331
- DryRun?: boolean;
3331
+ DryRun?: boolean | undefined;
3332
3332
  }
3333
3333
  /**
3334
3334
  * @public
@@ -3338,58 +3338,58 @@ export interface RestoreSnapshotFromRecycleBinResult {
3338
3338
  * <p>The ID of the snapshot.</p>
3339
3339
  * @public
3340
3340
  */
3341
- SnapshotId?: string;
3341
+ SnapshotId?: string | undefined;
3342
3342
  /**
3343
3343
  * <p>The ARN of the Outpost on which the snapshot is stored. For more information, see <a href="https://docs.aws.amazon.com/ebs/latest/userguide/snapshots-outposts.html">Amazon EBS local snapshots on Outposts</a> in the
3344
3344
  * <i>Amazon EBS User Guide</i>.</p>
3345
3345
  * @public
3346
3346
  */
3347
- OutpostArn?: string;
3347
+ OutpostArn?: string | undefined;
3348
3348
  /**
3349
3349
  * <p>The description for the snapshot.</p>
3350
3350
  * @public
3351
3351
  */
3352
- Description?: string;
3352
+ Description?: string | undefined;
3353
3353
  /**
3354
3354
  * <p>Indicates whether the snapshot is encrypted.</p>
3355
3355
  * @public
3356
3356
  */
3357
- Encrypted?: boolean;
3357
+ Encrypted?: boolean | undefined;
3358
3358
  /**
3359
3359
  * <p>The ID of the Amazon Web Services account that owns the EBS snapshot.</p>
3360
3360
  * @public
3361
3361
  */
3362
- OwnerId?: string;
3362
+ OwnerId?: string | undefined;
3363
3363
  /**
3364
3364
  * <p>The progress of the snapshot, as a percentage.</p>
3365
3365
  * @public
3366
3366
  */
3367
- Progress?: string;
3367
+ Progress?: string | undefined;
3368
3368
  /**
3369
3369
  * <p>The time stamp when the snapshot was initiated.</p>
3370
3370
  * @public
3371
3371
  */
3372
- StartTime?: Date;
3372
+ StartTime?: Date | undefined;
3373
3373
  /**
3374
3374
  * <p>The state of the snapshot.</p>
3375
3375
  * @public
3376
3376
  */
3377
- State?: SnapshotState;
3377
+ State?: SnapshotState | undefined;
3378
3378
  /**
3379
3379
  * <p>The ID of the volume that was used to create the snapshot.</p>
3380
3380
  * @public
3381
3381
  */
3382
- VolumeId?: string;
3382
+ VolumeId?: string | undefined;
3383
3383
  /**
3384
3384
  * <p>The size of the volume, in GiB.</p>
3385
3385
  * @public
3386
3386
  */
3387
- VolumeSize?: number;
3387
+ VolumeSize?: number | undefined;
3388
3388
  /**
3389
3389
  * <p>Reserved for future use.</p>
3390
3390
  * @public
3391
3391
  */
3392
- SseType?: SSEType;
3392
+ SseType?: SSEType | undefined;
3393
3393
  }
3394
3394
  /**
3395
3395
  * @public
@@ -3409,21 +3409,21 @@ export interface RestoreSnapshotTierRequest {
3409
3409
  * <code>false</code>.</p>
3410
3410
  * @public
3411
3411
  */
3412
- TemporaryRestoreDays?: number;
3412
+ TemporaryRestoreDays?: number | undefined;
3413
3413
  /**
3414
3414
  * <p>Indicates whether to permanently restore an archived snapshot. To permanently restore
3415
3415
  * an archived snapshot, specify <code>true</code> and omit the
3416
3416
  * <b>RestoreSnapshotTierRequest$TemporaryRestoreDays</b> parameter.</p>
3417
3417
  * @public
3418
3418
  */
3419
- PermanentRestore?: boolean;
3419
+ PermanentRestore?: boolean | undefined;
3420
3420
  /**
3421
3421
  * <p>Checks whether you have the required permissions for the action, without actually making the request,
3422
3422
  * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
3423
3423
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
3424
3424
  * @public
3425
3425
  */
3426
- DryRun?: boolean;
3426
+ DryRun?: boolean | undefined;
3427
3427
  }
3428
3428
  /**
3429
3429
  * @public
@@ -3433,24 +3433,24 @@ export interface RestoreSnapshotTierResult {
3433
3433
  * <p>The ID of the snapshot.</p>
3434
3434
  * @public
3435
3435
  */
3436
- SnapshotId?: string;
3436
+ SnapshotId?: string | undefined;
3437
3437
  /**
3438
3438
  * <p>The date and time when the snapshot restore process started.</p>
3439
3439
  * @public
3440
3440
  */
3441
- RestoreStartTime?: Date;
3441
+ RestoreStartTime?: Date | undefined;
3442
3442
  /**
3443
3443
  * <p>For temporary restores only. The number of days for which the archived snapshot
3444
3444
  * is temporarily restored.</p>
3445
3445
  * @public
3446
3446
  */
3447
- RestoreDuration?: number;
3447
+ RestoreDuration?: number | undefined;
3448
3448
  /**
3449
3449
  * <p>Indicates whether the snapshot is permanently restored. <code>true</code> indicates a permanent
3450
3450
  * restore. <code>false</code> indicates a temporary restore.</p>
3451
3451
  * @public
3452
3452
  */
3453
- IsPermanentRestore?: boolean;
3453
+ IsPermanentRestore?: boolean | undefined;
3454
3454
  }
3455
3455
  /**
3456
3456
  * @public
@@ -3470,17 +3470,18 @@ export interface RevokeClientVpnIngressRequest {
3470
3470
  * <p>The ID of the Active Directory group for which to revoke access. </p>
3471
3471
  * @public
3472
3472
  */
3473
- AccessGroupId?: string;
3473
+ AccessGroupId?: string | undefined;
3474
3474
  /**
3475
- * <p>Indicates whether access should be revoked for all clients.</p>
3475
+ * <p>Indicates whether access should be revoked for all groups for a single <code>TargetNetworkCidr</code> that earlier authorized ingress for all groups using <code>AuthorizeAllGroups</code>.
3476
+ * This does not impact other authorization rules that allowed ingress to the same <code>TargetNetworkCidr</code> with a specific <code>AccessGroupId</code>.</p>
3476
3477
  * @public
3477
3478
  */
3478
- RevokeAllGroups?: boolean;
3479
+ RevokeAllGroups?: boolean | undefined;
3479
3480
  /**
3480
3481
  * <p>Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
3481
3482
  * @public
3482
3483
  */
3483
- DryRun?: boolean;
3484
+ DryRun?: boolean | undefined;
3484
3485
  }
3485
3486
  /**
3486
3487
  * @public
@@ -3490,7 +3491,7 @@ export interface RevokeClientVpnIngressResult {
3490
3491
  * <p>The current state of the authorization rule.</p>
3491
3492
  * @public
3492
3493
  */
3493
- Status?: ClientVpnAuthorizationRuleStatus;
3494
+ Status?: ClientVpnAuthorizationRuleStatus | undefined;
3494
3495
  }
3495
3496
  /**
3496
3497
  * @public
@@ -3500,14 +3501,14 @@ export interface RevokeSecurityGroupEgressRequest {
3500
3501
  * <p>The IDs of the security group rules.</p>
3501
3502
  * @public
3502
3503
  */
3503
- SecurityGroupRuleIds?: string[];
3504
+ SecurityGroupRuleIds?: string[] | undefined;
3504
3505
  /**
3505
3506
  * <p>Checks whether you have the required permissions for the action, without actually making the request,
3506
3507
  * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
3507
3508
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
3508
3509
  * @public
3509
3510
  */
3510
- DryRun?: boolean;
3511
+ DryRun?: boolean | undefined;
3511
3512
  /**
3512
3513
  * <p>The ID of the security group.</p>
3513
3514
  * @public
@@ -3518,39 +3519,39 @@ export interface RevokeSecurityGroupEgressRequest {
3518
3519
  * destination security group.</p>
3519
3520
  * @public
3520
3521
  */
3521
- SourceSecurityGroupName?: string;
3522
+ SourceSecurityGroupName?: string | undefined;
3522
3523
  /**
3523
3524
  * <p>Not supported. Use a set of IP permissions to specify a destination security
3524
3525
  * group.</p>
3525
3526
  * @public
3526
3527
  */
3527
- SourceSecurityGroupOwnerId?: string;
3528
+ SourceSecurityGroupOwnerId?: string | undefined;
3528
3529
  /**
3529
3530
  * <p>Not supported. Use a set of IP permissions to specify the protocol name or
3530
3531
  * number.</p>
3531
3532
  * @public
3532
3533
  */
3533
- IpProtocol?: string;
3534
+ IpProtocol?: string | undefined;
3534
3535
  /**
3535
3536
  * <p>Not supported. Use a set of IP permissions to specify the port.</p>
3536
3537
  * @public
3537
3538
  */
3538
- FromPort?: number;
3539
+ FromPort?: number | undefined;
3539
3540
  /**
3540
3541
  * <p>Not supported. Use a set of IP permissions to specify the port.</p>
3541
3542
  * @public
3542
3543
  */
3543
- ToPort?: number;
3544
+ ToPort?: number | undefined;
3544
3545
  /**
3545
3546
  * <p>Not supported. Use a set of IP permissions to specify the CIDR.</p>
3546
3547
  * @public
3547
3548
  */
3548
- CidrIp?: string;
3549
+ CidrIp?: string | undefined;
3549
3550
  /**
3550
3551
  * <p>The sets of IP permissions. You can't specify a destination security group and a CIDR IP address range in the same set of permissions.</p>
3551
3552
  * @public
3552
3553
  */
3553
- IpPermissions?: IpPermission[];
3554
+ IpPermissions?: IpPermission[] | undefined;
3554
3555
  }
3555
3556
  /**
3556
3557
  * <p>A security group rule removed with <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RevokeSecurityGroupEgress.html">RevokeSecurityGroupEgress</a> or <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RevokeSecurityGroupIngress.html">RevokeSecurityGroupIngress</a>.</p>
@@ -3561,57 +3562,57 @@ export interface RevokedSecurityGroupRule {
3561
3562
  * <p>A security group rule ID.</p>
3562
3563
  * @public
3563
3564
  */
3564
- SecurityGroupRuleId?: string;
3565
+ SecurityGroupRuleId?: string | undefined;
3565
3566
  /**
3566
3567
  * <p>A security group ID.</p>
3567
3568
  * @public
3568
3569
  */
3569
- GroupId?: string;
3570
+ GroupId?: string | undefined;
3570
3571
  /**
3571
3572
  * <p>Defines if a security group rule is an outbound rule.</p>
3572
3573
  * @public
3573
3574
  */
3574
- IsEgress?: boolean;
3575
+ IsEgress?: boolean | undefined;
3575
3576
  /**
3576
3577
  * <p>The security group rule's protocol.</p>
3577
3578
  * @public
3578
3579
  */
3579
- IpProtocol?: string;
3580
+ IpProtocol?: string | undefined;
3580
3581
  /**
3581
3582
  * <p>The 'from' port number of the security group rule.</p>
3582
3583
  * @public
3583
3584
  */
3584
- FromPort?: number;
3585
+ FromPort?: number | undefined;
3585
3586
  /**
3586
3587
  * <p>The 'to' port number of the security group rule.</p>
3587
3588
  * @public
3588
3589
  */
3589
- ToPort?: number;
3590
+ ToPort?: number | undefined;
3590
3591
  /**
3591
3592
  * <p>The IPv4 CIDR of the traffic source.</p>
3592
3593
  * @public
3593
3594
  */
3594
- CidrIpv4?: string;
3595
+ CidrIpv4?: string | undefined;
3595
3596
  /**
3596
3597
  * <p>The IPv6 CIDR of the traffic source.</p>
3597
3598
  * @public
3598
3599
  */
3599
- CidrIpv6?: string;
3600
+ CidrIpv6?: string | undefined;
3600
3601
  /**
3601
3602
  * <p>The ID of a prefix list that's the traffic source.</p>
3602
3603
  * @public
3603
3604
  */
3604
- PrefixListId?: string;
3605
+ PrefixListId?: string | undefined;
3605
3606
  /**
3606
3607
  * <p>The ID of a referenced security group.</p>
3607
3608
  * @public
3608
3609
  */
3609
- ReferencedGroupId?: string;
3610
+ ReferencedGroupId?: string | undefined;
3610
3611
  /**
3611
3612
  * <p>A description of the revoked security group rule.</p>
3612
3613
  * @public
3613
3614
  */
3614
- Description?: string;
3615
+ Description?: string | undefined;
3615
3616
  }
3616
3617
  /**
3617
3618
  * @public
@@ -3621,19 +3622,19 @@ export interface RevokeSecurityGroupEgressResult {
3621
3622
  * <p>Returns <code>true</code> if the request succeeds; otherwise, returns an error.</p>
3622
3623
  * @public
3623
3624
  */
3624
- Return?: boolean;
3625
+ Return?: boolean | undefined;
3625
3626
  /**
3626
3627
  * <p>The outbound rules that were unknown to the service. In some cases,
3627
3628
  * <code>unknownIpPermissionSet</code> might be in a different format from the request
3628
3629
  * parameter. </p>
3629
3630
  * @public
3630
3631
  */
3631
- UnknownIpPermissions?: IpPermission[];
3632
+ UnknownIpPermissions?: IpPermission[] | undefined;
3632
3633
  /**
3633
3634
  * <p>Details about the revoked security group rules.</p>
3634
3635
  * @public
3635
3636
  */
3636
- RevokedSecurityGroupRules?: RevokedSecurityGroupRule[];
3637
+ RevokedSecurityGroupRules?: RevokedSecurityGroupRule[] | undefined;
3637
3638
  }
3638
3639
  /**
3639
3640
  * @public
@@ -3643,37 +3644,37 @@ export interface RevokeSecurityGroupIngressRequest {
3643
3644
  * <p>The CIDR IP address range. You can't specify this parameter when specifying a source security group.</p>
3644
3645
  * @public
3645
3646
  */
3646
- CidrIp?: string;
3647
+ CidrIp?: string | undefined;
3647
3648
  /**
3648
3649
  * <p>If the protocol is TCP or UDP, this is the start of the port range.
3649
3650
  * If the protocol is ICMP, this is the ICMP type or -1 (all ICMP types).</p>
3650
3651
  * @public
3651
3652
  */
3652
- FromPort?: number;
3653
+ FromPort?: number | undefined;
3653
3654
  /**
3654
3655
  * <p>The ID of the security group.</p>
3655
3656
  * @public
3656
3657
  */
3657
- GroupId?: string;
3658
+ GroupId?: string | undefined;
3658
3659
  /**
3659
3660
  * <p>[Default VPC] The name of the security group. You must specify either the
3660
3661
  * security group ID or the security group name in the request. For security groups in a
3661
3662
  * nondefault VPC, you must specify the security group ID.</p>
3662
3663
  * @public
3663
3664
  */
3664
- GroupName?: string;
3665
+ GroupName?: string | undefined;
3665
3666
  /**
3666
3667
  * <p>The sets of IP permissions. You can't specify a source security group and a CIDR IP address range in the same set of permissions.</p>
3667
3668
  * @public
3668
3669
  */
3669
- IpPermissions?: IpPermission[];
3670
+ IpPermissions?: IpPermission[] | undefined;
3670
3671
  /**
3671
3672
  * <p>The IP protocol name (<code>tcp</code>, <code>udp</code>, <code>icmp</code>) or number
3672
3673
  * (see <a href="http://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml">Protocol Numbers</a>).
3673
3674
  * Use <code>-1</code> to specify all.</p>
3674
3675
  * @public
3675
3676
  */
3676
- IpProtocol?: string;
3677
+ IpProtocol?: string | undefined;
3677
3678
  /**
3678
3679
  * <p>[Default VPC] The name of the source security group. You can't specify this parameter
3679
3680
  * in combination with the following parameters: the CIDR IP address range, the start of the port range,
@@ -3681,30 +3682,30 @@ export interface RevokeSecurityGroupIngressRequest {
3681
3682
  * To revoke a specific rule for an IP protocol and port range, use a set of IP permissions instead.</p>
3682
3683
  * @public
3683
3684
  */
3684
- SourceSecurityGroupName?: string;
3685
+ SourceSecurityGroupName?: string | undefined;
3685
3686
  /**
3686
3687
  * <p>Not supported.</p>
3687
3688
  * @public
3688
3689
  */
3689
- SourceSecurityGroupOwnerId?: string;
3690
+ SourceSecurityGroupOwnerId?: string | undefined;
3690
3691
  /**
3691
3692
  * <p>If the protocol is TCP or UDP, this is the end of the port range.
3692
3693
  * If the protocol is ICMP, this is the ICMP code or -1 (all ICMP codes).</p>
3693
3694
  * @public
3694
3695
  */
3695
- ToPort?: number;
3696
+ ToPort?: number | undefined;
3696
3697
  /**
3697
3698
  * <p>The IDs of the security group rules.</p>
3698
3699
  * @public
3699
3700
  */
3700
- SecurityGroupRuleIds?: string[];
3701
+ SecurityGroupRuleIds?: string[] | undefined;
3701
3702
  /**
3702
3703
  * <p>Checks whether you have the required permissions for the action, without actually making the request,
3703
3704
  * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
3704
3705
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
3705
3706
  * @public
3706
3707
  */
3707
- DryRun?: boolean;
3708
+ DryRun?: boolean | undefined;
3708
3709
  }
3709
3710
  /**
3710
3711
  * @public
@@ -3714,19 +3715,19 @@ export interface RevokeSecurityGroupIngressResult {
3714
3715
  * <p>Returns <code>true</code> if the request succeeds; otherwise, returns an error.</p>
3715
3716
  * @public
3716
3717
  */
3717
- Return?: boolean;
3718
+ Return?: boolean | undefined;
3718
3719
  /**
3719
3720
  * <p>The inbound rules that were unknown to the service. In some cases,
3720
3721
  * <code>unknownIpPermissionSet</code> might be in a different format from the request
3721
3722
  * parameter. </p>
3722
3723
  * @public
3723
3724
  */
3724
- UnknownIpPermissions?: IpPermission[];
3725
+ UnknownIpPermissions?: IpPermission[] | undefined;
3725
3726
  /**
3726
3727
  * <p>Details about the revoked security group rules.</p>
3727
3728
  * @public
3728
3729
  */
3729
- RevokedSecurityGroupRules?: RevokedSecurityGroupRule[];
3730
+ RevokedSecurityGroupRules?: RevokedSecurityGroupRule[] | undefined;
3730
3731
  }
3731
3732
  /**
3732
3733
  * <p>The CPU options for the instance. Both the core count and threads per core must be
@@ -3738,21 +3739,21 @@ export interface CpuOptionsRequest {
3738
3739
  * <p>The number of CPU cores for the instance.</p>
3739
3740
  * @public
3740
3741
  */
3741
- CoreCount?: number;
3742
+ CoreCount?: number | undefined;
3742
3743
  /**
3743
3744
  * <p>The number of threads per CPU core. To disable multithreading for the instance,
3744
3745
  * specify a value of <code>1</code>. Otherwise, specify the default value of
3745
3746
  * <code>2</code>.</p>
3746
3747
  * @public
3747
3748
  */
3748
- ThreadsPerCore?: number;
3749
+ ThreadsPerCore?: number | undefined;
3749
3750
  /**
3750
3751
  * <p>Indicates whether to enable the instance for AMD SEV-SNP. AMD SEV-SNP is supported
3751
3752
  * with M6a, R6a, and C6a instance types only. For more information, see
3752
3753
  * <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/sev-snp.html">AMD SEV-SNP</a>.</p>
3753
3754
  * @public
3754
3755
  */
3755
- AmdSevSnp?: AmdSevSnpSpecification;
3756
+ AmdSevSnp?: AmdSevSnpSpecification | undefined;
3756
3757
  }
3757
3758
  /**
3758
3759
  * <note>
@@ -3778,7 +3779,7 @@ export interface ElasticInferenceAccelerator {
3778
3779
  * <p>Default: 1</p>
3779
3780
  * @public
3780
3781
  */
3781
- Count?: number;
3782
+ Count?: number | undefined;
3782
3783
  }
3783
3784
  /**
3784
3785
  * <p>Indicates whether the instance is enabled for Amazon Web Services Nitro Enclaves. For
@@ -3793,7 +3794,7 @@ export interface EnclaveOptionsRequest {
3793
3794
  * <code>true</code>.</p>
3794
3795
  * @public
3795
3796
  */
3796
- Enabled?: boolean;
3797
+ Enabled?: boolean | undefined;
3797
3798
  }
3798
3799
  /**
3799
3800
  * <p>Indicates whether your instance is configured for hibernation. This parameter is valid
@@ -3824,7 +3825,7 @@ export interface HibernationOptionsRequest {
3824
3825
  * </p>
3825
3826
  * @public
3826
3827
  */
3827
- Configured?: boolean;
3828
+ Configured?: boolean | undefined;
3828
3829
  }
3829
3830
  /**
3830
3831
  * <p>The options for Spot Instances.</p>
@@ -3841,19 +3842,19 @@ export interface SpotMarketOptions {
3841
3842
  * </important>
3842
3843
  * @public
3843
3844
  */
3844
- MaxPrice?: string;
3845
+ MaxPrice?: string | undefined;
3845
3846
  /**
3846
3847
  * <p>The Spot Instance request type. For <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RunInstances">RunInstances</a>, persistent
3847
3848
  * Spot Instance requests are only supported when the instance interruption behavior is
3848
3849
  * either <code>hibernate</code> or <code>stop</code>.</p>
3849
3850
  * @public
3850
3851
  */
3851
- SpotInstanceType?: SpotInstanceType;
3852
+ SpotInstanceType?: SpotInstanceType | undefined;
3852
3853
  /**
3853
3854
  * <p>Deprecated.</p>
3854
3855
  * @public
3855
3856
  */
3856
- BlockDurationMinutes?: number;
3857
+ BlockDurationMinutes?: number | undefined;
3857
3858
  /**
3858
3859
  * <p>The end date of the request, in UTC format
3859
3860
  * (<i>YYYY</i>-<i>MM</i>-<i>DD</i>T<i>HH</i>:<i>MM</i>:<i>SS</i>Z).
@@ -3871,7 +3872,7 @@ export interface SpotMarketOptions {
3871
3872
  * </ul>
3872
3873
  * @public
3873
3874
  */
3874
- ValidUntil?: Date;
3875
+ ValidUntil?: Date | undefined;
3875
3876
  /**
3876
3877
  * <p>The behavior when a Spot Instance is interrupted.</p>
3877
3878
  * <p>If <code>Configured</code> (for <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_HibernationOptionsRequest.html">
@@ -3890,7 +3891,7 @@ export interface SpotMarketOptions {
3890
3891
  * behavior</a> in the <i>Amazon EC2 User Guide</i>.</p>
3891
3892
  * @public
3892
3893
  */
3893
- InstanceInterruptionBehavior?: InstanceInterruptionBehavior;
3894
+ InstanceInterruptionBehavior?: InstanceInterruptionBehavior | undefined;
3894
3895
  }
3895
3896
  /**
3896
3897
  * <p>Describes the market (purchasing) option for the instances.</p>
@@ -3901,12 +3902,12 @@ export interface InstanceMarketOptionsRequest {
3901
3902
  * <p>The market type.</p>
3902
3903
  * @public
3903
3904
  */
3904
- MarketType?: MarketType;
3905
+ MarketType?: MarketType | undefined;
3905
3906
  /**
3906
3907
  * <p>The options for Spot Instances.</p>
3907
3908
  * @public
3908
3909
  */
3909
- SpotOptions?: SpotMarketOptions;
3910
+ SpotOptions?: SpotMarketOptions | undefined;
3910
3911
  }
3911
3912
  /**
3912
3913
  * <p>Describes the launch template to use.</p>
@@ -3919,14 +3920,14 @@ export interface LaunchTemplateSpecification {
3919
3920
  * launch template name, but not both.</p>
3920
3921
  * @public
3921
3922
  */
3922
- LaunchTemplateId?: string;
3923
+ LaunchTemplateId?: string | undefined;
3923
3924
  /**
3924
3925
  * <p>The name of the launch template.</p>
3925
3926
  * <p>You must specify either the launch template ID or the
3926
3927
  * launch template name, but not both.</p>
3927
3928
  * @public
3928
3929
  */
3929
- LaunchTemplateName?: string;
3930
+ LaunchTemplateName?: string | undefined;
3930
3931
  /**
3931
3932
  * <p>The launch template version number, <code>$Latest</code>, or
3932
3933
  * <code>$Default</code>.</p>
@@ -3935,7 +3936,7 @@ export interface LaunchTemplateSpecification {
3935
3936
  * <p>Default: The default version of the launch template.</p>
3936
3937
  * @public
3937
3938
  */
3938
- Version?: string;
3939
+ Version?: string | undefined;
3939
3940
  }
3940
3941
  /**
3941
3942
  * <p>Describes a license configuration.</p>
@@ -3946,7 +3947,7 @@ export interface LicenseConfigurationRequest {
3946
3947
  * <p>The Amazon Resource Name (ARN) of the license configuration.</p>
3947
3948
  * @public
3948
3949
  */
3949
- LicenseConfigurationArn?: string;
3950
+ LicenseConfigurationArn?: string | undefined;
3950
3951
  }
3951
3952
  /**
3952
3953
  * <p>The maintenance options for the instance.</p>
@@ -3958,7 +3959,7 @@ export interface InstanceMaintenanceOptionsRequest {
3958
3959
  * more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-recover.html#instance-configuration-recovery">Simplified automatic recovery</a>.</p>
3959
3960
  * @public
3960
3961
  */
3961
- AutoRecovery?: InstanceAutoRecoveryState;
3962
+ AutoRecovery?: InstanceAutoRecoveryState | undefined;
3962
3963
  }
3963
3964
  /**
3964
3965
  * <p>The metadata options for the instance.</p>
@@ -3997,13 +3998,13 @@ export interface InstanceMetadataOptionsRequest {
3997
3998
  * <i>Amazon EC2 User Guide</i>.</p>
3998
3999
  * @public
3999
4000
  */
4000
- HttpTokens?: HttpTokensState;
4001
+ HttpTokens?: HttpTokensState | undefined;
4001
4002
  /**
4002
4003
  * <p>The maximum number of hops that the metadata token can travel.</p>
4003
4004
  * <p>Possible values: Integers from 1 to 64</p>
4004
4005
  * @public
4005
4006
  */
4006
- HttpPutResponseHopLimit?: number;
4007
+ HttpPutResponseHopLimit?: number | undefined;
4007
4008
  /**
4008
4009
  * <p>Enables or disables the HTTP metadata endpoint on your instances.</p>
4009
4010
  * <p>If you specify a value of <code>disabled</code>, you cannot access your instance
@@ -4012,14 +4013,14 @@ export interface InstanceMetadataOptionsRequest {
4012
4013
  * </p>
4013
4014
  * @public
4014
4015
  */
4015
- HttpEndpoint?: InstanceMetadataEndpointState;
4016
+ HttpEndpoint?: InstanceMetadataEndpointState | undefined;
4016
4017
  /**
4017
4018
  * <p>Enables or disables the IPv6 endpoint for the instance metadata service.</p>
4018
4019
  * <p>Default: <code>disabled</code>
4019
4020
  * </p>
4020
4021
  * @public
4021
4022
  */
4022
- HttpProtocolIpv6?: InstanceMetadataProtocolState;
4023
+ HttpProtocolIpv6?: InstanceMetadataProtocolState | undefined;
4023
4024
  /**
4024
4025
  * <p>Set to <code>enabled</code> to allow access to instance tags from the instance
4025
4026
  * metadata. Set to <code>disabled</code> to turn off access to instance tags from the
@@ -4029,7 +4030,7 @@ export interface InstanceMetadataOptionsRequest {
4029
4030
  * </p>
4030
4031
  * @public
4031
4032
  */
4032
- InstanceMetadataTags?: InstanceMetadataTagsState;
4033
+ InstanceMetadataTags?: InstanceMetadataTagsState | undefined;
4033
4034
  }
4034
4035
  /**
4035
4036
  * <p>Describes the options for instance hostnames.</p>
@@ -4043,19 +4044,19 @@ export interface PrivateDnsNameOptionsRequest {
4043
4044
  * names use the instance IPv4 address or the instance ID.</p>
4044
4045
  * @public
4045
4046
  */
4046
- HostnameType?: HostnameType;
4047
+ HostnameType?: HostnameType | undefined;
4047
4048
  /**
4048
4049
  * <p>Indicates whether to respond to DNS queries for instance hostnames with DNS A
4049
4050
  * records.</p>
4050
4051
  * @public
4051
4052
  */
4052
- EnableResourceNameDnsARecord?: boolean;
4053
+ EnableResourceNameDnsARecord?: boolean | undefined;
4053
4054
  /**
4054
4055
  * <p>Indicates whether to respond to DNS queries for instance hostnames with DNS AAAA
4055
4056
  * records.</p>
4056
4057
  * @public
4057
4058
  */
4058
- EnableResourceNameDnsAAAARecord?: boolean;
4059
+ EnableResourceNameDnsAAAARecord?: boolean | undefined;
4059
4060
  }
4060
4061
  /**
4061
4062
  * @public
@@ -4067,19 +4068,19 @@ export interface RunInstancesRequest {
4067
4068
  * mappings</a> in the <i>Amazon EC2 User Guide</i>.</p>
4068
4069
  * @public
4069
4070
  */
4070
- BlockDeviceMappings?: BlockDeviceMapping[];
4071
+ BlockDeviceMappings?: BlockDeviceMapping[] | undefined;
4071
4072
  /**
4072
4073
  * <p>The ID of the AMI. An AMI ID is required to launch an instance and must be specified
4073
4074
  * here or in a launch template.</p>
4074
4075
  * @public
4075
4076
  */
4076
- ImageId?: string;
4077
+ ImageId?: string | undefined;
4077
4078
  /**
4078
4079
  * <p>The instance type. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html">Amazon EC2 instance
4079
4080
  * types</a> in the <i>Amazon EC2 User Guide</i>.</p>
4080
4081
  * @public
4081
4082
  */
4082
- InstanceType?: _InstanceType;
4083
+ InstanceType?: _InstanceType | undefined;
4083
4084
  /**
4084
4085
  * <p>The number of IPv6 addresses to associate with the primary network
4085
4086
  * interface. Amazon EC2 chooses the IPv6 addresses from the range of your subnet. You
@@ -4090,7 +4091,7 @@ export interface RunInstancesRequest {
4090
4091
  * request.</p>
4091
4092
  * @public
4092
4093
  */
4093
- Ipv6AddressCount?: number;
4094
+ Ipv6AddressCount?: number | undefined;
4094
4095
  /**
4095
4096
  * <p>The IPv6 addresses from the range of the subnet to associate with the
4096
4097
  * primary network interface. You cannot specify this option and the option to assign a
@@ -4100,7 +4101,7 @@ export interface RunInstancesRequest {
4100
4101
  * request.</p>
4101
4102
  * @public
4102
4103
  */
4103
- Ipv6Addresses?: InstanceIpv6Address[];
4104
+ Ipv6Addresses?: InstanceIpv6Address[] | undefined;
4104
4105
  /**
4105
4106
  * <p>The ID of the kernel.</p>
4106
4107
  * <important>
@@ -4110,7 +4111,7 @@ export interface RunInstancesRequest {
4110
4111
  * </important>
4111
4112
  * @public
4112
4113
  */
4113
- KernelId?: string;
4114
+ KernelId?: string | undefined;
4114
4115
  /**
4115
4116
  * <p>The name of the key pair. You can create a key pair using <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateKeyPair.html">CreateKeyPair</a> or
4116
4117
  * <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_ImportKeyPair.html">ImportKeyPair</a>.</p>
@@ -4120,7 +4121,7 @@ export interface RunInstancesRequest {
4120
4121
  * </important>
4121
4122
  * @public
4122
4123
  */
4123
- KeyName?: string;
4124
+ KeyName?: string | undefined;
4124
4125
  /**
4125
4126
  * <p>The maximum number of instances to launch. If you specify a value that is more
4126
4127
  * capacity than Amazon EC2 can launch in the target Availability Zone, Amazon EC2
@@ -4144,12 +4145,12 @@ export interface RunInstancesRequest {
4144
4145
  * <p>Specifies whether detailed monitoring is enabled for the instance.</p>
4145
4146
  * @public
4146
4147
  */
4147
- Monitoring?: RunInstancesMonitoringEnabled;
4148
+ Monitoring?: RunInstancesMonitoringEnabled | undefined;
4148
4149
  /**
4149
4150
  * <p>The placement for the instance.</p>
4150
4151
  * @public
4151
4152
  */
4152
- Placement?: Placement;
4153
+ Placement?: Placement | undefined;
4153
4154
  /**
4154
4155
  * <p>The ID of the RAM disk to select. Some kernels require additional drivers at launch.
4155
4156
  * Check the kernel requirements for information about whether you need to specify a RAM
@@ -4162,14 +4163,14 @@ export interface RunInstancesRequest {
4162
4163
  * </important>
4163
4164
  * @public
4164
4165
  */
4165
- RamdiskId?: string;
4166
+ RamdiskId?: string | undefined;
4166
4167
  /**
4167
4168
  * <p>The IDs of the security groups. You can create a security group using <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateSecurityGroup.html">CreateSecurityGroup</a>.</p>
4168
4169
  * <p>If you specify a network interface, you must specify any security groups as part of
4169
4170
  * the network interface instead of using this parameter.</p>
4170
4171
  * @public
4171
4172
  */
4172
- SecurityGroupIds?: string[];
4173
+ SecurityGroupIds?: string[] | undefined;
4173
4174
  /**
4174
4175
  * <p>[Default VPC] The names of the security groups.</p>
4175
4176
  * <p>If you specify a network interface, you must specify any security groups as part of
@@ -4177,21 +4178,21 @@ export interface RunInstancesRequest {
4177
4178
  * <p>Default: Amazon EC2 uses the default security group.</p>
4178
4179
  * @public
4179
4180
  */
4180
- SecurityGroups?: string[];
4181
+ SecurityGroups?: string[] | undefined;
4181
4182
  /**
4182
4183
  * <p>The ID of the subnet to launch the instance into.</p>
4183
4184
  * <p>If you specify a network interface, you must specify any subnets as part of the
4184
4185
  * network interface instead of using this parameter.</p>
4185
4186
  * @public
4186
4187
  */
4187
- SubnetId?: string;
4188
+ SubnetId?: string | undefined;
4188
4189
  /**
4189
4190
  * <p>The user data to make available to the instance. User data must be base64-encoded.
4190
4191
  * Depending on the tool or SDK that you're using, the base64-encoding might be performed for you.
4191
4192
  * For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instancedata-add-user-data.html">Work with instance user data</a>.</p>
4192
4193
  * @public
4193
4194
  */
4194
- UserData?: string;
4195
+ UserData?: string | undefined;
4195
4196
  /**
4196
4197
  * <p>An elastic GPU to associate with the instance.</p>
4197
4198
  * <note>
@@ -4199,7 +4200,7 @@ export interface RunInstancesRequest {
4199
4200
  * </note>
4200
4201
  * @public
4201
4202
  */
4202
- ElasticGpuSpecification?: ElasticGpuSpecification[];
4203
+ ElasticGpuSpecification?: ElasticGpuSpecification[] | undefined;
4203
4204
  /**
4204
4205
  * <p>An elastic inference accelerator to associate with the instance.</p>
4205
4206
  * <note>
@@ -4207,7 +4208,7 @@ export interface RunInstancesRequest {
4207
4208
  * </note>
4208
4209
  * @public
4209
4210
  */
4210
- ElasticInferenceAccelerators?: ElasticInferenceAccelerator[];
4211
+ ElasticInferenceAccelerators?: ElasticInferenceAccelerator[] | undefined;
4211
4212
  /**
4212
4213
  * <p>The tags to apply to the resources that are created during instance launch.</p>
4213
4214
  * <p>You can specify tags for the following resources only:</p>
@@ -4228,13 +4229,13 @@ export interface RunInstancesRequest {
4228
4229
  * <p>To tag a resource after it has been created, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateTags.html">CreateTags</a>.</p>
4229
4230
  * @public
4230
4231
  */
4231
- TagSpecifications?: TagSpecification[];
4232
+ TagSpecifications?: TagSpecification[] | undefined;
4232
4233
  /**
4233
4234
  * <p>The launch template. Any additional parameters that you specify for the new instance
4234
4235
  * overwrite the corresponding parameters included in the launch template.</p>
4235
4236
  * @public
4236
4237
  */
4237
- LaunchTemplate?: LaunchTemplateSpecification;
4238
+ LaunchTemplate?: LaunchTemplateSpecification | undefined;
4238
4239
  /**
4239
4240
  * <p>The market (purchasing) option for the instances.</p>
4240
4241
  * <p>For <a>RunInstances</a>, persistent Spot Instance requests are
@@ -4242,7 +4243,7 @@ export interface RunInstancesRequest {
4242
4243
  * to either <code>hibernate</code> or <code>stop</code>.</p>
4243
4244
  * @public
4244
4245
  */
4245
- InstanceMarketOptions?: InstanceMarketOptionsRequest;
4246
+ InstanceMarketOptions?: InstanceMarketOptionsRequest | undefined;
4246
4247
  /**
4247
4248
  * <p>The credit option for CPU usage of the burstable performance instance. Valid values
4248
4249
  * are <code>standard</code> and <code>unlimited</code>. To change this attribute after
@@ -4255,12 +4256,12 @@ export interface RunInstancesRequest {
4255
4256
  * supported.</p>
4256
4257
  * @public
4257
4258
  */
4258
- CreditSpecification?: CreditSpecificationRequest;
4259
+ CreditSpecification?: CreditSpecificationRequest | undefined;
4259
4260
  /**
4260
4261
  * <p>The CPU options for the instance. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-optimize-cpu.html">Optimize CPU options</a> in the <i>Amazon EC2 User Guide</i>.</p>
4261
4262
  * @public
4262
4263
  */
4263
- CpuOptions?: CpuOptionsRequest;
4264
+ CpuOptions?: CpuOptionsRequest | undefined;
4264
4265
  /**
4265
4266
  * <p>Information about the Capacity Reservation targeting option. If you do not specify this parameter, the
4266
4267
  * instance's Capacity Reservation preference defaults to <code>open</code>, which enables
@@ -4268,7 +4269,7 @@ export interface RunInstancesRequest {
4268
4269
  * platform, Availability Zone).</p>
4269
4270
  * @public
4270
4271
  */
4271
- CapacityReservationSpecification?: CapacityReservationSpecification;
4272
+ CapacityReservationSpecification?: CapacityReservationSpecification | undefined;
4272
4273
  /**
4273
4274
  * <p>Indicates whether an instance is enabled for hibernation. This parameter is valid only
4274
4275
  * if the instance meets the <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/hibernating-prerequisites.html">hibernation
@@ -4278,17 +4279,17 @@ export interface RunInstancesRequest {
4278
4279
  * instance.</p>
4279
4280
  * @public
4280
4281
  */
4281
- HibernationOptions?: HibernationOptionsRequest;
4282
+ HibernationOptions?: HibernationOptionsRequest | undefined;
4282
4283
  /**
4283
4284
  * <p>The license configurations.</p>
4284
4285
  * @public
4285
4286
  */
4286
- LicenseSpecifications?: LicenseConfigurationRequest[];
4287
+ LicenseSpecifications?: LicenseConfigurationRequest[] | undefined;
4287
4288
  /**
4288
4289
  * <p>The metadata options for the instance. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-metadata.html">Instance metadata and user data</a>.</p>
4289
4290
  * @public
4290
4291
  */
4291
- MetadataOptions?: InstanceMetadataOptionsRequest;
4292
+ MetadataOptions?: InstanceMetadataOptionsRequest | undefined;
4292
4293
  /**
4293
4294
  * <p>Indicates whether the instance is enabled for Amazon Web Services Nitro Enclaves. For
4294
4295
  * more information, see <a href="https://docs.aws.amazon.com/enclaves/latest/user/nitro-enclave.html">What is Amazon Web Services Nitro
@@ -4298,26 +4299,26 @@ export interface RunInstancesRequest {
4298
4299
  * instance.</p>
4299
4300
  * @public
4300
4301
  */
4301
- EnclaveOptions?: EnclaveOptionsRequest;
4302
+ EnclaveOptions?: EnclaveOptionsRequest | undefined;
4302
4303
  /**
4303
4304
  * <p>The options for the instance hostname.
4304
4305
  * The default values are inherited from the subnet.
4305
4306
  * Applies only if creating a network interface, not attaching an existing one.</p>
4306
4307
  * @public
4307
4308
  */
4308
- PrivateDnsNameOptions?: PrivateDnsNameOptionsRequest;
4309
+ PrivateDnsNameOptions?: PrivateDnsNameOptionsRequest | undefined;
4309
4310
  /**
4310
4311
  * <p>The maintenance and recovery options for the instance.</p>
4311
4312
  * @public
4312
4313
  */
4313
- MaintenanceOptions?: InstanceMaintenanceOptionsRequest;
4314
+ MaintenanceOptions?: InstanceMaintenanceOptionsRequest | undefined;
4314
4315
  /**
4315
4316
  * <p>Indicates whether an instance is enabled for stop protection. For more information,
4316
4317
  * see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Stop_Start.html#Using_StopProtection">Stop
4317
4318
  * protection</a>. </p>
4318
4319
  * @public
4319
4320
  */
4320
- DisableApiStop?: boolean;
4321
+ DisableApiStop?: boolean | undefined;
4321
4322
  /**
4322
4323
  * <p>If you’re launching an instance into a dual-stack or IPv6-only subnet, you can enable
4323
4324
  * assigning a primary IPv6 address. A primary IPv6 address is an IPv6 GUA address
@@ -4333,14 +4334,14 @@ export interface RunInstancesRequest {
4333
4334
  * becomes the primary IPv6 address.</p>
4334
4335
  * @public
4335
4336
  */
4336
- EnablePrimaryIpv6?: boolean;
4337
+ EnablePrimaryIpv6?: boolean | undefined;
4337
4338
  /**
4338
4339
  * <p>Checks whether you have the required permissions for the operation, without actually making the
4339
4340
  * request, and provides an error response. If you have the required permissions, the error response is
4340
4341
  * <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
4341
4342
  * @public
4342
4343
  */
4343
- DryRun?: boolean;
4344
+ DryRun?: boolean | undefined;
4344
4345
  /**
4345
4346
  * <p>If you set this parameter to <code>true</code>, you can't terminate the instance using
4346
4347
  * the Amazon EC2 console, CLI, or API; otherwise, you can. To change this attribute after
@@ -4351,7 +4352,7 @@ export interface RunInstancesRequest {
4351
4352
  * </p>
4352
4353
  * @public
4353
4354
  */
4354
- DisableApiTermination?: boolean;
4355
+ DisableApiTermination?: boolean | undefined;
4355
4356
  /**
4356
4357
  * <p>Indicates whether an instance stops or terminates when you initiate shutdown from the
4357
4358
  * instance (using the operating system command for system shutdown).</p>
@@ -4359,7 +4360,7 @@ export interface RunInstancesRequest {
4359
4360
  * </p>
4360
4361
  * @public
4361
4362
  */
4362
- InstanceInitiatedShutdownBehavior?: ShutdownBehavior;
4363
+ InstanceInitiatedShutdownBehavior?: ShutdownBehavior | undefined;
4363
4364
  /**
4364
4365
  * <p>The primary IPv4 address. You must specify a value from the IPv4 address
4365
4366
  * range of the subnet.</p>
@@ -4371,7 +4372,7 @@ export interface RunInstancesRequest {
4371
4372
  * request.</p>
4372
4373
  * @public
4373
4374
  */
4374
- PrivateIpAddress?: string;
4375
+ PrivateIpAddress?: string | undefined;
4375
4376
  /**
4376
4377
  * <p>Unique, case-sensitive identifier you provide to ensure the idempotency of the
4377
4378
  * request. If you do not specify a client token, a randomly generated token is used for
@@ -4381,23 +4382,23 @@ export interface RunInstancesRequest {
4381
4382
  * <p>Constraints: Maximum 64 ASCII characters</p>
4382
4383
  * @public
4383
4384
  */
4384
- ClientToken?: string;
4385
+ ClientToken?: string | undefined;
4385
4386
  /**
4386
4387
  * <p>Reserved.</p>
4387
4388
  * @public
4388
4389
  */
4389
- AdditionalInfo?: string;
4390
+ AdditionalInfo?: string | undefined;
4390
4391
  /**
4391
4392
  * <p>The network interfaces to associate with the instance.</p>
4392
4393
  * @public
4393
4394
  */
4394
- NetworkInterfaces?: InstanceNetworkInterfaceSpecification[];
4395
+ NetworkInterfaces?: InstanceNetworkInterfaceSpecification[] | undefined;
4395
4396
  /**
4396
4397
  * <p>The name or Amazon Resource Name (ARN) of an IAM instance
4397
4398
  * profile.</p>
4398
4399
  * @public
4399
4400
  */
4400
- IamInstanceProfile?: IamInstanceProfileSpecification;
4401
+ IamInstanceProfile?: IamInstanceProfileSpecification | undefined;
4401
4402
  /**
4402
4403
  * <p>Indicates whether the instance is optimized for Amazon EBS I/O. This optimization
4403
4404
  * provides dedicated throughput to Amazon EBS and an optimized configuration stack to
@@ -4408,7 +4409,7 @@ export interface RunInstancesRequest {
4408
4409
  * </p>
4409
4410
  * @public
4410
4411
  */
4411
- EbsOptimized?: boolean;
4412
+ EbsOptimized?: boolean | undefined;
4412
4413
  }
4413
4414
  /**
4414
4415
  * <p>Describes an EBS volume for a Scheduled Instance.</p>
@@ -4419,38 +4420,38 @@ export interface ScheduledInstancesEbs {
4419
4420
  * <p>Indicates whether the volume is deleted on instance termination.</p>
4420
4421
  * @public
4421
4422
  */
4422
- DeleteOnTermination?: boolean;
4423
+ DeleteOnTermination?: boolean | undefined;
4423
4424
  /**
4424
4425
  * <p>Indicates whether the volume is encrypted. You can attached encrypted volumes only to instances that
4425
4426
  * support them.</p>
4426
4427
  * @public
4427
4428
  */
4428
- Encrypted?: boolean;
4429
+ Encrypted?: boolean | undefined;
4429
4430
  /**
4430
4431
  * <p>The number of I/O operations per second (IOPS) to provision for a <code>gp3</code>, <code>io1</code>, or <code>io2</code>
4431
4432
  * volume.</p>
4432
4433
  * @public
4433
4434
  */
4434
- Iops?: number;
4435
+ Iops?: number | undefined;
4435
4436
  /**
4436
4437
  * <p>The ID of the snapshot.</p>
4437
4438
  * @public
4438
4439
  */
4439
- SnapshotId?: string;
4440
+ SnapshotId?: string | undefined;
4440
4441
  /**
4441
4442
  * <p>The size of the volume, in GiB.</p>
4442
4443
  * <p>Default: If you're creating the volume from a snapshot and don't specify a volume size, the default
4443
4444
  * is the snapshot size.</p>
4444
4445
  * @public
4445
4446
  */
4446
- VolumeSize?: number;
4447
+ VolumeSize?: number | undefined;
4447
4448
  /**
4448
4449
  * <p>The volume type.</p>
4449
4450
  * <p>Default: <code>gp2</code>
4450
4451
  * </p>
4451
4452
  * @public
4452
4453
  */
4453
- VolumeType?: string;
4454
+ VolumeType?: string | undefined;
4454
4455
  }
4455
4456
  /**
4456
4457
  * <p>Describes a block device mapping for a Scheduled Instance.</p>
@@ -4461,17 +4462,17 @@ export interface ScheduledInstancesBlockDeviceMapping {
4461
4462
  * <p>The device name (for example, <code>/dev/sdh</code> or <code>xvdh</code>).</p>
4462
4463
  * @public
4463
4464
  */
4464
- DeviceName?: string;
4465
+ DeviceName?: string | undefined;
4465
4466
  /**
4466
4467
  * <p>Parameters used to set up EBS volumes automatically when the instance is launched.</p>
4467
4468
  * @public
4468
4469
  */
4469
- Ebs?: ScheduledInstancesEbs;
4470
+ Ebs?: ScheduledInstancesEbs | undefined;
4470
4471
  /**
4471
4472
  * <p>To omit the device from the block device mapping, specify an empty string.</p>
4472
4473
  * @public
4473
4474
  */
4474
- NoDevice?: string;
4475
+ NoDevice?: string | undefined;
4475
4476
  /**
4476
4477
  * <p>The virtual device name (<code>ephemeral</code>N). Instance store volumes are numbered
4477
4478
  * starting from 0. An instance type with two available instance store volumes can specify mappings
@@ -4483,7 +4484,7 @@ export interface ScheduledInstancesBlockDeviceMapping {
4483
4484
  * specified in the block device mapping for the AMI.</p>
4484
4485
  * @public
4485
4486
  */
4486
- VirtualName?: string;
4487
+ VirtualName?: string | undefined;
4487
4488
  }
4488
4489
  /**
4489
4490
  * <p>Describes an IAM instance profile for a Scheduled Instance.</p>
@@ -4494,12 +4495,12 @@ export interface ScheduledInstancesIamInstanceProfile {
4494
4495
  * <p>The Amazon Resource Name (ARN).</p>
4495
4496
  * @public
4496
4497
  */
4497
- Arn?: string;
4498
+ Arn?: string | undefined;
4498
4499
  /**
4499
4500
  * <p>The name.</p>
4500
4501
  * @public
4501
4502
  */
4502
- Name?: string;
4503
+ Name?: string | undefined;
4503
4504
  }
4504
4505
  /**
4505
4506
  * <p>Describes whether monitoring is enabled for a Scheduled Instance.</p>
@@ -4510,7 +4511,7 @@ export interface ScheduledInstancesMonitoring {
4510
4511
  * <p>Indicates whether monitoring is enabled.</p>
4511
4512
  * @public
4512
4513
  */
4513
- Enabled?: boolean;
4514
+ Enabled?: boolean | undefined;
4514
4515
  }
4515
4516
  /**
4516
4517
  * <p>Describes an IPv6 address.</p>
@@ -4521,7 +4522,7 @@ export interface ScheduledInstancesIpv6Address {
4521
4522
  * <p>The IPv6 address.</p>
4522
4523
  * @public
4523
4524
  */
4524
- Ipv6Address?: string;
4525
+ Ipv6Address?: string | undefined;
4525
4526
  }
4526
4527
  /**
4527
4528
  * <p>Describes a private IPv4 address for a Scheduled Instance.</p>
@@ -4532,12 +4533,12 @@ export interface ScheduledInstancesPrivateIpAddressConfig {
4532
4533
  * <p>Indicates whether this is a primary IPv4 address. Otherwise, this is a secondary IPv4 address.</p>
4533
4534
  * @public
4534
4535
  */
4535
- Primary?: boolean;
4536
+ Primary?: boolean | undefined;
4536
4537
  /**
4537
4538
  * <p>The IPv4 address.</p>
4538
4539
  * @public
4539
4540
  */
4540
- PrivateIpAddress?: string;
4541
+ PrivateIpAddress?: string | undefined;
4541
4542
  }
4542
4543
  /**
4543
4544
  * <p>Describes a network interface for a Scheduled Instance.</p>
@@ -4554,62 +4555,62 @@ export interface ScheduledInstancesNetworkInterface {
4554
4555
  * associated with running instances and Elastic IP addresses. For more information, see the <i>Public IPv4 Address</i> tab on the <a href="http://aws.amazon.com/vpc/pricing/">Amazon VPC pricing page</a>.</p>
4555
4556
  * @public
4556
4557
  */
4557
- AssociatePublicIpAddress?: boolean;
4558
+ AssociatePublicIpAddress?: boolean | undefined;
4558
4559
  /**
4559
4560
  * <p>Indicates whether to delete the interface when the instance is terminated.</p>
4560
4561
  * @public
4561
4562
  */
4562
- DeleteOnTermination?: boolean;
4563
+ DeleteOnTermination?: boolean | undefined;
4563
4564
  /**
4564
4565
  * <p>The description.</p>
4565
4566
  * @public
4566
4567
  */
4567
- Description?: string;
4568
+ Description?: string | undefined;
4568
4569
  /**
4569
4570
  * <p>The index of the device for the network interface attachment.</p>
4570
4571
  * @public
4571
4572
  */
4572
- DeviceIndex?: number;
4573
+ DeviceIndex?: number | undefined;
4573
4574
  /**
4574
4575
  * <p>The IDs of the security groups.</p>
4575
4576
  * @public
4576
4577
  */
4577
- Groups?: string[];
4578
+ Groups?: string[] | undefined;
4578
4579
  /**
4579
4580
  * <p>The number of IPv6 addresses to assign to the network interface. The IPv6 addresses are automatically selected from the subnet range.</p>
4580
4581
  * @public
4581
4582
  */
4582
- Ipv6AddressCount?: number;
4583
+ Ipv6AddressCount?: number | undefined;
4583
4584
  /**
4584
4585
  * <p>The specific IPv6 addresses from the subnet range.</p>
4585
4586
  * @public
4586
4587
  */
4587
- Ipv6Addresses?: ScheduledInstancesIpv6Address[];
4588
+ Ipv6Addresses?: ScheduledInstancesIpv6Address[] | undefined;
4588
4589
  /**
4589
4590
  * <p>The ID of the network interface.</p>
4590
4591
  * @public
4591
4592
  */
4592
- NetworkInterfaceId?: string;
4593
+ NetworkInterfaceId?: string | undefined;
4593
4594
  /**
4594
4595
  * <p>The IPv4 address of the network interface within the subnet.</p>
4595
4596
  * @public
4596
4597
  */
4597
- PrivateIpAddress?: string;
4598
+ PrivateIpAddress?: string | undefined;
4598
4599
  /**
4599
4600
  * <p>The private IPv4 addresses.</p>
4600
4601
  * @public
4601
4602
  */
4602
- PrivateIpAddressConfigs?: ScheduledInstancesPrivateIpAddressConfig[];
4603
+ PrivateIpAddressConfigs?: ScheduledInstancesPrivateIpAddressConfig[] | undefined;
4603
4604
  /**
4604
4605
  * <p>The number of secondary private IPv4 addresses.</p>
4605
4606
  * @public
4606
4607
  */
4607
- SecondaryPrivateIpAddressCount?: number;
4608
+ SecondaryPrivateIpAddressCount?: number | undefined;
4608
4609
  /**
4609
4610
  * <p>The ID of the subnet.</p>
4610
4611
  * @public
4611
4612
  */
4612
- SubnetId?: string;
4613
+ SubnetId?: string | undefined;
4613
4614
  }
4614
4615
  /**
4615
4616
  * <p>Describes the placement for a Scheduled Instance.</p>
@@ -4620,12 +4621,12 @@ export interface ScheduledInstancesPlacement {
4620
4621
  * <p>The Availability Zone.</p>
4621
4622
  * @public
4622
4623
  */
4623
- AvailabilityZone?: string;
4624
+ AvailabilityZone?: string | undefined;
4624
4625
  /**
4625
4626
  * <p>The name of the placement group.</p>
4626
4627
  * @public
4627
4628
  */
4628
- GroupName?: string;
4629
+ GroupName?: string | undefined;
4629
4630
  }
4630
4631
  /**
4631
4632
  * <p>Describes the launch specification for a Scheduled Instance.</p>
@@ -4638,19 +4639,19 @@ export interface ScheduledInstancesLaunchSpecification {
4638
4639
  * <p>The block device mapping entries.</p>
4639
4640
  * @public
4640
4641
  */
4641
- BlockDeviceMappings?: ScheduledInstancesBlockDeviceMapping[];
4642
+ BlockDeviceMappings?: ScheduledInstancesBlockDeviceMapping[] | undefined;
4642
4643
  /**
4643
4644
  * <p>Indicates whether the instances are optimized for EBS I/O. This optimization provides dedicated throughput to Amazon EBS and an optimized configuration stack to provide optimal EBS I/O performance. This optimization isn't available with all instance types. Additional usage charges apply when using an EBS-optimized instance.</p>
4644
4645
  * <p>Default: <code>false</code>
4645
4646
  * </p>
4646
4647
  * @public
4647
4648
  */
4648
- EbsOptimized?: boolean;
4649
+ EbsOptimized?: boolean | undefined;
4649
4650
  /**
4650
4651
  * <p>The IAM instance profile.</p>
4651
4652
  * @public
4652
4653
  */
4653
- IamInstanceProfile?: ScheduledInstancesIamInstanceProfile;
4654
+ IamInstanceProfile?: ScheduledInstancesIamInstanceProfile | undefined;
4654
4655
  /**
4655
4656
  * <p>The ID of the Amazon Machine Image (AMI).</p>
4656
4657
  * @public
@@ -4660,52 +4661,52 @@ export interface ScheduledInstancesLaunchSpecification {
4660
4661
  * <p>The instance type.</p>
4661
4662
  * @public
4662
4663
  */
4663
- InstanceType?: string;
4664
+ InstanceType?: string | undefined;
4664
4665
  /**
4665
4666
  * <p>The ID of the kernel.</p>
4666
4667
  * @public
4667
4668
  */
4668
- KernelId?: string;
4669
+ KernelId?: string | undefined;
4669
4670
  /**
4670
4671
  * <p>The name of the key pair.</p>
4671
4672
  * @public
4672
4673
  */
4673
- KeyName?: string;
4674
+ KeyName?: string | undefined;
4674
4675
  /**
4675
4676
  * <p>Enable or disable monitoring for the instances.</p>
4676
4677
  * @public
4677
4678
  */
4678
- Monitoring?: ScheduledInstancesMonitoring;
4679
+ Monitoring?: ScheduledInstancesMonitoring | undefined;
4679
4680
  /**
4680
4681
  * <p>The network interfaces.</p>
4681
4682
  * @public
4682
4683
  */
4683
- NetworkInterfaces?: ScheduledInstancesNetworkInterface[];
4684
+ NetworkInterfaces?: ScheduledInstancesNetworkInterface[] | undefined;
4684
4685
  /**
4685
4686
  * <p>The placement information.</p>
4686
4687
  * @public
4687
4688
  */
4688
- Placement?: ScheduledInstancesPlacement;
4689
+ Placement?: ScheduledInstancesPlacement | undefined;
4689
4690
  /**
4690
4691
  * <p>The ID of the RAM disk.</p>
4691
4692
  * @public
4692
4693
  */
4693
- RamdiskId?: string;
4694
+ RamdiskId?: string | undefined;
4694
4695
  /**
4695
4696
  * <p>The IDs of the security groups.</p>
4696
4697
  * @public
4697
4698
  */
4698
- SecurityGroupIds?: string[];
4699
+ SecurityGroupIds?: string[] | undefined;
4699
4700
  /**
4700
4701
  * <p>The ID of the subnet in which to launch the instances.</p>
4701
4702
  * @public
4702
4703
  */
4703
- SubnetId?: string;
4704
+ SubnetId?: string | undefined;
4704
4705
  /**
4705
4706
  * <p>The base64-encoded MIME user data.</p>
4706
4707
  * @public
4707
4708
  */
4708
- UserData?: string;
4709
+ UserData?: string | undefined;
4709
4710
  }
4710
4711
  /**
4711
4712
  * <p>Contains the parameters for RunScheduledInstances.</p>
@@ -4717,20 +4718,20 @@ export interface RunScheduledInstancesRequest {
4717
4718
  * For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html">Ensuring Idempotency</a>.</p>
4718
4719
  * @public
4719
4720
  */
4720
- ClientToken?: string;
4721
+ ClientToken?: string | undefined;
4721
4722
  /**
4722
4723
  * <p>Checks whether you have the required permissions for the action, without actually making the request,
4723
4724
  * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
4724
4725
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
4725
4726
  * @public
4726
4727
  */
4727
- DryRun?: boolean;
4728
+ DryRun?: boolean | undefined;
4728
4729
  /**
4729
4730
  * <p>The number of instances.</p>
4730
4731
  * <p>Default: 1</p>
4731
4732
  * @public
4732
4733
  */
4733
- InstanceCount?: number;
4734
+ InstanceCount?: number | undefined;
4734
4735
  /**
4735
4736
  * <p>The launch specification. You must match the instance type, Availability Zone,
4736
4737
  * network, and platform of the schedule that you purchased.</p>
@@ -4752,7 +4753,7 @@ export interface RunScheduledInstancesResult {
4752
4753
  * <p>The IDs of the newly launched instances.</p>
4753
4754
  * @public
4754
4755
  */
4755
- InstanceIdSet?: string[];
4756
+ InstanceIdSet?: string[] | undefined;
4756
4757
  }
4757
4758
  /**
4758
4759
  * @public
@@ -4799,25 +4800,25 @@ export interface SearchLocalGatewayRoutesRequest {
4799
4800
  * </ul>
4800
4801
  * @public
4801
4802
  */
4802
- Filters?: Filter[];
4803
+ Filters?: Filter[] | undefined;
4803
4804
  /**
4804
4805
  * <p>The maximum number of results to return with a single call.
4805
4806
  * To retrieve the remaining results, make another call with the returned <code>nextToken</code> value.</p>
4806
4807
  * @public
4807
4808
  */
4808
- MaxResults?: number;
4809
+ MaxResults?: number | undefined;
4809
4810
  /**
4810
4811
  * <p>The token for the next page of results.</p>
4811
4812
  * @public
4812
4813
  */
4813
- NextToken?: string;
4814
+ NextToken?: string | undefined;
4814
4815
  /**
4815
4816
  * <p>Checks whether you have the required permissions for the action, without actually making the request,
4816
4817
  * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
4817
4818
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
4818
4819
  * @public
4819
4820
  */
4820
- DryRun?: boolean;
4821
+ DryRun?: boolean | undefined;
4821
4822
  }
4822
4823
  /**
4823
4824
  * @public
@@ -4827,12 +4828,12 @@ export interface SearchLocalGatewayRoutesResult {
4827
4828
  * <p>Information about the routes.</p>
4828
4829
  * @public
4829
4830
  */
4830
- Routes?: LocalGatewayRoute[];
4831
+ Routes?: LocalGatewayRoute[] | undefined;
4831
4832
  /**
4832
4833
  * <p>The token to use to retrieve the next page of results. This value is <code>null</code> when there are no more results to return.</p>
4833
4834
  * @public
4834
4835
  */
4835
- NextToken?: string;
4836
+ NextToken?: string | undefined;
4836
4837
  }
4837
4838
  /**
4838
4839
  * @public
@@ -4885,25 +4886,25 @@ export interface SearchTransitGatewayMulticastGroupsRequest {
4885
4886
  * </ul>
4886
4887
  * @public
4887
4888
  */
4888
- Filters?: Filter[];
4889
+ Filters?: Filter[] | undefined;
4889
4890
  /**
4890
4891
  * <p>The maximum number of results to return with a single call.
4891
4892
  * To retrieve the remaining results, make another call with the returned <code>nextToken</code> value.</p>
4892
4893
  * @public
4893
4894
  */
4894
- MaxResults?: number;
4895
+ MaxResults?: number | undefined;
4895
4896
  /**
4896
4897
  * <p>The token for the next page of results.</p>
4897
4898
  * @public
4898
4899
  */
4899
- NextToken?: string;
4900
+ NextToken?: string | undefined;
4900
4901
  /**
4901
4902
  * <p>Checks whether you have the required permissions for the action, without actually making the request,
4902
4903
  * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
4903
4904
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
4904
4905
  * @public
4905
4906
  */
4906
- DryRun?: boolean;
4907
+ DryRun?: boolean | undefined;
4907
4908
  }
4908
4909
  /**
4909
4910
  * @public
@@ -4926,57 +4927,57 @@ export interface TransitGatewayMulticastGroup {
4926
4927
  * <p>The IP address assigned to the transit gateway multicast group.</p>
4927
4928
  * @public
4928
4929
  */
4929
- GroupIpAddress?: string;
4930
+ GroupIpAddress?: string | undefined;
4930
4931
  /**
4931
4932
  * <p>The ID of the transit gateway attachment.</p>
4932
4933
  * @public
4933
4934
  */
4934
- TransitGatewayAttachmentId?: string;
4935
+ TransitGatewayAttachmentId?: string | undefined;
4935
4936
  /**
4936
4937
  * <p>The ID of the subnet.</p>
4937
4938
  * @public
4938
4939
  */
4939
- SubnetId?: string;
4940
+ SubnetId?: string | undefined;
4940
4941
  /**
4941
4942
  * <p>The ID of the resource.</p>
4942
4943
  * @public
4943
4944
  */
4944
- ResourceId?: string;
4945
+ ResourceId?: string | undefined;
4945
4946
  /**
4946
4947
  * <p>The type of resource, for example a VPC attachment.</p>
4947
4948
  * @public
4948
4949
  */
4949
- ResourceType?: TransitGatewayAttachmentResourceType;
4950
+ ResourceType?: TransitGatewayAttachmentResourceType | undefined;
4950
4951
  /**
4951
4952
  * <p> The ID of the Amazon Web Services account that owns the transit gateway multicast domain group resource.</p>
4952
4953
  * @public
4953
4954
  */
4954
- ResourceOwnerId?: string;
4955
+ ResourceOwnerId?: string | undefined;
4955
4956
  /**
4956
4957
  * <p>The ID of the transit gateway attachment.</p>
4957
4958
  * @public
4958
4959
  */
4959
- NetworkInterfaceId?: string;
4960
+ NetworkInterfaceId?: string | undefined;
4960
4961
  /**
4961
4962
  * <p>Indicates that the resource is a transit gateway multicast group member.</p>
4962
4963
  * @public
4963
4964
  */
4964
- GroupMember?: boolean;
4965
+ GroupMember?: boolean | undefined;
4965
4966
  /**
4966
4967
  * <p>Indicates that the resource is a transit gateway multicast group member.</p>
4967
4968
  * @public
4968
4969
  */
4969
- GroupSource?: boolean;
4970
+ GroupSource?: boolean | undefined;
4970
4971
  /**
4971
4972
  * <p>The member type (for example, <code>static</code>).</p>
4972
4973
  * @public
4973
4974
  */
4974
- MemberType?: MembershipType;
4975
+ MemberType?: MembershipType | undefined;
4975
4976
  /**
4976
4977
  * <p>The source type.</p>
4977
4978
  * @public
4978
4979
  */
4979
- SourceType?: MembershipType;
4980
+ SourceType?: MembershipType | undefined;
4980
4981
  }
4981
4982
  /**
4982
4983
  * @public
@@ -4986,12 +4987,12 @@ export interface SearchTransitGatewayMulticastGroupsResult {
4986
4987
  * <p>Information about the transit gateway multicast group.</p>
4987
4988
  * @public
4988
4989
  */
4989
- MulticastGroups?: TransitGatewayMulticastGroup[];
4990
+ MulticastGroups?: TransitGatewayMulticastGroup[] | undefined;
4990
4991
  /**
4991
4992
  * <p>The token to use to retrieve the next page of results. This value is <code>null</code> when there are no more results to return.</p>
4992
4993
  * @public
4993
4994
  */
4994
- NextToken?: string;
4995
+ NextToken?: string | undefined;
4995
4996
  }
4996
4997
  /**
4997
4998
  * @public
@@ -5057,14 +5058,14 @@ export interface SearchTransitGatewayRoutesRequest {
5057
5058
  * 1000.</p>
5058
5059
  * @public
5059
5060
  */
5060
- MaxResults?: number;
5061
+ MaxResults?: number | undefined;
5061
5062
  /**
5062
5063
  * <p>Checks whether you have the required permissions for the action, without actually making the request,
5063
5064
  * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
5064
5065
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
5065
5066
  * @public
5066
5067
  */
5067
- DryRun?: boolean;
5068
+ DryRun?: boolean | undefined;
5068
5069
  }
5069
5070
  /**
5070
5071
  * @public
@@ -5074,12 +5075,12 @@ export interface SearchTransitGatewayRoutesResult {
5074
5075
  * <p>Information about the routes.</p>
5075
5076
  * @public
5076
5077
  */
5077
- Routes?: TransitGatewayRoute[];
5078
+ Routes?: TransitGatewayRoute[] | undefined;
5078
5079
  /**
5079
5080
  * <p>Indicates whether there are additional routes available.</p>
5080
5081
  * @public
5081
5082
  */
5082
- AdditionalRoutesAvailable?: boolean;
5083
+ AdditionalRoutesAvailable?: boolean | undefined;
5083
5084
  }
5084
5085
  /**
5085
5086
  * @public
@@ -5096,7 +5097,7 @@ export interface SendDiagnosticInterruptRequest {
5096
5097
  * <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
5097
5098
  * @public
5098
5099
  */
5099
- DryRun?: boolean;
5100
+ DryRun?: boolean | undefined;
5100
5101
  }
5101
5102
  /**
5102
5103
  * @public
@@ -5111,14 +5112,14 @@ export interface StartInstancesRequest {
5111
5112
  * <p>Reserved.</p>
5112
5113
  * @public
5113
5114
  */
5114
- AdditionalInfo?: string;
5115
+ AdditionalInfo?: string | undefined;
5115
5116
  /**
5116
5117
  * <p>Checks whether you have the required permissions for the operation, without actually making the
5117
5118
  * request, and provides an error response. If you have the required permissions, the error response is
5118
5119
  * <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
5119
5120
  * @public
5120
5121
  */
5121
- DryRun?: boolean;
5122
+ DryRun?: boolean | undefined;
5122
5123
  }
5123
5124
  /**
5124
5125
  * <p>Describes an instance state change.</p>
@@ -5129,17 +5130,17 @@ export interface InstanceStateChange {
5129
5130
  * <p>The ID of the instance.</p>
5130
5131
  * @public
5131
5132
  */
5132
- InstanceId?: string;
5133
+ InstanceId?: string | undefined;
5133
5134
  /**
5134
5135
  * <p>The current state of the instance.</p>
5135
5136
  * @public
5136
5137
  */
5137
- CurrentState?: InstanceState;
5138
+ CurrentState?: InstanceState | undefined;
5138
5139
  /**
5139
5140
  * <p>The previous state of the instance.</p>
5140
5141
  * @public
5141
5142
  */
5142
- PreviousState?: InstanceState;
5143
+ PreviousState?: InstanceState | undefined;
5143
5144
  }
5144
5145
  /**
5145
5146
  * @public
@@ -5149,7 +5150,7 @@ export interface StartInstancesResult {
5149
5150
  * <p>Information about the started instances.</p>
5150
5151
  * @public
5151
5152
  */
5152
- StartingInstances?: InstanceStateChange[];
5153
+ StartingInstances?: InstanceStateChange[] | undefined;
5153
5154
  }
5154
5155
  /**
5155
5156
  * @public
@@ -5166,18 +5167,18 @@ export interface StartNetworkInsightsAccessScopeAnalysisRequest {
5166
5167
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
5167
5168
  * @public
5168
5169
  */
5169
- DryRun?: boolean;
5170
+ DryRun?: boolean | undefined;
5170
5171
  /**
5171
5172
  * <p>The tags to apply.</p>
5172
5173
  * @public
5173
5174
  */
5174
- TagSpecifications?: TagSpecification[];
5175
+ TagSpecifications?: TagSpecification[] | undefined;
5175
5176
  /**
5176
5177
  * <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information,
5177
5178
  * see <a href="https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html">How to ensure idempotency</a>.</p>
5178
5179
  * @public
5179
5180
  */
5180
- ClientToken?: string;
5181
+ ClientToken?: string | undefined;
5181
5182
  }
5182
5183
  /**
5183
5184
  * @public
@@ -5187,7 +5188,7 @@ export interface StartNetworkInsightsAccessScopeAnalysisResult {
5187
5188
  * <p>The Network Access Scope analysis.</p>
5188
5189
  * @public
5189
5190
  */
5190
- NetworkInsightsAccessScopeAnalysis?: NetworkInsightsAccessScopeAnalysis;
5191
+ NetworkInsightsAccessScopeAnalysis?: NetworkInsightsAccessScopeAnalysis | undefined;
5191
5192
  }
5192
5193
  /**
5193
5194
  * @public
@@ -5202,30 +5203,30 @@ export interface StartNetworkInsightsAnalysisRequest {
5202
5203
  * <p>The member accounts that contain resources that the path can traverse.</p>
5203
5204
  * @public
5204
5205
  */
5205
- AdditionalAccounts?: string[];
5206
+ AdditionalAccounts?: string[] | undefined;
5206
5207
  /**
5207
5208
  * <p>The Amazon Resource Names (ARN) of the resources that the path must traverse.</p>
5208
5209
  * @public
5209
5210
  */
5210
- FilterInArns?: string[];
5211
+ FilterInArns?: string[] | undefined;
5211
5212
  /**
5212
5213
  * <p>Checks whether you have the required permissions for the action, without actually making the request,
5213
5214
  * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
5214
5215
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
5215
5216
  * @public
5216
5217
  */
5217
- DryRun?: boolean;
5218
+ DryRun?: boolean | undefined;
5218
5219
  /**
5219
5220
  * <p>The tags to apply.</p>
5220
5221
  * @public
5221
5222
  */
5222
- TagSpecifications?: TagSpecification[];
5223
+ TagSpecifications?: TagSpecification[] | undefined;
5223
5224
  /**
5224
5225
  * <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information,
5225
5226
  * see <a href="https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html">How to ensure idempotency</a>.</p>
5226
5227
  * @public
5227
5228
  */
5228
- ClientToken?: string;
5229
+ ClientToken?: string | undefined;
5229
5230
  }
5230
5231
  /**
5231
5232
  * @public
@@ -5235,7 +5236,7 @@ export interface StartNetworkInsightsAnalysisResult {
5235
5236
  * <p>Information about the network insights analysis.</p>
5236
5237
  * @public
5237
5238
  */
5238
- NetworkInsightsAnalysis?: NetworkInsightsAnalysis;
5239
+ NetworkInsightsAnalysis?: NetworkInsightsAnalysis | undefined;
5239
5240
  }
5240
5241
  /**
5241
5242
  * @public
@@ -5247,7 +5248,7 @@ export interface StartVpcEndpointServicePrivateDnsVerificationRequest {
5247
5248
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
5248
5249
  * @public
5249
5250
  */
5250
- DryRun?: boolean;
5251
+ DryRun?: boolean | undefined;
5251
5252
  /**
5252
5253
  * <p>The ID of the endpoint service.</p>
5253
5254
  * @public
@@ -5262,7 +5263,7 @@ export interface StartVpcEndpointServicePrivateDnsVerificationResult {
5262
5263
  * <p>Returns <code>true</code> if the request succeeds; otherwise, it returns an error.</p>
5263
5264
  * @public
5264
5265
  */
5265
- ReturnValue?: boolean;
5266
+ ReturnValue?: boolean | undefined;
5266
5267
  }
5267
5268
  /**
5268
5269
  * @public
@@ -5282,14 +5283,14 @@ export interface StopInstancesRequest {
5282
5283
  * </p>
5283
5284
  * @public
5284
5285
  */
5285
- Hibernate?: boolean;
5286
+ Hibernate?: boolean | undefined;
5286
5287
  /**
5287
5288
  * <p>Checks whether you have the required permissions for the operation, without actually making the
5288
5289
  * request, and provides an error response. If you have the required permissions, the error response is
5289
5290
  * <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
5290
5291
  * @public
5291
5292
  */
5292
- DryRun?: boolean;
5293
+ DryRun?: boolean | undefined;
5293
5294
  /**
5294
5295
  * <p>Forces the instances to stop. The instances do not have an opportunity to flush file
5295
5296
  * system caches or file system metadata. If you use this option, you must perform file
@@ -5299,7 +5300,7 @@ export interface StopInstancesRequest {
5299
5300
  * </p>
5300
5301
  * @public
5301
5302
  */
5302
- Force?: boolean;
5303
+ Force?: boolean | undefined;
5303
5304
  }
5304
5305
  /**
5305
5306
  * @public
@@ -5309,7 +5310,7 @@ export interface StopInstancesResult {
5309
5310
  * <p>Information about the stopped instances.</p>
5310
5311
  * @public
5311
5312
  */
5312
- StoppingInstances?: InstanceStateChange[];
5313
+ StoppingInstances?: InstanceStateChange[] | undefined;
5313
5314
  }
5314
5315
  /**
5315
5316
  * @public
@@ -5324,18 +5325,18 @@ export interface TerminateClientVpnConnectionsRequest {
5324
5325
  * <p>The ID of the client connection to be terminated.</p>
5325
5326
  * @public
5326
5327
  */
5327
- ConnectionId?: string;
5328
+ ConnectionId?: string | undefined;
5328
5329
  /**
5329
5330
  * <p>The name of the user who initiated the connection. Use this option to terminate all active connections for
5330
5331
  * the specified user. This option can only be used if the user has established up to five connections.</p>
5331
5332
  * @public
5332
5333
  */
5333
- Username?: string;
5334
+ Username?: string | undefined;
5334
5335
  /**
5335
5336
  * <p>Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
5336
5337
  * @public
5337
5338
  */
5338
- DryRun?: boolean;
5339
+ DryRun?: boolean | undefined;
5339
5340
  }
5340
5341
  /**
5341
5342
  * <p>Information about a terminated Client VPN endpoint client connection.</p>
@@ -5346,17 +5347,17 @@ export interface TerminateConnectionStatus {
5346
5347
  * <p>The ID of the client connection.</p>
5347
5348
  * @public
5348
5349
  */
5349
- ConnectionId?: string;
5350
+ ConnectionId?: string | undefined;
5350
5351
  /**
5351
5352
  * <p>The state of the client connection.</p>
5352
5353
  * @public
5353
5354
  */
5354
- PreviousStatus?: ClientVpnConnectionStatus;
5355
+ PreviousStatus?: ClientVpnConnectionStatus | undefined;
5355
5356
  /**
5356
5357
  * <p>A message about the status of the client connection, if applicable.</p>
5357
5358
  * @public
5358
5359
  */
5359
- CurrentStatus?: ClientVpnConnectionStatus;
5360
+ CurrentStatus?: ClientVpnConnectionStatus | undefined;
5360
5361
  }
5361
5362
  /**
5362
5363
  * @public
@@ -5366,17 +5367,17 @@ export interface TerminateClientVpnConnectionsResult {
5366
5367
  * <p>The ID of the Client VPN endpoint.</p>
5367
5368
  * @public
5368
5369
  */
5369
- ClientVpnEndpointId?: string;
5370
+ ClientVpnEndpointId?: string | undefined;
5370
5371
  /**
5371
5372
  * <p>The user who established the terminated client connections.</p>
5372
5373
  * @public
5373
5374
  */
5374
- Username?: string;
5375
+ Username?: string | undefined;
5375
5376
  /**
5376
5377
  * <p>The current state of the client connections.</p>
5377
5378
  * @public
5378
5379
  */
5379
- ConnectionStatuses?: TerminateConnectionStatus[];
5380
+ ConnectionStatuses?: TerminateConnectionStatus[] | undefined;
5380
5381
  }
5381
5382
  /**
5382
5383
  * @public
@@ -5395,7 +5396,7 @@ export interface TerminateInstancesRequest {
5395
5396
  * <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
5396
5397
  * @public
5397
5398
  */
5398
- DryRun?: boolean;
5399
+ DryRun?: boolean | undefined;
5399
5400
  }
5400
5401
  /**
5401
5402
  * @public
@@ -5405,7 +5406,7 @@ export interface TerminateInstancesResult {
5405
5406
  * <p>Information about the terminated instances.</p>
5406
5407
  * @public
5407
5408
  */
5408
- TerminatingInstances?: InstanceStateChange[];
5409
+ TerminatingInstances?: InstanceStateChange[] | undefined;
5409
5410
  }
5410
5411
  /**
5411
5412
  * @public
@@ -5415,7 +5416,7 @@ export interface UnassignIpv6AddressesRequest {
5415
5416
  * <p>The IPv6 prefixes to unassign from the network interface.</p>
5416
5417
  * @public
5417
5418
  */
5418
- Ipv6Prefixes?: string[];
5419
+ Ipv6Prefixes?: string[] | undefined;
5419
5420
  /**
5420
5421
  * <p>The ID of the network interface.</p>
5421
5422
  * @public
@@ -5425,7 +5426,7 @@ export interface UnassignIpv6AddressesRequest {
5425
5426
  * <p>The IPv6 addresses to unassign from the network interface.</p>
5426
5427
  * @public
5427
5428
  */
5428
- Ipv6Addresses?: string[];
5429
+ Ipv6Addresses?: string[] | undefined;
5429
5430
  }
5430
5431
  /**
5431
5432
  * @public
@@ -5435,17 +5436,17 @@ export interface UnassignIpv6AddressesResult {
5435
5436
  * <p>The ID of the network interface.</p>
5436
5437
  * @public
5437
5438
  */
5438
- NetworkInterfaceId?: string;
5439
+ NetworkInterfaceId?: string | undefined;
5439
5440
  /**
5440
5441
  * <p>The IPv6 addresses that have been unassigned from the network interface.</p>
5441
5442
  * @public
5442
5443
  */
5443
- UnassignedIpv6Addresses?: string[];
5444
+ UnassignedIpv6Addresses?: string[] | undefined;
5444
5445
  /**
5445
5446
  * <p>The IPv4 prefixes that have been unassigned from the network interface.</p>
5446
5447
  * @public
5447
5448
  */
5448
- UnassignedIpv6Prefixes?: string[];
5449
+ UnassignedIpv6Prefixes?: string[] | undefined;
5449
5450
  }
5450
5451
  /**
5451
5452
  * <p>Contains the parameters for UnassignPrivateIpAddresses.</p>
@@ -5456,7 +5457,7 @@ export interface UnassignPrivateIpAddressesRequest {
5456
5457
  * <p>The IPv4 prefixes to unassign from the network interface.</p>
5457
5458
  * @public
5458
5459
  */
5459
- Ipv4Prefixes?: string[];
5460
+ Ipv4Prefixes?: string[] | undefined;
5460
5461
  /**
5461
5462
  * <p>The ID of the network interface.</p>
5462
5463
  * @public
@@ -5467,7 +5468,7 @@ export interface UnassignPrivateIpAddressesRequest {
5467
5468
  * option multiple times to unassign more than one IP address.</p>
5468
5469
  * @public
5469
5470
  */
5470
- PrivateIpAddresses?: string[];
5471
+ PrivateIpAddresses?: string[] | undefined;
5471
5472
  }
5472
5473
  /**
5473
5474
  * @public
@@ -5487,14 +5488,14 @@ export interface UnassignPrivateNatGatewayAddressRequest {
5487
5488
  * <p>The maximum amount of time to wait (in seconds) before forcibly releasing the IP addresses if connections are still in progress. Default value is 350 seconds.</p>
5488
5489
  * @public
5489
5490
  */
5490
- MaxDrainDurationSeconds?: number;
5491
+ MaxDrainDurationSeconds?: number | undefined;
5491
5492
  /**
5492
5493
  * <p>Checks whether you have the required permissions for the action, without actually making the request,
5493
5494
  * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
5494
5495
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
5495
5496
  * @public
5496
5497
  */
5497
- DryRun?: boolean;
5498
+ DryRun?: boolean | undefined;
5498
5499
  }
5499
5500
  /**
5500
5501
  * @public
@@ -5504,12 +5505,12 @@ export interface UnassignPrivateNatGatewayAddressResult {
5504
5505
  * <p>The ID of the NAT gateway.</p>
5505
5506
  * @public
5506
5507
  */
5507
- NatGatewayId?: string;
5508
+ NatGatewayId?: string | undefined;
5508
5509
  /**
5509
5510
  * <p>Information about the NAT gateway IP addresses.</p>
5510
5511
  * @public
5511
5512
  */
5512
- NatGatewayAddresses?: NatGatewayAddress[];
5513
+ NatGatewayAddresses?: NatGatewayAddress[] | undefined;
5513
5514
  }
5514
5515
  /**
5515
5516
  * @public
@@ -5526,7 +5527,7 @@ export interface UnlockSnapshotRequest {
5526
5527
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
5527
5528
  * @public
5528
5529
  */
5529
- DryRun?: boolean;
5530
+ DryRun?: boolean | undefined;
5530
5531
  }
5531
5532
  /**
5532
5533
  * @public
@@ -5536,7 +5537,7 @@ export interface UnlockSnapshotResult {
5536
5537
  * <p>The ID of the snapshot.</p>
5537
5538
  * @public
5538
5539
  */
5539
- SnapshotId?: string;
5540
+ SnapshotId?: string | undefined;
5540
5541
  }
5541
5542
  /**
5542
5543
  * @public
@@ -5553,7 +5554,7 @@ export interface UnmonitorInstancesRequest {
5553
5554
  * <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
5554
5555
  * @public
5555
5556
  */
5556
- DryRun?: boolean;
5557
+ DryRun?: boolean | undefined;
5557
5558
  }
5558
5559
  /**
5559
5560
  * @public
@@ -5563,7 +5564,7 @@ export interface UnmonitorInstancesResult {
5563
5564
  * <p>The monitoring information.</p>
5564
5565
  * @public
5565
5566
  */
5566
- InstanceMonitorings?: InstanceMonitoring[];
5567
+ InstanceMonitorings?: InstanceMonitoring[] | undefined;
5567
5568
  }
5568
5569
  /**
5569
5570
  * <p>Describes the description of a security group rule.</p>
@@ -5575,12 +5576,12 @@ export interface SecurityGroupRuleDescription {
5575
5576
  * <p>The ID of the security group rule.</p>
5576
5577
  * @public
5577
5578
  */
5578
- SecurityGroupRuleId?: string;
5579
+ SecurityGroupRuleId?: string | undefined;
5579
5580
  /**
5580
5581
  * <p>The description of the security group rule.</p>
5581
5582
  * @public
5582
5583
  */
5583
- Description?: string;
5584
+ Description?: string | undefined;
5584
5585
  }
5585
5586
  /**
5586
5587
  * @public
@@ -5592,32 +5593,32 @@ export interface UpdateSecurityGroupRuleDescriptionsEgressRequest {
5592
5593
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
5593
5594
  * @public
5594
5595
  */
5595
- DryRun?: boolean;
5596
+ DryRun?: boolean | undefined;
5596
5597
  /**
5597
5598
  * <p>The ID of the security group. You must specify either the security group ID or the
5598
5599
  * security group name in the request. For security groups in a nondefault VPC, you must
5599
5600
  * specify the security group ID.</p>
5600
5601
  * @public
5601
5602
  */
5602
- GroupId?: string;
5603
+ GroupId?: string | undefined;
5603
5604
  /**
5604
5605
  * <p>[Default VPC] The name of the security group. You must specify either the security group
5605
5606
  * ID or the security group name.</p>
5606
5607
  * @public
5607
5608
  */
5608
- GroupName?: string;
5609
+ GroupName?: string | undefined;
5609
5610
  /**
5610
5611
  * <p>The IP permissions for the security group rule. You must specify either the IP permissions
5611
5612
  * or the description.</p>
5612
5613
  * @public
5613
5614
  */
5614
- IpPermissions?: IpPermission[];
5615
+ IpPermissions?: IpPermission[] | undefined;
5615
5616
  /**
5616
5617
  * <p>The description for the egress security group rules. You must specify either the
5617
5618
  * description or the IP permissions.</p>
5618
5619
  * @public
5619
5620
  */
5620
- SecurityGroupRuleDescriptions?: SecurityGroupRuleDescription[];
5621
+ SecurityGroupRuleDescriptions?: SecurityGroupRuleDescription[] | undefined;
5621
5622
  }
5622
5623
  /**
5623
5624
  * @public
@@ -5627,7 +5628,7 @@ export interface UpdateSecurityGroupRuleDescriptionsEgressResult {
5627
5628
  * <p>Returns <code>true</code> if the request succeeds; otherwise, returns an error.</p>
5628
5629
  * @public
5629
5630
  */
5630
- Return?: boolean;
5631
+ Return?: boolean | undefined;
5631
5632
  }
5632
5633
  /**
5633
5634
  * @public
@@ -5639,33 +5640,33 @@ export interface UpdateSecurityGroupRuleDescriptionsIngressRequest {
5639
5640
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
5640
5641
  * @public
5641
5642
  */
5642
- DryRun?: boolean;
5643
+ DryRun?: boolean | undefined;
5643
5644
  /**
5644
5645
  * <p>The ID of the security group. You must specify either the security group ID or the
5645
5646
  * security group name in the request. For security groups in a nondefault VPC, you must
5646
5647
  * specify the security group ID.</p>
5647
5648
  * @public
5648
5649
  */
5649
- GroupId?: string;
5650
+ GroupId?: string | undefined;
5650
5651
  /**
5651
5652
  * <p>[Default VPC] The name of the security group. You must specify either the
5652
5653
  * security group ID or the security group name. For security groups in a
5653
5654
  * nondefault VPC, you must specify the security group ID.</p>
5654
5655
  * @public
5655
5656
  */
5656
- GroupName?: string;
5657
+ GroupName?: string | undefined;
5657
5658
  /**
5658
5659
  * <p>The IP permissions for the security group rule. You must specify either IP permissions
5659
5660
  * or a description.</p>
5660
5661
  * @public
5661
5662
  */
5662
- IpPermissions?: IpPermission[];
5663
+ IpPermissions?: IpPermission[] | undefined;
5663
5664
  /**
5664
5665
  * <p>The description for the ingress security group rules. You must specify either
5665
5666
  * a description or IP permissions.</p>
5666
5667
  * @public
5667
5668
  */
5668
- SecurityGroupRuleDescriptions?: SecurityGroupRuleDescription[];
5669
+ SecurityGroupRuleDescriptions?: SecurityGroupRuleDescription[] | undefined;
5669
5670
  }
5670
5671
  /**
5671
5672
  * @public
@@ -5675,7 +5676,7 @@ export interface UpdateSecurityGroupRuleDescriptionsIngressResult {
5675
5676
  * <p>Returns <code>true</code> if the request succeeds; otherwise, returns an error.</p>
5676
5677
  * @public
5677
5678
  */
5678
- Return?: boolean;
5679
+ Return?: boolean | undefined;
5679
5680
  }
5680
5681
  /**
5681
5682
  * @public
@@ -5692,7 +5693,7 @@ export interface WithdrawByoipCidrRequest {
5692
5693
  * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
5693
5694
  * @public
5694
5695
  */
5695
- DryRun?: boolean;
5696
+ DryRun?: boolean | undefined;
5696
5697
  }
5697
5698
  /**
5698
5699
  * @public
@@ -5702,7 +5703,7 @@ export interface WithdrawByoipCidrResult {
5702
5703
  * <p>Information about the address pool.</p>
5703
5704
  * @public
5704
5705
  */
5705
- ByoipCidr?: ByoipCidr;
5706
+ ByoipCidr?: ByoipCidr | undefined;
5706
5707
  }
5707
5708
  /**
5708
5709
  * @internal