@aws-sdk/client-direct-connect 3.686.0 → 3.691.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,13 +1,15 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { DirectConnectServiceException as __BaseException } from "./DirectConnectServiceException";
3
3
  export interface RouteFilterPrefix {
4
- cidr?: string;
4
+ cidr?: string | undefined;
5
5
  }
6
6
  export interface AcceptDirectConnectGatewayAssociationProposalRequest {
7
7
  directConnectGatewayId: string | undefined;
8
8
  proposalId: string | undefined;
9
9
  associatedGatewayOwnerAccount: string | undefined;
10
- overrideAllowedPrefixesToDirectConnectGateway?: RouteFilterPrefix[];
10
+ overrideAllowedPrefixesToDirectConnectGateway?:
11
+ | RouteFilterPrefix[]
12
+ | undefined;
11
13
  }
12
14
  export declare const GatewayType: {
13
15
  readonly TransitGateway: "transitGateway";
@@ -15,10 +17,10 @@ export declare const GatewayType: {
15
17
  };
16
18
  export type GatewayType = (typeof GatewayType)[keyof typeof GatewayType];
17
19
  export interface AssociatedGateway {
18
- id?: string;
19
- type?: GatewayType;
20
- ownerAccount?: string;
21
- region?: string;
20
+ id?: string | undefined;
21
+ type?: GatewayType | undefined;
22
+ ownerAccount?: string | undefined;
23
+ region?: string | undefined;
22
24
  }
23
25
  export declare const DirectConnectGatewayAssociationState: {
24
26
  readonly associated: "associated";
@@ -30,19 +32,19 @@ export declare const DirectConnectGatewayAssociationState: {
30
32
  export type DirectConnectGatewayAssociationState =
31
33
  (typeof DirectConnectGatewayAssociationState)[keyof typeof DirectConnectGatewayAssociationState];
32
34
  export interface DirectConnectGatewayAssociation {
33
- directConnectGatewayId?: string;
34
- directConnectGatewayOwnerAccount?: string;
35
- associationState?: DirectConnectGatewayAssociationState;
36
- stateChangeError?: string;
37
- associatedGateway?: AssociatedGateway;
38
- associationId?: string;
39
- allowedPrefixesToDirectConnectGateway?: RouteFilterPrefix[];
40
- virtualGatewayId?: string;
41
- virtualGatewayRegion?: string;
42
- virtualGatewayOwnerAccount?: string;
35
+ directConnectGatewayId?: string | undefined;
36
+ directConnectGatewayOwnerAccount?: string | undefined;
37
+ associationState?: DirectConnectGatewayAssociationState | undefined;
38
+ stateChangeError?: string | undefined;
39
+ associatedGateway?: AssociatedGateway | undefined;
40
+ associationId?: string | undefined;
41
+ allowedPrefixesToDirectConnectGateway?: RouteFilterPrefix[] | undefined;
42
+ virtualGatewayId?: string | undefined;
43
+ virtualGatewayRegion?: string | undefined;
44
+ virtualGatewayOwnerAccount?: string | undefined;
43
45
  }
44
46
  export interface AcceptDirectConnectGatewayAssociationProposalResult {
45
- directConnectGatewayAssociation?: DirectConnectGatewayAssociation;
47
+ directConnectGatewayAssociation?: DirectConnectGatewayAssociation | undefined;
46
48
  }
47
49
  export declare class DirectConnectClientException extends __BaseException {
48
50
  readonly name: "DirectConnectClientException";
@@ -64,8 +66,8 @@ export declare const AddressFamily: {
64
66
  };
65
67
  export type AddressFamily = (typeof AddressFamily)[keyof typeof AddressFamily];
66
68
  export interface CustomerAgreement {
67
- agreementName?: string;
68
- status?: string;
69
+ agreementName?: string | undefined;
70
+ status?: string | undefined;
69
71
  }
70
72
  export interface AllocateConnectionOnInterconnectRequest {
71
73
  bandwidth: string | undefined;
@@ -95,38 +97,38 @@ export declare const HasLogicalRedundancy: {
95
97
  export type HasLogicalRedundancy =
96
98
  (typeof HasLogicalRedundancy)[keyof typeof HasLogicalRedundancy];
97
99
  export interface MacSecKey {
98
- secretARN?: string;
99
- ckn?: string;
100
- state?: string;
101
- startOn?: string;
100
+ secretARN?: string | undefined;
101
+ ckn?: string | undefined;
102
+ state?: string | undefined;
103
+ startOn?: string | undefined;
102
104
  }
103
105
  export interface Tag {
104
106
  key: string | undefined;
105
- value?: string;
107
+ value?: string | undefined;
106
108
  }
107
109
  export interface Connection {
108
- ownerAccount?: string;
109
- connectionId?: string;
110
- connectionName?: string;
111
- connectionState?: ConnectionState;
112
- region?: string;
113
- location?: string;
114
- bandwidth?: string;
115
- vlan?: number;
116
- partnerName?: string;
117
- loaIssueTime?: Date;
118
- lagId?: string;
119
- awsDevice?: string;
120
- jumboFrameCapable?: boolean;
121
- awsDeviceV2?: string;
122
- awsLogicalDeviceId?: string;
123
- hasLogicalRedundancy?: HasLogicalRedundancy;
124
- tags?: Tag[];
125
- providerName?: string;
126
- macSecCapable?: boolean;
127
- portEncryptionStatus?: string;
128
- encryptionMode?: string;
129
- macSecKeys?: MacSecKey[];
110
+ ownerAccount?: string | undefined;
111
+ connectionId?: string | undefined;
112
+ connectionName?: string | undefined;
113
+ connectionState?: ConnectionState | undefined;
114
+ region?: string | undefined;
115
+ location?: string | undefined;
116
+ bandwidth?: string | undefined;
117
+ vlan?: number | undefined;
118
+ partnerName?: string | undefined;
119
+ loaIssueTime?: Date | undefined;
120
+ lagId?: string | undefined;
121
+ awsDevice?: string | undefined;
122
+ jumboFrameCapable?: boolean | undefined;
123
+ awsDeviceV2?: string | undefined;
124
+ awsLogicalDeviceId?: string | undefined;
125
+ hasLogicalRedundancy?: HasLogicalRedundancy | undefined;
126
+ tags?: Tag[] | undefined;
127
+ providerName?: string | undefined;
128
+ macSecCapable?: boolean | undefined;
129
+ portEncryptionStatus?: string | undefined;
130
+ encryptionMode?: string | undefined;
131
+ macSecKeys?: MacSecKey[] | undefined;
130
132
  }
131
133
  export interface AllocateHostedConnectionRequest {
132
134
  connectionId: string | undefined;
@@ -134,7 +136,7 @@ export interface AllocateHostedConnectionRequest {
134
136
  bandwidth: string | undefined;
135
137
  connectionName: string | undefined;
136
138
  vlan: number | undefined;
137
- tags?: Tag[];
139
+ tags?: Tag[] | undefined;
138
140
  }
139
141
  export declare class DuplicateTagKeysException extends __BaseException {
140
142
  readonly name: "DuplicateTagKeysException";
@@ -154,12 +156,12 @@ export interface NewPrivateVirtualInterfaceAllocation {
154
156
  virtualInterfaceName: string | undefined;
155
157
  vlan: number | undefined;
156
158
  asn: number | undefined;
157
- mtu?: number;
158
- authKey?: string;
159
- amazonAddress?: string;
160
- addressFamily?: AddressFamily;
161
- customerAddress?: string;
162
- tags?: Tag[];
159
+ mtu?: number | undefined;
160
+ authKey?: string | undefined;
161
+ amazonAddress?: string | undefined;
162
+ addressFamily?: AddressFamily | undefined;
163
+ customerAddress?: string | undefined;
164
+ tags?: Tag[] | undefined;
163
165
  }
164
166
  export interface AllocatePrivateVirtualInterfaceRequest {
165
167
  connectionId: string | undefined;
@@ -183,16 +185,16 @@ export declare const BGPStatus: {
183
185
  };
184
186
  export type BGPStatus = (typeof BGPStatus)[keyof typeof BGPStatus];
185
187
  export interface BGPPeer {
186
- bgpPeerId?: string;
187
- asn?: number;
188
- authKey?: string;
189
- addressFamily?: AddressFamily;
190
- amazonAddress?: string;
191
- customerAddress?: string;
192
- bgpPeerState?: BGPPeerState;
193
- bgpStatus?: BGPStatus;
194
- awsDeviceV2?: string;
195
- awsLogicalDeviceId?: string;
188
+ bgpPeerId?: string | undefined;
189
+ asn?: number | undefined;
190
+ authKey?: string | undefined;
191
+ addressFamily?: AddressFamily | undefined;
192
+ amazonAddress?: string | undefined;
193
+ customerAddress?: string | undefined;
194
+ bgpPeerState?: BGPPeerState | undefined;
195
+ bgpStatus?: BGPStatus | undefined;
196
+ awsDeviceV2?: string | undefined;
197
+ awsLogicalDeviceId?: string | undefined;
196
198
  }
197
199
  export declare const VirtualInterfaceState: {
198
200
  readonly available: "available";
@@ -208,43 +210,43 @@ export declare const VirtualInterfaceState: {
208
210
  export type VirtualInterfaceState =
209
211
  (typeof VirtualInterfaceState)[keyof typeof VirtualInterfaceState];
210
212
  export interface VirtualInterface {
211
- ownerAccount?: string;
212
- virtualInterfaceId?: string;
213
- location?: string;
214
- connectionId?: string;
215
- virtualInterfaceType?: string;
216
- virtualInterfaceName?: string;
217
- vlan?: number;
218
- asn?: number;
219
- amazonSideAsn?: number;
220
- authKey?: string;
221
- amazonAddress?: string;
222
- customerAddress?: string;
223
- addressFamily?: AddressFamily;
224
- virtualInterfaceState?: VirtualInterfaceState;
225
- customerRouterConfig?: string;
226
- mtu?: number;
227
- jumboFrameCapable?: boolean;
228
- virtualGatewayId?: string;
229
- directConnectGatewayId?: string;
230
- routeFilterPrefixes?: RouteFilterPrefix[];
231
- bgpPeers?: BGPPeer[];
232
- region?: string;
233
- awsDeviceV2?: string;
234
- awsLogicalDeviceId?: string;
235
- tags?: Tag[];
236
- siteLinkEnabled?: boolean;
213
+ ownerAccount?: string | undefined;
214
+ virtualInterfaceId?: string | undefined;
215
+ location?: string | undefined;
216
+ connectionId?: string | undefined;
217
+ virtualInterfaceType?: string | undefined;
218
+ virtualInterfaceName?: string | undefined;
219
+ vlan?: number | undefined;
220
+ asn?: number | undefined;
221
+ amazonSideAsn?: number | undefined;
222
+ authKey?: string | undefined;
223
+ amazonAddress?: string | undefined;
224
+ customerAddress?: string | undefined;
225
+ addressFamily?: AddressFamily | undefined;
226
+ virtualInterfaceState?: VirtualInterfaceState | undefined;
227
+ customerRouterConfig?: string | undefined;
228
+ mtu?: number | undefined;
229
+ jumboFrameCapable?: boolean | undefined;
230
+ virtualGatewayId?: string | undefined;
231
+ directConnectGatewayId?: string | undefined;
232
+ routeFilterPrefixes?: RouteFilterPrefix[] | undefined;
233
+ bgpPeers?: BGPPeer[] | undefined;
234
+ region?: string | undefined;
235
+ awsDeviceV2?: string | undefined;
236
+ awsLogicalDeviceId?: string | undefined;
237
+ tags?: Tag[] | undefined;
238
+ siteLinkEnabled?: boolean | undefined;
237
239
  }
238
240
  export interface NewPublicVirtualInterfaceAllocation {
239
241
  virtualInterfaceName: string | undefined;
240
242
  vlan: number | undefined;
241
243
  asn: number | undefined;
242
- authKey?: string;
243
- amazonAddress?: string;
244
- customerAddress?: string;
245
- addressFamily?: AddressFamily;
246
- routeFilterPrefixes?: RouteFilterPrefix[];
247
- tags?: Tag[];
244
+ authKey?: string | undefined;
245
+ amazonAddress?: string | undefined;
246
+ customerAddress?: string | undefined;
247
+ addressFamily?: AddressFamily | undefined;
248
+ routeFilterPrefixes?: RouteFilterPrefix[] | undefined;
249
+ tags?: Tag[] | undefined;
248
250
  }
249
251
  export interface AllocatePublicVirtualInterfaceRequest {
250
252
  connectionId: string | undefined;
@@ -254,15 +256,15 @@ export interface AllocatePublicVirtualInterfaceRequest {
254
256
  | undefined;
255
257
  }
256
258
  export interface NewTransitVirtualInterfaceAllocation {
257
- virtualInterfaceName?: string;
258
- vlan?: number;
259
- asn?: number;
260
- mtu?: number;
261
- authKey?: string;
262
- amazonAddress?: string;
263
- customerAddress?: string;
264
- addressFamily?: AddressFamily;
265
- tags?: Tag[];
259
+ virtualInterfaceName?: string | undefined;
260
+ vlan?: number | undefined;
261
+ asn?: number | undefined;
262
+ mtu?: number | undefined;
263
+ authKey?: string | undefined;
264
+ amazonAddress?: string | undefined;
265
+ customerAddress?: string | undefined;
266
+ addressFamily?: AddressFamily | undefined;
267
+ tags?: Tag[] | undefined;
266
268
  }
267
269
  export interface AllocateTransitVirtualInterfaceRequest {
268
270
  connectionId: string | undefined;
@@ -272,7 +274,7 @@ export interface AllocateTransitVirtualInterfaceRequest {
272
274
  | undefined;
273
275
  }
274
276
  export interface AllocateTransitVirtualInterfaceResult {
275
- virtualInterface?: VirtualInterface;
277
+ virtualInterface?: VirtualInterface | undefined;
276
278
  }
277
279
  export interface AssociateConnectionWithLagRequest {
278
280
  connectionId: string | undefined;
@@ -284,13 +286,13 @@ export interface AssociateHostedConnectionRequest {
284
286
  }
285
287
  export interface AssociateMacSecKeyRequest {
286
288
  connectionId: string | undefined;
287
- secretARN?: string;
288
- ckn?: string;
289
- cak?: string;
289
+ secretARN?: string | undefined;
290
+ ckn?: string | undefined;
291
+ cak?: string | undefined;
290
292
  }
291
293
  export interface AssociateMacSecKeyResponse {
292
- connectionId?: string;
293
- macSecKeys?: MacSecKey[];
294
+ connectionId?: string | undefined;
295
+ macSecKeys?: MacSecKey[] | undefined;
294
296
  }
295
297
  export interface AssociateVirtualInterfaceRequest {
296
298
  virtualInterfaceId: string | undefined;
@@ -300,64 +302,64 @@ export interface ConfirmConnectionRequest {
300
302
  connectionId: string | undefined;
301
303
  }
302
304
  export interface ConfirmConnectionResponse {
303
- connectionState?: ConnectionState;
305
+ connectionState?: ConnectionState | undefined;
304
306
  }
305
307
  export interface ConfirmCustomerAgreementRequest {
306
- agreementName?: string;
308
+ agreementName?: string | undefined;
307
309
  }
308
310
  export interface ConfirmCustomerAgreementResponse {
309
- status?: string;
311
+ status?: string | undefined;
310
312
  }
311
313
  export interface ConfirmPrivateVirtualInterfaceRequest {
312
314
  virtualInterfaceId: string | undefined;
313
- virtualGatewayId?: string;
314
- directConnectGatewayId?: string;
315
+ virtualGatewayId?: string | undefined;
316
+ directConnectGatewayId?: string | undefined;
315
317
  }
316
318
  export interface ConfirmPrivateVirtualInterfaceResponse {
317
- virtualInterfaceState?: VirtualInterfaceState;
319
+ virtualInterfaceState?: VirtualInterfaceState | undefined;
318
320
  }
319
321
  export interface ConfirmPublicVirtualInterfaceRequest {
320
322
  virtualInterfaceId: string | undefined;
321
323
  }
322
324
  export interface ConfirmPublicVirtualInterfaceResponse {
323
- virtualInterfaceState?: VirtualInterfaceState;
325
+ virtualInterfaceState?: VirtualInterfaceState | undefined;
324
326
  }
325
327
  export interface ConfirmTransitVirtualInterfaceRequest {
326
328
  virtualInterfaceId: string | undefined;
327
329
  directConnectGatewayId: string | undefined;
328
330
  }
329
331
  export interface ConfirmTransitVirtualInterfaceResponse {
330
- virtualInterfaceState?: VirtualInterfaceState;
332
+ virtualInterfaceState?: VirtualInterfaceState | undefined;
331
333
  }
332
334
  export interface Connections {
333
- connections?: Connection[];
335
+ connections?: Connection[] | undefined;
334
336
  }
335
337
  export interface NewBGPPeer {
336
- asn?: number;
337
- authKey?: string;
338
- addressFamily?: AddressFamily;
339
- amazonAddress?: string;
340
- customerAddress?: string;
338
+ asn?: number | undefined;
339
+ authKey?: string | undefined;
340
+ addressFamily?: AddressFamily | undefined;
341
+ amazonAddress?: string | undefined;
342
+ customerAddress?: string | undefined;
341
343
  }
342
344
  export interface CreateBGPPeerRequest {
343
- virtualInterfaceId?: string;
344
- newBGPPeer?: NewBGPPeer;
345
+ virtualInterfaceId?: string | undefined;
346
+ newBGPPeer?: NewBGPPeer | undefined;
345
347
  }
346
348
  export interface CreateBGPPeerResponse {
347
- virtualInterface?: VirtualInterface;
349
+ virtualInterface?: VirtualInterface | undefined;
348
350
  }
349
351
  export interface CreateConnectionRequest {
350
352
  location: string | undefined;
351
353
  bandwidth: string | undefined;
352
354
  connectionName: string | undefined;
353
- lagId?: string;
354
- tags?: Tag[];
355
- providerName?: string;
356
- requestMACSec?: boolean;
355
+ lagId?: string | undefined;
356
+ tags?: Tag[] | undefined;
357
+ providerName?: string | undefined;
358
+ requestMACSec?: boolean | undefined;
357
359
  }
358
360
  export interface CreateDirectConnectGatewayRequest {
359
361
  directConnectGatewayName: string | undefined;
360
- amazonSideAsn?: number;
362
+ amazonSideAsn?: number | undefined;
361
363
  }
362
364
  export declare const DirectConnectGatewayState: {
363
365
  readonly available: "available";
@@ -368,31 +370,31 @@ export declare const DirectConnectGatewayState: {
368
370
  export type DirectConnectGatewayState =
369
371
  (typeof DirectConnectGatewayState)[keyof typeof DirectConnectGatewayState];
370
372
  export interface DirectConnectGateway {
371
- directConnectGatewayId?: string;
372
- directConnectGatewayName?: string;
373
- amazonSideAsn?: number;
374
- ownerAccount?: string;
375
- directConnectGatewayState?: DirectConnectGatewayState;
376
- stateChangeError?: string;
373
+ directConnectGatewayId?: string | undefined;
374
+ directConnectGatewayName?: string | undefined;
375
+ amazonSideAsn?: number | undefined;
376
+ ownerAccount?: string | undefined;
377
+ directConnectGatewayState?: DirectConnectGatewayState | undefined;
378
+ stateChangeError?: string | undefined;
377
379
  }
378
380
  export interface CreateDirectConnectGatewayResult {
379
- directConnectGateway?: DirectConnectGateway;
381
+ directConnectGateway?: DirectConnectGateway | undefined;
380
382
  }
381
383
  export interface CreateDirectConnectGatewayAssociationRequest {
382
384
  directConnectGatewayId: string | undefined;
383
- gatewayId?: string;
384
- addAllowedPrefixesToDirectConnectGateway?: RouteFilterPrefix[];
385
- virtualGatewayId?: string;
385
+ gatewayId?: string | undefined;
386
+ addAllowedPrefixesToDirectConnectGateway?: RouteFilterPrefix[] | undefined;
387
+ virtualGatewayId?: string | undefined;
386
388
  }
387
389
  export interface CreateDirectConnectGatewayAssociationResult {
388
- directConnectGatewayAssociation?: DirectConnectGatewayAssociation;
390
+ directConnectGatewayAssociation?: DirectConnectGatewayAssociation | undefined;
389
391
  }
390
392
  export interface CreateDirectConnectGatewayAssociationProposalRequest {
391
393
  directConnectGatewayId: string | undefined;
392
394
  directConnectGatewayOwnerAccount: string | undefined;
393
395
  gatewayId: string | undefined;
394
- addAllowedPrefixesToDirectConnectGateway?: RouteFilterPrefix[];
395
- removeAllowedPrefixesToDirectConnectGateway?: RouteFilterPrefix[];
396
+ addAllowedPrefixesToDirectConnectGateway?: RouteFilterPrefix[] | undefined;
397
+ removeAllowedPrefixesToDirectConnectGateway?: RouteFilterPrefix[] | undefined;
396
398
  }
397
399
  export declare const DirectConnectGatewayAssociationProposalState: {
398
400
  readonly accepted: "accepted";
@@ -402,24 +404,30 @@ export declare const DirectConnectGatewayAssociationProposalState: {
402
404
  export type DirectConnectGatewayAssociationProposalState =
403
405
  (typeof DirectConnectGatewayAssociationProposalState)[keyof typeof DirectConnectGatewayAssociationProposalState];
404
406
  export interface DirectConnectGatewayAssociationProposal {
405
- proposalId?: string;
406
- directConnectGatewayId?: string;
407
- directConnectGatewayOwnerAccount?: string;
408
- proposalState?: DirectConnectGatewayAssociationProposalState;
409
- associatedGateway?: AssociatedGateway;
410
- existingAllowedPrefixesToDirectConnectGateway?: RouteFilterPrefix[];
411
- requestedAllowedPrefixesToDirectConnectGateway?: RouteFilterPrefix[];
407
+ proposalId?: string | undefined;
408
+ directConnectGatewayId?: string | undefined;
409
+ directConnectGatewayOwnerAccount?: string | undefined;
410
+ proposalState?: DirectConnectGatewayAssociationProposalState | undefined;
411
+ associatedGateway?: AssociatedGateway | undefined;
412
+ existingAllowedPrefixesToDirectConnectGateway?:
413
+ | RouteFilterPrefix[]
414
+ | undefined;
415
+ requestedAllowedPrefixesToDirectConnectGateway?:
416
+ | RouteFilterPrefix[]
417
+ | undefined;
412
418
  }
413
419
  export interface CreateDirectConnectGatewayAssociationProposalResult {
414
- directConnectGatewayAssociationProposal?: DirectConnectGatewayAssociationProposal;
420
+ directConnectGatewayAssociationProposal?:
421
+ | DirectConnectGatewayAssociationProposal
422
+ | undefined;
415
423
  }
416
424
  export interface CreateInterconnectRequest {
417
425
  interconnectName: string | undefined;
418
426
  bandwidth: string | undefined;
419
427
  location: string | undefined;
420
- lagId?: string;
421
- tags?: Tag[];
422
- providerName?: string;
428
+ lagId?: string | undefined;
429
+ tags?: Tag[] | undefined;
430
+ providerName?: string | undefined;
423
431
  }
424
432
  export declare const InterconnectState: {
425
433
  readonly available: "available";
@@ -433,32 +441,32 @@ export declare const InterconnectState: {
433
441
  export type InterconnectState =
434
442
  (typeof InterconnectState)[keyof typeof InterconnectState];
435
443
  export interface Interconnect {
436
- interconnectId?: string;
437
- interconnectName?: string;
438
- interconnectState?: InterconnectState;
439
- region?: string;
440
- location?: string;
441
- bandwidth?: string;
442
- loaIssueTime?: Date;
443
- lagId?: string;
444
- awsDevice?: string;
445
- jumboFrameCapable?: boolean;
446
- awsDeviceV2?: string;
447
- awsLogicalDeviceId?: string;
448
- hasLogicalRedundancy?: HasLogicalRedundancy;
449
- tags?: Tag[];
450
- providerName?: string;
444
+ interconnectId?: string | undefined;
445
+ interconnectName?: string | undefined;
446
+ interconnectState?: InterconnectState | undefined;
447
+ region?: string | undefined;
448
+ location?: string | undefined;
449
+ bandwidth?: string | undefined;
450
+ loaIssueTime?: Date | undefined;
451
+ lagId?: string | undefined;
452
+ awsDevice?: string | undefined;
453
+ jumboFrameCapable?: boolean | undefined;
454
+ awsDeviceV2?: string | undefined;
455
+ awsLogicalDeviceId?: string | undefined;
456
+ hasLogicalRedundancy?: HasLogicalRedundancy | undefined;
457
+ tags?: Tag[] | undefined;
458
+ providerName?: string | undefined;
451
459
  }
452
460
  export interface CreateLagRequest {
453
461
  numberOfConnections: number | undefined;
454
462
  location: string | undefined;
455
463
  connectionsBandwidth: string | undefined;
456
464
  lagName: string | undefined;
457
- connectionId?: string;
458
- tags?: Tag[];
459
- childConnectionTags?: Tag[];
460
- providerName?: string;
461
- requestMACSec?: boolean;
465
+ connectionId?: string | undefined;
466
+ tags?: Tag[] | undefined;
467
+ childConnectionTags?: Tag[] | undefined;
468
+ providerName?: string | undefined;
469
+ requestMACSec?: boolean | undefined;
462
470
  }
463
471
  export declare const LagState: {
464
472
  readonly available: "available";
@@ -471,41 +479,41 @@ export declare const LagState: {
471
479
  };
472
480
  export type LagState = (typeof LagState)[keyof typeof LagState];
473
481
  export interface Lag {
474
- connectionsBandwidth?: string;
475
- numberOfConnections?: number;
476
- lagId?: string;
477
- ownerAccount?: string;
478
- lagName?: string;
479
- lagState?: LagState;
480
- location?: string;
481
- region?: string;
482
- minimumLinks?: number;
483
- awsDevice?: string;
484
- awsDeviceV2?: string;
485
- awsLogicalDeviceId?: string;
486
- connections?: Connection[];
487
- allowsHostedConnections?: boolean;
488
- jumboFrameCapable?: boolean;
489
- hasLogicalRedundancy?: HasLogicalRedundancy;
490
- tags?: Tag[];
491
- providerName?: string;
492
- macSecCapable?: boolean;
493
- encryptionMode?: string;
494
- macSecKeys?: MacSecKey[];
482
+ connectionsBandwidth?: string | undefined;
483
+ numberOfConnections?: number | undefined;
484
+ lagId?: string | undefined;
485
+ ownerAccount?: string | undefined;
486
+ lagName?: string | undefined;
487
+ lagState?: LagState | undefined;
488
+ location?: string | undefined;
489
+ region?: string | undefined;
490
+ minimumLinks?: number | undefined;
491
+ awsDevice?: string | undefined;
492
+ awsDeviceV2?: string | undefined;
493
+ awsLogicalDeviceId?: string | undefined;
494
+ connections?: Connection[] | undefined;
495
+ allowsHostedConnections?: boolean | undefined;
496
+ jumboFrameCapable?: boolean | undefined;
497
+ hasLogicalRedundancy?: HasLogicalRedundancy | undefined;
498
+ tags?: Tag[] | undefined;
499
+ providerName?: string | undefined;
500
+ macSecCapable?: boolean | undefined;
501
+ encryptionMode?: string | undefined;
502
+ macSecKeys?: MacSecKey[] | undefined;
495
503
  }
496
504
  export interface NewPrivateVirtualInterface {
497
505
  virtualInterfaceName: string | undefined;
498
506
  vlan: number | undefined;
499
507
  asn: number | undefined;
500
- mtu?: number;
501
- authKey?: string;
502
- amazonAddress?: string;
503
- customerAddress?: string;
504
- addressFamily?: AddressFamily;
505
- virtualGatewayId?: string;
506
- directConnectGatewayId?: string;
507
- tags?: Tag[];
508
- enableSiteLink?: boolean;
508
+ mtu?: number | undefined;
509
+ authKey?: string | undefined;
510
+ amazonAddress?: string | undefined;
511
+ customerAddress?: string | undefined;
512
+ addressFamily?: AddressFamily | undefined;
513
+ virtualGatewayId?: string | undefined;
514
+ directConnectGatewayId?: string | undefined;
515
+ tags?: Tag[] | undefined;
516
+ enableSiteLink?: boolean | undefined;
509
517
  }
510
518
  export interface CreatePrivateVirtualInterfaceRequest {
511
519
  connectionId: string | undefined;
@@ -515,45 +523,45 @@ export interface NewPublicVirtualInterface {
515
523
  virtualInterfaceName: string | undefined;
516
524
  vlan: number | undefined;
517
525
  asn: number | undefined;
518
- authKey?: string;
519
- amazonAddress?: string;
520
- customerAddress?: string;
521
- addressFamily?: AddressFamily;
522
- routeFilterPrefixes?: RouteFilterPrefix[];
523
- tags?: Tag[];
526
+ authKey?: string | undefined;
527
+ amazonAddress?: string | undefined;
528
+ customerAddress?: string | undefined;
529
+ addressFamily?: AddressFamily | undefined;
530
+ routeFilterPrefixes?: RouteFilterPrefix[] | undefined;
531
+ tags?: Tag[] | undefined;
524
532
  }
525
533
  export interface CreatePublicVirtualInterfaceRequest {
526
534
  connectionId: string | undefined;
527
535
  newPublicVirtualInterface: NewPublicVirtualInterface | undefined;
528
536
  }
529
537
  export interface NewTransitVirtualInterface {
530
- virtualInterfaceName?: string;
531
- vlan?: number;
532
- asn?: number;
533
- mtu?: number;
534
- authKey?: string;
535
- amazonAddress?: string;
536
- customerAddress?: string;
537
- addressFamily?: AddressFamily;
538
- directConnectGatewayId?: string;
539
- tags?: Tag[];
540
- enableSiteLink?: boolean;
538
+ virtualInterfaceName?: string | undefined;
539
+ vlan?: number | undefined;
540
+ asn?: number | undefined;
541
+ mtu?: number | undefined;
542
+ authKey?: string | undefined;
543
+ amazonAddress?: string | undefined;
544
+ customerAddress?: string | undefined;
545
+ addressFamily?: AddressFamily | undefined;
546
+ directConnectGatewayId?: string | undefined;
547
+ tags?: Tag[] | undefined;
548
+ enableSiteLink?: boolean | undefined;
541
549
  }
542
550
  export interface CreateTransitVirtualInterfaceRequest {
543
551
  connectionId: string | undefined;
544
552
  newTransitVirtualInterface: NewTransitVirtualInterface | undefined;
545
553
  }
546
554
  export interface CreateTransitVirtualInterfaceResult {
547
- virtualInterface?: VirtualInterface;
555
+ virtualInterface?: VirtualInterface | undefined;
548
556
  }
549
557
  export interface DeleteBGPPeerRequest {
550
- virtualInterfaceId?: string;
551
- asn?: number;
552
- customerAddress?: string;
553
- bgpPeerId?: string;
558
+ virtualInterfaceId?: string | undefined;
559
+ asn?: number | undefined;
560
+ customerAddress?: string | undefined;
561
+ bgpPeerId?: string | undefined;
554
562
  }
555
563
  export interface DeleteBGPPeerResponse {
556
- virtualInterface?: VirtualInterface;
564
+ virtualInterface?: VirtualInterface | undefined;
557
565
  }
558
566
  export interface DeleteConnectionRequest {
559
567
  connectionId: string | undefined;
@@ -562,27 +570,29 @@ export interface DeleteDirectConnectGatewayRequest {
562
570
  directConnectGatewayId: string | undefined;
563
571
  }
564
572
  export interface DeleteDirectConnectGatewayResult {
565
- directConnectGateway?: DirectConnectGateway;
573
+ directConnectGateway?: DirectConnectGateway | undefined;
566
574
  }
567
575
  export interface DeleteDirectConnectGatewayAssociationRequest {
568
- associationId?: string;
569
- directConnectGatewayId?: string;
570
- virtualGatewayId?: string;
576
+ associationId?: string | undefined;
577
+ directConnectGatewayId?: string | undefined;
578
+ virtualGatewayId?: string | undefined;
571
579
  }
572
580
  export interface DeleteDirectConnectGatewayAssociationResult {
573
- directConnectGatewayAssociation?: DirectConnectGatewayAssociation;
581
+ directConnectGatewayAssociation?: DirectConnectGatewayAssociation | undefined;
574
582
  }
575
583
  export interface DeleteDirectConnectGatewayAssociationProposalRequest {
576
584
  proposalId: string | undefined;
577
585
  }
578
586
  export interface DeleteDirectConnectGatewayAssociationProposalResult {
579
- directConnectGatewayAssociationProposal?: DirectConnectGatewayAssociationProposal;
587
+ directConnectGatewayAssociationProposal?:
588
+ | DirectConnectGatewayAssociationProposal
589
+ | undefined;
580
590
  }
581
591
  export interface DeleteInterconnectRequest {
582
592
  interconnectId: string | undefined;
583
593
  }
584
594
  export interface DeleteInterconnectResponse {
585
- interconnectState?: InterconnectState;
595
+ interconnectState?: InterconnectState | undefined;
586
596
  }
587
597
  export interface DeleteLagRequest {
588
598
  lagId: string | undefined;
@@ -591,7 +601,7 @@ export interface DeleteVirtualInterfaceRequest {
591
601
  virtualInterfaceId: string | undefined;
592
602
  }
593
603
  export interface DeleteVirtualInterfaceResponse {
594
- virtualInterfaceState?: VirtualInterfaceState;
604
+ virtualInterfaceState?: VirtualInterfaceState | undefined;
595
605
  }
596
606
  export declare const LoaContentType: {
597
607
  readonly PDF: "application/pdf";
@@ -600,18 +610,18 @@ export type LoaContentType =
600
610
  (typeof LoaContentType)[keyof typeof LoaContentType];
601
611
  export interface DescribeConnectionLoaRequest {
602
612
  connectionId: string | undefined;
603
- providerName?: string;
604
- loaContentType?: LoaContentType;
613
+ providerName?: string | undefined;
614
+ loaContentType?: LoaContentType | undefined;
605
615
  }
606
616
  export interface Loa {
607
- loaContent?: Uint8Array;
608
- loaContentType?: LoaContentType;
617
+ loaContent?: Uint8Array | undefined;
618
+ loaContentType?: LoaContentType | undefined;
609
619
  }
610
620
  export interface DescribeConnectionLoaResponse {
611
- loa?: Loa;
621
+ loa?: Loa | undefined;
612
622
  }
613
623
  export interface DescribeConnectionsRequest {
614
- connectionId?: string;
624
+ connectionId?: string | undefined;
615
625
  }
616
626
  export interface DescribeConnectionsOnInterconnectRequest {
617
627
  interconnectId: string | undefined;
@@ -624,37 +634,41 @@ export declare const NniPartnerType: {
624
634
  export type NniPartnerType =
625
635
  (typeof NniPartnerType)[keyof typeof NniPartnerType];
626
636
  export interface DescribeCustomerMetadataResponse {
627
- agreements?: CustomerAgreement[];
628
- nniPartnerType?: NniPartnerType;
637
+ agreements?: CustomerAgreement[] | undefined;
638
+ nniPartnerType?: NniPartnerType | undefined;
629
639
  }
630
640
  export interface DescribeDirectConnectGatewayAssociationProposalsRequest {
631
- directConnectGatewayId?: string;
632
- proposalId?: string;
633
- associatedGatewayId?: string;
634
- maxResults?: number;
635
- nextToken?: string;
641
+ directConnectGatewayId?: string | undefined;
642
+ proposalId?: string | undefined;
643
+ associatedGatewayId?: string | undefined;
644
+ maxResults?: number | undefined;
645
+ nextToken?: string | undefined;
636
646
  }
637
647
  export interface DescribeDirectConnectGatewayAssociationProposalsResult {
638
- directConnectGatewayAssociationProposals?: DirectConnectGatewayAssociationProposal[];
639
- nextToken?: string;
648
+ directConnectGatewayAssociationProposals?:
649
+ | DirectConnectGatewayAssociationProposal[]
650
+ | undefined;
651
+ nextToken?: string | undefined;
640
652
  }
641
653
  export interface DescribeDirectConnectGatewayAssociationsRequest {
642
- associationId?: string;
643
- associatedGatewayId?: string;
644
- directConnectGatewayId?: string;
645
- maxResults?: number;
646
- nextToken?: string;
647
- virtualGatewayId?: string;
654
+ associationId?: string | undefined;
655
+ associatedGatewayId?: string | undefined;
656
+ directConnectGatewayId?: string | undefined;
657
+ maxResults?: number | undefined;
658
+ nextToken?: string | undefined;
659
+ virtualGatewayId?: string | undefined;
648
660
  }
649
661
  export interface DescribeDirectConnectGatewayAssociationsResult {
650
- directConnectGatewayAssociations?: DirectConnectGatewayAssociation[];
651
- nextToken?: string;
662
+ directConnectGatewayAssociations?:
663
+ | DirectConnectGatewayAssociation[]
664
+ | undefined;
665
+ nextToken?: string | undefined;
652
666
  }
653
667
  export interface DescribeDirectConnectGatewayAttachmentsRequest {
654
- directConnectGatewayId?: string;
655
- virtualInterfaceId?: string;
656
- maxResults?: number;
657
- nextToken?: string;
668
+ directConnectGatewayId?: string | undefined;
669
+ virtualInterfaceId?: string | undefined;
670
+ maxResults?: number | undefined;
671
+ nextToken?: string | undefined;
658
672
  }
659
673
  export declare const DirectConnectGatewayAttachmentState: {
660
674
  readonly attached: "attached";
@@ -671,107 +685,109 @@ export declare const DirectConnectGatewayAttachmentType: {
671
685
  export type DirectConnectGatewayAttachmentType =
672
686
  (typeof DirectConnectGatewayAttachmentType)[keyof typeof DirectConnectGatewayAttachmentType];
673
687
  export interface DirectConnectGatewayAttachment {
674
- directConnectGatewayId?: string;
675
- virtualInterfaceId?: string;
676
- virtualInterfaceRegion?: string;
677
- virtualInterfaceOwnerAccount?: string;
678
- attachmentState?: DirectConnectGatewayAttachmentState;
679
- attachmentType?: DirectConnectGatewayAttachmentType;
680
- stateChangeError?: string;
688
+ directConnectGatewayId?: string | undefined;
689
+ virtualInterfaceId?: string | undefined;
690
+ virtualInterfaceRegion?: string | undefined;
691
+ virtualInterfaceOwnerAccount?: string | undefined;
692
+ attachmentState?: DirectConnectGatewayAttachmentState | undefined;
693
+ attachmentType?: DirectConnectGatewayAttachmentType | undefined;
694
+ stateChangeError?: string | undefined;
681
695
  }
682
696
  export interface DescribeDirectConnectGatewayAttachmentsResult {
683
- directConnectGatewayAttachments?: DirectConnectGatewayAttachment[];
684
- nextToken?: string;
697
+ directConnectGatewayAttachments?:
698
+ | DirectConnectGatewayAttachment[]
699
+ | undefined;
700
+ nextToken?: string | undefined;
685
701
  }
686
702
  export interface DescribeDirectConnectGatewaysRequest {
687
- directConnectGatewayId?: string;
688
- maxResults?: number;
689
- nextToken?: string;
703
+ directConnectGatewayId?: string | undefined;
704
+ maxResults?: number | undefined;
705
+ nextToken?: string | undefined;
690
706
  }
691
707
  export interface DescribeDirectConnectGatewaysResult {
692
- directConnectGateways?: DirectConnectGateway[];
693
- nextToken?: string;
708
+ directConnectGateways?: DirectConnectGateway[] | undefined;
709
+ nextToken?: string | undefined;
694
710
  }
695
711
  export interface DescribeHostedConnectionsRequest {
696
712
  connectionId: string | undefined;
697
713
  }
698
714
  export interface DescribeInterconnectLoaRequest {
699
715
  interconnectId: string | undefined;
700
- providerName?: string;
701
- loaContentType?: LoaContentType;
716
+ providerName?: string | undefined;
717
+ loaContentType?: LoaContentType | undefined;
702
718
  }
703
719
  export interface DescribeInterconnectLoaResponse {
704
- loa?: Loa;
720
+ loa?: Loa | undefined;
705
721
  }
706
722
  export interface DescribeInterconnectsRequest {
707
- interconnectId?: string;
723
+ interconnectId?: string | undefined;
708
724
  }
709
725
  export interface Interconnects {
710
- interconnects?: Interconnect[];
726
+ interconnects?: Interconnect[] | undefined;
711
727
  }
712
728
  export interface DescribeLagsRequest {
713
- lagId?: string;
729
+ lagId?: string | undefined;
714
730
  }
715
731
  export interface Lags {
716
- lags?: Lag[];
732
+ lags?: Lag[] | undefined;
717
733
  }
718
734
  export interface DescribeLoaRequest {
719
735
  connectionId: string | undefined;
720
- providerName?: string;
721
- loaContentType?: LoaContentType;
736
+ providerName?: string | undefined;
737
+ loaContentType?: LoaContentType | undefined;
722
738
  }
723
739
  export interface Location {
724
- locationCode?: string;
725
- locationName?: string;
726
- region?: string;
727
- availablePortSpeeds?: string[];
728
- availableProviders?: string[];
729
- availableMacSecPortSpeeds?: string[];
740
+ locationCode?: string | undefined;
741
+ locationName?: string | undefined;
742
+ region?: string | undefined;
743
+ availablePortSpeeds?: string[] | undefined;
744
+ availableProviders?: string[] | undefined;
745
+ availableMacSecPortSpeeds?: string[] | undefined;
730
746
  }
731
747
  export interface Locations {
732
- locations?: Location[];
748
+ locations?: Location[] | undefined;
733
749
  }
734
750
  export interface DescribeRouterConfigurationRequest {
735
751
  virtualInterfaceId: string | undefined;
736
- routerTypeIdentifier?: string;
752
+ routerTypeIdentifier?: string | undefined;
737
753
  }
738
754
  export interface RouterType {
739
- vendor?: string;
740
- platform?: string;
741
- software?: string;
742
- xsltTemplateName?: string;
743
- xsltTemplateNameForMacSec?: string;
744
- routerTypeIdentifier?: string;
755
+ vendor?: string | undefined;
756
+ platform?: string | undefined;
757
+ software?: string | undefined;
758
+ xsltTemplateName?: string | undefined;
759
+ xsltTemplateNameForMacSec?: string | undefined;
760
+ routerTypeIdentifier?: string | undefined;
745
761
  }
746
762
  export interface DescribeRouterConfigurationResponse {
747
- customerRouterConfig?: string;
748
- router?: RouterType;
749
- virtualInterfaceId?: string;
750
- virtualInterfaceName?: string;
763
+ customerRouterConfig?: string | undefined;
764
+ router?: RouterType | undefined;
765
+ virtualInterfaceId?: string | undefined;
766
+ virtualInterfaceName?: string | undefined;
751
767
  }
752
768
  export interface DescribeTagsRequest {
753
769
  resourceArns: string[] | undefined;
754
770
  }
755
771
  export interface ResourceTag {
756
- resourceArn?: string;
757
- tags?: Tag[];
772
+ resourceArn?: string | undefined;
773
+ tags?: Tag[] | undefined;
758
774
  }
759
775
  export interface DescribeTagsResponse {
760
- resourceTags?: ResourceTag[];
776
+ resourceTags?: ResourceTag[] | undefined;
761
777
  }
762
778
  export interface VirtualGateway {
763
- virtualGatewayId?: string;
764
- virtualGatewayState?: string;
779
+ virtualGatewayId?: string | undefined;
780
+ virtualGatewayState?: string | undefined;
765
781
  }
766
782
  export interface VirtualGateways {
767
- virtualGateways?: VirtualGateway[];
783
+ virtualGateways?: VirtualGateway[] | undefined;
768
784
  }
769
785
  export interface DescribeVirtualInterfacesRequest {
770
- connectionId?: string;
771
- virtualInterfaceId?: string;
786
+ connectionId?: string | undefined;
787
+ virtualInterfaceId?: string | undefined;
772
788
  }
773
789
  export interface VirtualInterfaces {
774
- virtualInterfaces?: VirtualInterface[];
790
+ virtualInterfaces?: VirtualInterface[] | undefined;
775
791
  }
776
792
  export interface DisassociateConnectionFromLagRequest {
777
793
  connectionId: string | undefined;
@@ -782,44 +798,44 @@ export interface DisassociateMacSecKeyRequest {
782
798
  secretARN: string | undefined;
783
799
  }
784
800
  export interface DisassociateMacSecKeyResponse {
785
- connectionId?: string;
786
- macSecKeys?: MacSecKey[];
801
+ connectionId?: string | undefined;
802
+ macSecKeys?: MacSecKey[] | undefined;
787
803
  }
788
804
  export interface ListVirtualInterfaceTestHistoryRequest {
789
- testId?: string;
790
- virtualInterfaceId?: string;
791
- bgpPeers?: string[];
792
- status?: string;
793
- maxResults?: number;
794
- nextToken?: string;
805
+ testId?: string | undefined;
806
+ virtualInterfaceId?: string | undefined;
807
+ bgpPeers?: string[] | undefined;
808
+ status?: string | undefined;
809
+ maxResults?: number | undefined;
810
+ nextToken?: string | undefined;
795
811
  }
796
812
  export interface VirtualInterfaceTestHistory {
797
- testId?: string;
798
- virtualInterfaceId?: string;
799
- bgpPeers?: string[];
800
- status?: string;
801
- ownerAccount?: string;
802
- testDurationInMinutes?: number;
803
- startTime?: Date;
804
- endTime?: Date;
813
+ testId?: string | undefined;
814
+ virtualInterfaceId?: string | undefined;
815
+ bgpPeers?: string[] | undefined;
816
+ status?: string | undefined;
817
+ ownerAccount?: string | undefined;
818
+ testDurationInMinutes?: number | undefined;
819
+ startTime?: Date | undefined;
820
+ endTime?: Date | undefined;
805
821
  }
806
822
  export interface ListVirtualInterfaceTestHistoryResponse {
807
- virtualInterfaceTestHistory?: VirtualInterfaceTestHistory[];
808
- nextToken?: string;
823
+ virtualInterfaceTestHistory?: VirtualInterfaceTestHistory[] | undefined;
824
+ nextToken?: string | undefined;
809
825
  }
810
826
  export interface StartBgpFailoverTestRequest {
811
827
  virtualInterfaceId: string | undefined;
812
- bgpPeers?: string[];
813
- testDurationInMinutes?: number;
828
+ bgpPeers?: string[] | undefined;
829
+ testDurationInMinutes?: number | undefined;
814
830
  }
815
831
  export interface StartBgpFailoverTestResponse {
816
- virtualInterfaceTest?: VirtualInterfaceTestHistory;
832
+ virtualInterfaceTest?: VirtualInterfaceTestHistory | undefined;
817
833
  }
818
834
  export interface StopBgpFailoverTestRequest {
819
835
  virtualInterfaceId: string | undefined;
820
836
  }
821
837
  export interface StopBgpFailoverTestResponse {
822
- virtualInterfaceTest?: VirtualInterfaceTestHistory;
838
+ virtualInterfaceTest?: VirtualInterfaceTestHistory | undefined;
823
839
  }
824
840
  export interface TagResourceRequest {
825
841
  resourceArn: string | undefined;
@@ -833,33 +849,33 @@ export interface UntagResourceRequest {
833
849
  export interface UntagResourceResponse {}
834
850
  export interface UpdateConnectionRequest {
835
851
  connectionId: string | undefined;
836
- connectionName?: string;
837
- encryptionMode?: string;
852
+ connectionName?: string | undefined;
853
+ encryptionMode?: string | undefined;
838
854
  }
839
855
  export interface UpdateDirectConnectGatewayRequest {
840
856
  directConnectGatewayId: string | undefined;
841
857
  newDirectConnectGatewayName: string | undefined;
842
858
  }
843
859
  export interface UpdateDirectConnectGatewayResponse {
844
- directConnectGateway?: DirectConnectGateway;
860
+ directConnectGateway?: DirectConnectGateway | undefined;
845
861
  }
846
862
  export interface UpdateDirectConnectGatewayAssociationRequest {
847
- associationId?: string;
848
- addAllowedPrefixesToDirectConnectGateway?: RouteFilterPrefix[];
849
- removeAllowedPrefixesToDirectConnectGateway?: RouteFilterPrefix[];
863
+ associationId?: string | undefined;
864
+ addAllowedPrefixesToDirectConnectGateway?: RouteFilterPrefix[] | undefined;
865
+ removeAllowedPrefixesToDirectConnectGateway?: RouteFilterPrefix[] | undefined;
850
866
  }
851
867
  export interface UpdateDirectConnectGatewayAssociationResult {
852
- directConnectGatewayAssociation?: DirectConnectGatewayAssociation;
868
+ directConnectGatewayAssociation?: DirectConnectGatewayAssociation | undefined;
853
869
  }
854
870
  export interface UpdateLagRequest {
855
871
  lagId: string | undefined;
856
- lagName?: string;
857
- minimumLinks?: number;
858
- encryptionMode?: string;
872
+ lagName?: string | undefined;
873
+ minimumLinks?: number | undefined;
874
+ encryptionMode?: string | undefined;
859
875
  }
860
876
  export interface UpdateVirtualInterfaceAttributesRequest {
861
877
  virtualInterfaceId: string | undefined;
862
- mtu?: number;
863
- enableSiteLink?: boolean;
864
- virtualInterfaceName?: string;
878
+ mtu?: number | undefined;
879
+ enableSiteLink?: boolean | undefined;
880
+ virtualInterfaceName?: string | undefined;
865
881
  }