@aws-sdk/client-direct-connect 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.
- package/dist-types/models/models_0.d.ts +349 -349
- package/dist-types/ts3.4/models/models_0.d.ts +365 -349
- package/package.json +7 -7
|
@@ -10,7 +10,7 @@ export interface RouteFilterPrefix {
|
|
|
10
10
|
* <p>The CIDR block for the advertised route. Separate multiple routes using commas. An IPv6 CIDR must use /64 or shorter.</p>
|
|
11
11
|
* @public
|
|
12
12
|
*/
|
|
13
|
-
cidr?: string;
|
|
13
|
+
cidr?: string | undefined;
|
|
14
14
|
}
|
|
15
15
|
/**
|
|
16
16
|
* @public
|
|
@@ -36,7 +36,7 @@ export interface AcceptDirectConnectGatewayAssociationProposalRequest {
|
|
|
36
36
|
* <p>For information about how to set the prefixes, see <a href="https://docs.aws.amazon.com/directconnect/latest/UserGuide/multi-account-associate-vgw.html#allowed-prefixes">Allowed Prefixes</a> in the <i>Direct Connect User Guide</i>.</p>
|
|
37
37
|
* @public
|
|
38
38
|
*/
|
|
39
|
-
overrideAllowedPrefixesToDirectConnectGateway?: RouteFilterPrefix[];
|
|
39
|
+
overrideAllowedPrefixesToDirectConnectGateway?: RouteFilterPrefix[] | undefined;
|
|
40
40
|
}
|
|
41
41
|
/**
|
|
42
42
|
* @public
|
|
@@ -59,22 +59,22 @@ export interface AssociatedGateway {
|
|
|
59
59
|
* <p>The ID of the associated gateway.</p>
|
|
60
60
|
* @public
|
|
61
61
|
*/
|
|
62
|
-
id?: string;
|
|
62
|
+
id?: string | undefined;
|
|
63
63
|
/**
|
|
64
64
|
* <p>The type of associated gateway.</p>
|
|
65
65
|
* @public
|
|
66
66
|
*/
|
|
67
|
-
type?: GatewayType;
|
|
67
|
+
type?: GatewayType | undefined;
|
|
68
68
|
/**
|
|
69
69
|
* <p>The ID of the Amazon Web Services account that owns the associated virtual private gateway or transit gateway.</p>
|
|
70
70
|
* @public
|
|
71
71
|
*/
|
|
72
|
-
ownerAccount?: string;
|
|
72
|
+
ownerAccount?: string | undefined;
|
|
73
73
|
/**
|
|
74
74
|
* <p>The Region where the associated gateway is located.</p>
|
|
75
75
|
* @public
|
|
76
76
|
*/
|
|
77
|
-
region?: string;
|
|
77
|
+
region?: string | undefined;
|
|
78
78
|
}
|
|
79
79
|
/**
|
|
80
80
|
* @public
|
|
@@ -100,12 +100,12 @@ export interface DirectConnectGatewayAssociation {
|
|
|
100
100
|
* <p>The ID of the Direct Connect gateway.</p>
|
|
101
101
|
* @public
|
|
102
102
|
*/
|
|
103
|
-
directConnectGatewayId?: string;
|
|
103
|
+
directConnectGatewayId?: string | undefined;
|
|
104
104
|
/**
|
|
105
105
|
* <p>The ID of the Amazon Web Services account that owns the associated gateway.</p>
|
|
106
106
|
* @public
|
|
107
107
|
*/
|
|
108
|
-
directConnectGatewayOwnerAccount?: string;
|
|
108
|
+
directConnectGatewayOwnerAccount?: string | undefined;
|
|
109
109
|
/**
|
|
110
110
|
* <p>The state of the association. The following are the possible values:</p>
|
|
111
111
|
* <ul>
|
|
@@ -133,44 +133,44 @@ export interface DirectConnectGatewayAssociation {
|
|
|
133
133
|
* </ul>
|
|
134
134
|
* @public
|
|
135
135
|
*/
|
|
136
|
-
associationState?: DirectConnectGatewayAssociationState;
|
|
136
|
+
associationState?: DirectConnectGatewayAssociationState | undefined;
|
|
137
137
|
/**
|
|
138
138
|
* <p>The error message if the state of an object failed to advance.</p>
|
|
139
139
|
* @public
|
|
140
140
|
*/
|
|
141
|
-
stateChangeError?: string;
|
|
141
|
+
stateChangeError?: string | undefined;
|
|
142
142
|
/**
|
|
143
143
|
* <p>Information about the associated gateway.</p>
|
|
144
144
|
* @public
|
|
145
145
|
*/
|
|
146
|
-
associatedGateway?: AssociatedGateway;
|
|
146
|
+
associatedGateway?: AssociatedGateway | undefined;
|
|
147
147
|
/**
|
|
148
148
|
* <p>The ID of the Direct Connect gateway association.</p>
|
|
149
149
|
* @public
|
|
150
150
|
*/
|
|
151
|
-
associationId?: string;
|
|
151
|
+
associationId?: string | undefined;
|
|
152
152
|
/**
|
|
153
153
|
* <p>The Amazon VPC prefixes to advertise to the Direct Connect gateway.</p>
|
|
154
154
|
* @public
|
|
155
155
|
*/
|
|
156
|
-
allowedPrefixesToDirectConnectGateway?: RouteFilterPrefix[];
|
|
156
|
+
allowedPrefixesToDirectConnectGateway?: RouteFilterPrefix[] | undefined;
|
|
157
157
|
/**
|
|
158
158
|
* <p>The ID of the virtual private gateway. Applies only to private virtual interfaces.</p>
|
|
159
159
|
* @public
|
|
160
160
|
*/
|
|
161
|
-
virtualGatewayId?: string;
|
|
161
|
+
virtualGatewayId?: string | undefined;
|
|
162
162
|
/**
|
|
163
163
|
* @deprecated
|
|
164
164
|
*
|
|
165
165
|
* <p>The Amazon Web Services Region where the virtual private gateway is located.</p>
|
|
166
166
|
* @public
|
|
167
167
|
*/
|
|
168
|
-
virtualGatewayRegion?: string;
|
|
168
|
+
virtualGatewayRegion?: string | undefined;
|
|
169
169
|
/**
|
|
170
170
|
* <p>The ID of the Amazon Web Services account that owns the virtual private gateway.</p>
|
|
171
171
|
* @public
|
|
172
172
|
*/
|
|
173
|
-
virtualGatewayOwnerAccount?: string;
|
|
173
|
+
virtualGatewayOwnerAccount?: string | undefined;
|
|
174
174
|
}
|
|
175
175
|
/**
|
|
176
176
|
* @public
|
|
@@ -180,7 +180,7 @@ export interface AcceptDirectConnectGatewayAssociationProposalResult {
|
|
|
180
180
|
* <p>Information about an association between a Direct Connect gateway and a virtual gateway or transit gateway.</p>
|
|
181
181
|
* @public
|
|
182
182
|
*/
|
|
183
|
-
directConnectGatewayAssociation?: DirectConnectGatewayAssociation;
|
|
183
|
+
directConnectGatewayAssociation?: DirectConnectGatewayAssociation | undefined;
|
|
184
184
|
}
|
|
185
185
|
/**
|
|
186
186
|
* <p>One or more parameters are not valid.</p>
|
|
@@ -227,13 +227,13 @@ export interface CustomerAgreement {
|
|
|
227
227
|
* <p>The name of the agreement.</p>
|
|
228
228
|
* @public
|
|
229
229
|
*/
|
|
230
|
-
agreementName?: string;
|
|
230
|
+
agreementName?: string | undefined;
|
|
231
231
|
/**
|
|
232
232
|
* <p>The status of the customer agreement. This will be either <code>signed</code> or <code>unsigned</code>
|
|
233
233
|
* </p>
|
|
234
234
|
* @public
|
|
235
235
|
*/
|
|
236
|
-
status?: string;
|
|
236
|
+
status?: string | undefined;
|
|
237
237
|
}
|
|
238
238
|
/**
|
|
239
239
|
* @public
|
|
@@ -309,12 +309,12 @@ export interface MacSecKey {
|
|
|
309
309
|
* <p>The Amazon Resource Name (ARN) of the MAC Security (MACsec) secret key.</p>
|
|
310
310
|
* @public
|
|
311
311
|
*/
|
|
312
|
-
secretARN?: string;
|
|
312
|
+
secretARN?: string | undefined;
|
|
313
313
|
/**
|
|
314
314
|
* <p>The Connection Key Name (CKN) for the MAC Security secret key.</p>
|
|
315
315
|
* @public
|
|
316
316
|
*/
|
|
317
|
-
ckn?: string;
|
|
317
|
+
ckn?: string | undefined;
|
|
318
318
|
/**
|
|
319
319
|
* <p>The state of the MAC Security (MACsec) secret key.</p>
|
|
320
320
|
* <p>The possible values are:</p>
|
|
@@ -338,12 +338,12 @@ export interface MacSecKey {
|
|
|
338
338
|
* </ul>
|
|
339
339
|
* @public
|
|
340
340
|
*/
|
|
341
|
-
state?: string;
|
|
341
|
+
state?: string | undefined;
|
|
342
342
|
/**
|
|
343
343
|
* <p>The date that the MAC Security (MACsec) secret key takes effect. The value is displayed in UTC format.</p>
|
|
344
344
|
* @public
|
|
345
345
|
*/
|
|
346
|
-
startOn?: string;
|
|
346
|
+
startOn?: string | undefined;
|
|
347
347
|
}
|
|
348
348
|
/**
|
|
349
349
|
* <p>Information about a tag.</p>
|
|
@@ -359,7 +359,7 @@ export interface Tag {
|
|
|
359
359
|
* <p>The value.</p>
|
|
360
360
|
* @public
|
|
361
361
|
*/
|
|
362
|
-
value?: string;
|
|
362
|
+
value?: string | undefined;
|
|
363
363
|
}
|
|
364
364
|
/**
|
|
365
365
|
* <p>Information about an Direct Connect connection.</p>
|
|
@@ -370,17 +370,17 @@ export interface Connection {
|
|
|
370
370
|
* <p>The ID of the Amazon Web Services account that owns the connection.</p>
|
|
371
371
|
* @public
|
|
372
372
|
*/
|
|
373
|
-
ownerAccount?: string;
|
|
373
|
+
ownerAccount?: string | undefined;
|
|
374
374
|
/**
|
|
375
375
|
* <p>The ID of the connection.</p>
|
|
376
376
|
* @public
|
|
377
377
|
*/
|
|
378
|
-
connectionId?: string;
|
|
378
|
+
connectionId?: string | undefined;
|
|
379
379
|
/**
|
|
380
380
|
* <p>The name of the connection.</p>
|
|
381
381
|
* @public
|
|
382
382
|
*/
|
|
383
|
-
connectionName?: string;
|
|
383
|
+
connectionName?: string | undefined;
|
|
384
384
|
/**
|
|
385
385
|
* <p>The state of the connection. The following are the possible values:</p>
|
|
386
386
|
* <ul>
|
|
@@ -423,102 +423,102 @@ export interface Connection {
|
|
|
423
423
|
* </ul>
|
|
424
424
|
* @public
|
|
425
425
|
*/
|
|
426
|
-
connectionState?: ConnectionState;
|
|
426
|
+
connectionState?: ConnectionState | undefined;
|
|
427
427
|
/**
|
|
428
428
|
* <p>The Amazon Web Services Region where the connection is located.</p>
|
|
429
429
|
* @public
|
|
430
430
|
*/
|
|
431
|
-
region?: string;
|
|
431
|
+
region?: string | undefined;
|
|
432
432
|
/**
|
|
433
433
|
* <p>The location of the connection.</p>
|
|
434
434
|
* @public
|
|
435
435
|
*/
|
|
436
|
-
location?: string;
|
|
436
|
+
location?: string | undefined;
|
|
437
437
|
/**
|
|
438
438
|
* <p>The bandwidth of the connection.</p>
|
|
439
439
|
* @public
|
|
440
440
|
*/
|
|
441
|
-
bandwidth?: string;
|
|
441
|
+
bandwidth?: string | undefined;
|
|
442
442
|
/**
|
|
443
443
|
* <p>The ID of the VLAN.</p>
|
|
444
444
|
* @public
|
|
445
445
|
*/
|
|
446
|
-
vlan?: number;
|
|
446
|
+
vlan?: number | undefined;
|
|
447
447
|
/**
|
|
448
448
|
* <p>The name of the Direct Connect service provider associated with the connection.</p>
|
|
449
449
|
* @public
|
|
450
450
|
*/
|
|
451
|
-
partnerName?: string;
|
|
451
|
+
partnerName?: string | undefined;
|
|
452
452
|
/**
|
|
453
453
|
* <p>The time of the most recent call to <a>DescribeLoa</a> for this connection.</p>
|
|
454
454
|
* @public
|
|
455
455
|
*/
|
|
456
|
-
loaIssueTime?: Date;
|
|
456
|
+
loaIssueTime?: Date | undefined;
|
|
457
457
|
/**
|
|
458
458
|
* <p>The ID of the LAG.</p>
|
|
459
459
|
* @public
|
|
460
460
|
*/
|
|
461
|
-
lagId?: string;
|
|
461
|
+
lagId?: string | undefined;
|
|
462
462
|
/**
|
|
463
463
|
* @deprecated
|
|
464
464
|
*
|
|
465
465
|
* <p>The Direct Connect endpoint on which the physical connection terminates.</p>
|
|
466
466
|
* @public
|
|
467
467
|
*/
|
|
468
|
-
awsDevice?: string;
|
|
468
|
+
awsDevice?: string | undefined;
|
|
469
469
|
/**
|
|
470
470
|
* <p>Indicates whether jumbo frames are supported.</p>
|
|
471
471
|
* @public
|
|
472
472
|
*/
|
|
473
|
-
jumboFrameCapable?: boolean;
|
|
473
|
+
jumboFrameCapable?: boolean | undefined;
|
|
474
474
|
/**
|
|
475
475
|
* <p>The Direct Connect endpoint that terminates the physical connection.</p>
|
|
476
476
|
* @public
|
|
477
477
|
*/
|
|
478
|
-
awsDeviceV2?: string;
|
|
478
|
+
awsDeviceV2?: string | undefined;
|
|
479
479
|
/**
|
|
480
480
|
* <p>The Direct Connect endpoint that terminates the logical connection. This device might be
|
|
481
481
|
* different than the device that terminates the physical connection.</p>
|
|
482
482
|
* @public
|
|
483
483
|
*/
|
|
484
|
-
awsLogicalDeviceId?: string;
|
|
484
|
+
awsLogicalDeviceId?: string | undefined;
|
|
485
485
|
/**
|
|
486
486
|
* <p>Indicates whether the connection supports a secondary BGP peer in the same address family (IPv4/IPv6).</p>
|
|
487
487
|
* @public
|
|
488
488
|
*/
|
|
489
|
-
hasLogicalRedundancy?: HasLogicalRedundancy;
|
|
489
|
+
hasLogicalRedundancy?: HasLogicalRedundancy | undefined;
|
|
490
490
|
/**
|
|
491
491
|
* <p>The tags associated with the connection.</p>
|
|
492
492
|
* @public
|
|
493
493
|
*/
|
|
494
|
-
tags?: Tag[];
|
|
494
|
+
tags?: Tag[] | undefined;
|
|
495
495
|
/**
|
|
496
496
|
* <p>The name of the service provider associated with the connection.</p>
|
|
497
497
|
* @public
|
|
498
498
|
*/
|
|
499
|
-
providerName?: string;
|
|
499
|
+
providerName?: string | undefined;
|
|
500
500
|
/**
|
|
501
501
|
* <p>Indicates whether the connection supports MAC Security (MACsec).</p>
|
|
502
502
|
* @public
|
|
503
503
|
*/
|
|
504
|
-
macSecCapable?: boolean;
|
|
504
|
+
macSecCapable?: boolean | undefined;
|
|
505
505
|
/**
|
|
506
506
|
* <p>The MAC Security (MACsec) port link status of the connection.</p>
|
|
507
507
|
* <p>The valid values are <code>Encryption Up</code>, which means that there is an active Connection Key Name, or <code>Encryption Down</code>.</p>
|
|
508
508
|
* @public
|
|
509
509
|
*/
|
|
510
|
-
portEncryptionStatus?: string;
|
|
510
|
+
portEncryptionStatus?: string | undefined;
|
|
511
511
|
/**
|
|
512
512
|
* <p>The MAC Security (MACsec) connection encryption mode.</p>
|
|
513
513
|
* <p>The valid values are <code>no_encrypt</code>, <code>should_encrypt</code>, and <code>must_encrypt</code>.</p>
|
|
514
514
|
* @public
|
|
515
515
|
*/
|
|
516
|
-
encryptionMode?: string;
|
|
516
|
+
encryptionMode?: string | undefined;
|
|
517
517
|
/**
|
|
518
518
|
* <p>The MAC Security (MACsec) security keys associated with the connection.</p>
|
|
519
519
|
* @public
|
|
520
520
|
*/
|
|
521
|
-
macSecKeys?: MacSecKey[];
|
|
521
|
+
macSecKeys?: MacSecKey[] | undefined;
|
|
522
522
|
}
|
|
523
523
|
/**
|
|
524
524
|
* @public
|
|
@@ -556,7 +556,7 @@ export interface AllocateHostedConnectionRequest {
|
|
|
556
556
|
* <p>The tags associated with the connection.</p>
|
|
557
557
|
* @public
|
|
558
558
|
*/
|
|
559
|
-
tags?: Tag[];
|
|
559
|
+
tags?: Tag[] | undefined;
|
|
560
560
|
}
|
|
561
561
|
/**
|
|
562
562
|
* <p>A tag key was specified more than once.</p>
|
|
@@ -607,32 +607,32 @@ export interface NewPrivateVirtualInterfaceAllocation {
|
|
|
607
607
|
* <p>The maximum transmission unit (MTU), in bytes. The supported values are 1500 and 8500. The default value is 1500.</p>
|
|
608
608
|
* @public
|
|
609
609
|
*/
|
|
610
|
-
mtu?: number;
|
|
610
|
+
mtu?: number | undefined;
|
|
611
611
|
/**
|
|
612
612
|
* <p>The authentication key for BGP configuration. This string has a minimum length of 6 characters and and a maximun lenth of 80 characters.</p>
|
|
613
613
|
* @public
|
|
614
614
|
*/
|
|
615
|
-
authKey?: string;
|
|
615
|
+
authKey?: string | undefined;
|
|
616
616
|
/**
|
|
617
617
|
* <p>The IP address assigned to the Amazon interface.</p>
|
|
618
618
|
* @public
|
|
619
619
|
*/
|
|
620
|
-
amazonAddress?: string;
|
|
620
|
+
amazonAddress?: string | undefined;
|
|
621
621
|
/**
|
|
622
622
|
* <p>The address family for the BGP peer.</p>
|
|
623
623
|
* @public
|
|
624
624
|
*/
|
|
625
|
-
addressFamily?: AddressFamily;
|
|
625
|
+
addressFamily?: AddressFamily | undefined;
|
|
626
626
|
/**
|
|
627
627
|
* <p>The IP address assigned to the customer interface.</p>
|
|
628
628
|
* @public
|
|
629
629
|
*/
|
|
630
|
-
customerAddress?: string;
|
|
630
|
+
customerAddress?: string | undefined;
|
|
631
631
|
/**
|
|
632
632
|
* <p>The tags associated with the private virtual interface.</p>
|
|
633
633
|
* @public
|
|
634
634
|
*/
|
|
635
|
-
tags?: Tag[];
|
|
635
|
+
tags?: Tag[] | undefined;
|
|
636
636
|
}
|
|
637
637
|
/**
|
|
638
638
|
* @public
|
|
@@ -691,32 +691,32 @@ export interface BGPPeer {
|
|
|
691
691
|
* <p>The ID of the BGP peer.</p>
|
|
692
692
|
* @public
|
|
693
693
|
*/
|
|
694
|
-
bgpPeerId?: string;
|
|
694
|
+
bgpPeerId?: string | undefined;
|
|
695
695
|
/**
|
|
696
696
|
* <p>The autonomous system (AS) number for Border Gateway Protocol (BGP) configuration.</p>
|
|
697
697
|
* @public
|
|
698
698
|
*/
|
|
699
|
-
asn?: number;
|
|
699
|
+
asn?: number | undefined;
|
|
700
700
|
/**
|
|
701
701
|
* <p>The authentication key for BGP configuration. This string has a minimum length of 6 characters and and a maximun lenth of 80 characters.</p>
|
|
702
702
|
* @public
|
|
703
703
|
*/
|
|
704
|
-
authKey?: string;
|
|
704
|
+
authKey?: string | undefined;
|
|
705
705
|
/**
|
|
706
706
|
* <p>The address family for the BGP peer.</p>
|
|
707
707
|
* @public
|
|
708
708
|
*/
|
|
709
|
-
addressFamily?: AddressFamily;
|
|
709
|
+
addressFamily?: AddressFamily | undefined;
|
|
710
710
|
/**
|
|
711
711
|
* <p>The IP address assigned to the Amazon interface.</p>
|
|
712
712
|
* @public
|
|
713
713
|
*/
|
|
714
|
-
amazonAddress?: string;
|
|
714
|
+
amazonAddress?: string | undefined;
|
|
715
715
|
/**
|
|
716
716
|
* <p>The IP address assigned to the customer interface.</p>
|
|
717
717
|
* @public
|
|
718
718
|
*/
|
|
719
|
-
customerAddress?: string;
|
|
719
|
+
customerAddress?: string | undefined;
|
|
720
720
|
/**
|
|
721
721
|
* <p>The state of the BGP peer. The following are the possible values:</p>
|
|
722
722
|
* <ul>
|
|
@@ -743,7 +743,7 @@ export interface BGPPeer {
|
|
|
743
743
|
* </ul>
|
|
744
744
|
* @public
|
|
745
745
|
*/
|
|
746
|
-
bgpPeerState?: BGPPeerState;
|
|
746
|
+
bgpPeerState?: BGPPeerState | undefined;
|
|
747
747
|
/**
|
|
748
748
|
* <p>The status of the BGP peer. The following are the possible values:</p>
|
|
749
749
|
* <ul>
|
|
@@ -763,18 +763,18 @@ export interface BGPPeer {
|
|
|
763
763
|
* </ul>
|
|
764
764
|
* @public
|
|
765
765
|
*/
|
|
766
|
-
bgpStatus?: BGPStatus;
|
|
766
|
+
bgpStatus?: BGPStatus | undefined;
|
|
767
767
|
/**
|
|
768
768
|
* <p>The Direct Connect endpoint that terminates the BGP peer.</p>
|
|
769
769
|
* @public
|
|
770
770
|
*/
|
|
771
|
-
awsDeviceV2?: string;
|
|
771
|
+
awsDeviceV2?: string | undefined;
|
|
772
772
|
/**
|
|
773
773
|
* <p>The Direct Connect endpoint that terminates the logical connection. This device might be
|
|
774
774
|
* different than the device that terminates the physical connection.</p>
|
|
775
775
|
* @public
|
|
776
776
|
*/
|
|
777
|
-
awsLogicalDeviceId?: string;
|
|
777
|
+
awsLogicalDeviceId?: string | undefined;
|
|
778
778
|
}
|
|
779
779
|
/**
|
|
780
780
|
* @public
|
|
@@ -804,68 +804,68 @@ export interface VirtualInterface {
|
|
|
804
804
|
* <p>The ID of the Amazon Web Services account that owns the virtual interface.</p>
|
|
805
805
|
* @public
|
|
806
806
|
*/
|
|
807
|
-
ownerAccount?: string;
|
|
807
|
+
ownerAccount?: string | undefined;
|
|
808
808
|
/**
|
|
809
809
|
* <p>The ID of the virtual interface.</p>
|
|
810
810
|
* @public
|
|
811
811
|
*/
|
|
812
|
-
virtualInterfaceId?: string;
|
|
812
|
+
virtualInterfaceId?: string | undefined;
|
|
813
813
|
/**
|
|
814
814
|
* <p>The location of the connection.</p>
|
|
815
815
|
* @public
|
|
816
816
|
*/
|
|
817
|
-
location?: string;
|
|
817
|
+
location?: string | undefined;
|
|
818
818
|
/**
|
|
819
819
|
* <p>The ID of the connection.</p>
|
|
820
820
|
* @public
|
|
821
821
|
*/
|
|
822
|
-
connectionId?: string;
|
|
822
|
+
connectionId?: string | undefined;
|
|
823
823
|
/**
|
|
824
824
|
* <p>The type of virtual interface. The possible values are <code>private</code>, <code>public</code> and <code>transit</code>.</p>
|
|
825
825
|
* @public
|
|
826
826
|
*/
|
|
827
|
-
virtualInterfaceType?: string;
|
|
827
|
+
virtualInterfaceType?: string | undefined;
|
|
828
828
|
/**
|
|
829
829
|
* <p>The name of the virtual interface assigned by the customer network. The name has a maximum of 100 characters. The following are valid characters: a-z, 0-9 and a hyphen (-).</p>
|
|
830
830
|
* @public
|
|
831
831
|
*/
|
|
832
|
-
virtualInterfaceName?: string;
|
|
832
|
+
virtualInterfaceName?: string | undefined;
|
|
833
833
|
/**
|
|
834
834
|
* <p>The ID of the VLAN.</p>
|
|
835
835
|
* @public
|
|
836
836
|
*/
|
|
837
|
-
vlan?: number;
|
|
837
|
+
vlan?: number | undefined;
|
|
838
838
|
/**
|
|
839
839
|
* <p>The autonomous system (AS) number for Border Gateway Protocol (BGP) configuration.</p>
|
|
840
840
|
* <p>The valid values are 1-2147483647.</p>
|
|
841
841
|
* @public
|
|
842
842
|
*/
|
|
843
|
-
asn?: number;
|
|
843
|
+
asn?: number | undefined;
|
|
844
844
|
/**
|
|
845
845
|
* <p>The autonomous system number (ASN) for the Amazon side of the connection.</p>
|
|
846
846
|
* @public
|
|
847
847
|
*/
|
|
848
|
-
amazonSideAsn?: number;
|
|
848
|
+
amazonSideAsn?: number | undefined;
|
|
849
849
|
/**
|
|
850
850
|
* <p>The authentication key for BGP configuration. This string has a minimum length of 6 characters and and a maximun lenth of 80 characters.</p>
|
|
851
851
|
* @public
|
|
852
852
|
*/
|
|
853
|
-
authKey?: string;
|
|
853
|
+
authKey?: string | undefined;
|
|
854
854
|
/**
|
|
855
855
|
* <p>The IP address assigned to the Amazon interface.</p>
|
|
856
856
|
* @public
|
|
857
857
|
*/
|
|
858
|
-
amazonAddress?: string;
|
|
858
|
+
amazonAddress?: string | undefined;
|
|
859
859
|
/**
|
|
860
860
|
* <p>The IP address assigned to the customer interface.</p>
|
|
861
861
|
* @public
|
|
862
862
|
*/
|
|
863
|
-
customerAddress?: string;
|
|
863
|
+
customerAddress?: string | undefined;
|
|
864
864
|
/**
|
|
865
865
|
* <p>The address family for the BGP peer.</p>
|
|
866
866
|
* @public
|
|
867
867
|
*/
|
|
868
|
-
addressFamily?: AddressFamily;
|
|
868
|
+
addressFamily?: AddressFamily | undefined;
|
|
869
869
|
/**
|
|
870
870
|
* <p>The state of the virtual interface. The following are the possible values:</p>
|
|
871
871
|
* <ul>
|
|
@@ -908,68 +908,68 @@ export interface VirtualInterface {
|
|
|
908
908
|
* </ul>
|
|
909
909
|
* @public
|
|
910
910
|
*/
|
|
911
|
-
virtualInterfaceState?: VirtualInterfaceState;
|
|
911
|
+
virtualInterfaceState?: VirtualInterfaceState | undefined;
|
|
912
912
|
/**
|
|
913
913
|
* <p>The customer router configuration.</p>
|
|
914
914
|
* @public
|
|
915
915
|
*/
|
|
916
|
-
customerRouterConfig?: string;
|
|
916
|
+
customerRouterConfig?: string | undefined;
|
|
917
917
|
/**
|
|
918
918
|
* <p>The maximum transmission unit (MTU), in bytes. The supported values are 1500 and 8500. The default value is 1500</p>
|
|
919
919
|
* @public
|
|
920
920
|
*/
|
|
921
|
-
mtu?: number;
|
|
921
|
+
mtu?: number | undefined;
|
|
922
922
|
/**
|
|
923
923
|
* <p>Indicates whether jumbo frames are supported.</p>
|
|
924
924
|
* @public
|
|
925
925
|
*/
|
|
926
|
-
jumboFrameCapable?: boolean;
|
|
926
|
+
jumboFrameCapable?: boolean | undefined;
|
|
927
927
|
/**
|
|
928
928
|
* <p>The ID of the virtual private gateway. Applies only to private virtual interfaces.</p>
|
|
929
929
|
* @public
|
|
930
930
|
*/
|
|
931
|
-
virtualGatewayId?: string;
|
|
931
|
+
virtualGatewayId?: string | undefined;
|
|
932
932
|
/**
|
|
933
933
|
* <p>The ID of the Direct Connect gateway.</p>
|
|
934
934
|
* @public
|
|
935
935
|
*/
|
|
936
|
-
directConnectGatewayId?: string;
|
|
936
|
+
directConnectGatewayId?: string | undefined;
|
|
937
937
|
/**
|
|
938
938
|
* <p>The routes to be advertised to the Amazon Web Services network in this Region. Applies to public virtual interfaces.</p>
|
|
939
939
|
* @public
|
|
940
940
|
*/
|
|
941
|
-
routeFilterPrefixes?: RouteFilterPrefix[];
|
|
941
|
+
routeFilterPrefixes?: RouteFilterPrefix[] | undefined;
|
|
942
942
|
/**
|
|
943
943
|
* <p>The BGP peers configured on this virtual interface.</p>
|
|
944
944
|
* @public
|
|
945
945
|
*/
|
|
946
|
-
bgpPeers?: BGPPeer[];
|
|
946
|
+
bgpPeers?: BGPPeer[] | undefined;
|
|
947
947
|
/**
|
|
948
948
|
* <p>The Amazon Web Services Region where the virtual interface is located.</p>
|
|
949
949
|
* @public
|
|
950
950
|
*/
|
|
951
|
-
region?: string;
|
|
951
|
+
region?: string | undefined;
|
|
952
952
|
/**
|
|
953
953
|
* <p>The Direct Connect endpoint that terminates the physical connection.</p>
|
|
954
954
|
* @public
|
|
955
955
|
*/
|
|
956
|
-
awsDeviceV2?: string;
|
|
956
|
+
awsDeviceV2?: string | undefined;
|
|
957
957
|
/**
|
|
958
958
|
* <p>The Direct Connect endpoint that terminates the logical connection. This device might be
|
|
959
959
|
* different than the device that terminates the physical connection.</p>
|
|
960
960
|
* @public
|
|
961
961
|
*/
|
|
962
|
-
awsLogicalDeviceId?: string;
|
|
962
|
+
awsLogicalDeviceId?: string | undefined;
|
|
963
963
|
/**
|
|
964
964
|
* <p>The tags associated with the virtual interface.</p>
|
|
965
965
|
* @public
|
|
966
966
|
*/
|
|
967
|
-
tags?: Tag[];
|
|
967
|
+
tags?: Tag[] | undefined;
|
|
968
968
|
/**
|
|
969
969
|
* <p>Indicates whether SiteLink is enabled.</p>
|
|
970
970
|
* @public
|
|
971
971
|
*/
|
|
972
|
-
siteLinkEnabled?: boolean;
|
|
972
|
+
siteLinkEnabled?: boolean | undefined;
|
|
973
973
|
}
|
|
974
974
|
/**
|
|
975
975
|
* <p>Information about a public virtual interface to be provisioned on a connection.</p>
|
|
@@ -996,32 +996,32 @@ export interface NewPublicVirtualInterfaceAllocation {
|
|
|
996
996
|
* <p>The authentication key for BGP configuration. This string has a minimum length of 6 characters and and a maximun lenth of 80 characters.</p>
|
|
997
997
|
* @public
|
|
998
998
|
*/
|
|
999
|
-
authKey?: string;
|
|
999
|
+
authKey?: string | undefined;
|
|
1000
1000
|
/**
|
|
1001
1001
|
* <p>The IP address assigned to the Amazon interface.</p>
|
|
1002
1002
|
* @public
|
|
1003
1003
|
*/
|
|
1004
|
-
amazonAddress?: string;
|
|
1004
|
+
amazonAddress?: string | undefined;
|
|
1005
1005
|
/**
|
|
1006
1006
|
* <p>The IP address assigned to the customer interface.</p>
|
|
1007
1007
|
* @public
|
|
1008
1008
|
*/
|
|
1009
|
-
customerAddress?: string;
|
|
1009
|
+
customerAddress?: string | undefined;
|
|
1010
1010
|
/**
|
|
1011
1011
|
* <p>The address family for the BGP peer.</p>
|
|
1012
1012
|
* @public
|
|
1013
1013
|
*/
|
|
1014
|
-
addressFamily?: AddressFamily;
|
|
1014
|
+
addressFamily?: AddressFamily | undefined;
|
|
1015
1015
|
/**
|
|
1016
1016
|
* <p>The routes to be advertised to the Amazon Web Services network in this Region. Applies to public virtual interfaces.</p>
|
|
1017
1017
|
* @public
|
|
1018
1018
|
*/
|
|
1019
|
-
routeFilterPrefixes?: RouteFilterPrefix[];
|
|
1019
|
+
routeFilterPrefixes?: RouteFilterPrefix[] | undefined;
|
|
1020
1020
|
/**
|
|
1021
1021
|
* <p>The tags associated with the public virtual interface.</p>
|
|
1022
1022
|
* @public
|
|
1023
1023
|
*/
|
|
1024
|
-
tags?: Tag[];
|
|
1024
|
+
tags?: Tag[] | undefined;
|
|
1025
1025
|
}
|
|
1026
1026
|
/**
|
|
1027
1027
|
* @public
|
|
@@ -1052,48 +1052,48 @@ export interface NewTransitVirtualInterfaceAllocation {
|
|
|
1052
1052
|
* <p>The name of the virtual interface assigned by the customer network. The name has a maximum of 100 characters. The following are valid characters: a-z, 0-9 and a hyphen (-).</p>
|
|
1053
1053
|
* @public
|
|
1054
1054
|
*/
|
|
1055
|
-
virtualInterfaceName?: string;
|
|
1055
|
+
virtualInterfaceName?: string | undefined;
|
|
1056
1056
|
/**
|
|
1057
1057
|
* <p>The ID of the VLAN.</p>
|
|
1058
1058
|
* @public
|
|
1059
1059
|
*/
|
|
1060
|
-
vlan?: number;
|
|
1060
|
+
vlan?: number | undefined;
|
|
1061
1061
|
/**
|
|
1062
1062
|
* <p>The autonomous system (AS) number for Border Gateway Protocol (BGP) configuration.</p>
|
|
1063
1063
|
* <p>The valid values are 1-2147483647.</p>
|
|
1064
1064
|
* @public
|
|
1065
1065
|
*/
|
|
1066
|
-
asn?: number;
|
|
1066
|
+
asn?: number | undefined;
|
|
1067
1067
|
/**
|
|
1068
1068
|
* <p>The maximum transmission unit (MTU), in bytes. The supported values are 1500 and 8500. The default value is 1500 </p>
|
|
1069
1069
|
* @public
|
|
1070
1070
|
*/
|
|
1071
|
-
mtu?: number;
|
|
1071
|
+
mtu?: number | undefined;
|
|
1072
1072
|
/**
|
|
1073
1073
|
* <p>The authentication key for BGP configuration. This string has a minimum length of 6 characters and and a maximun lenth of 80 characters.</p>
|
|
1074
1074
|
* @public
|
|
1075
1075
|
*/
|
|
1076
|
-
authKey?: string;
|
|
1076
|
+
authKey?: string | undefined;
|
|
1077
1077
|
/**
|
|
1078
1078
|
* <p>The IP address assigned to the Amazon interface.</p>
|
|
1079
1079
|
* @public
|
|
1080
1080
|
*/
|
|
1081
|
-
amazonAddress?: string;
|
|
1081
|
+
amazonAddress?: string | undefined;
|
|
1082
1082
|
/**
|
|
1083
1083
|
* <p>The IP address assigned to the customer interface.</p>
|
|
1084
1084
|
* @public
|
|
1085
1085
|
*/
|
|
1086
|
-
customerAddress?: string;
|
|
1086
|
+
customerAddress?: string | undefined;
|
|
1087
1087
|
/**
|
|
1088
1088
|
* <p>The address family for the BGP peer.</p>
|
|
1089
1089
|
* @public
|
|
1090
1090
|
*/
|
|
1091
|
-
addressFamily?: AddressFamily;
|
|
1091
|
+
addressFamily?: AddressFamily | undefined;
|
|
1092
1092
|
/**
|
|
1093
1093
|
* <p>The tags associated with the transitive virtual interface.</p>
|
|
1094
1094
|
* @public
|
|
1095
1095
|
*/
|
|
1096
|
-
tags?: Tag[];
|
|
1096
|
+
tags?: Tag[] | undefined;
|
|
1097
1097
|
}
|
|
1098
1098
|
/**
|
|
1099
1099
|
* @public
|
|
@@ -1123,7 +1123,7 @@ export interface AllocateTransitVirtualInterfaceResult {
|
|
|
1123
1123
|
* <p>Information about the transit virtual interface.</p>
|
|
1124
1124
|
* @public
|
|
1125
1125
|
*/
|
|
1126
|
-
virtualInterface?: VirtualInterface;
|
|
1126
|
+
virtualInterface?: VirtualInterface | undefined;
|
|
1127
1127
|
}
|
|
1128
1128
|
/**
|
|
1129
1129
|
* @public
|
|
@@ -1171,7 +1171,7 @@ export interface AssociateMacSecKeyRequest {
|
|
|
1171
1171
|
* <p>If you use this request parameter, you do not use the <code>ckn</code> and <code>cak</code> request parameters.</p>
|
|
1172
1172
|
* @public
|
|
1173
1173
|
*/
|
|
1174
|
-
secretARN?: string;
|
|
1174
|
+
secretARN?: string | undefined;
|
|
1175
1175
|
/**
|
|
1176
1176
|
* <p>The MAC Security (MACsec) CKN to associate with the dedicated connection.</p>
|
|
1177
1177
|
* <p>You can create the CKN/CAK pair using an industry standard tool.</p>
|
|
@@ -1179,7 +1179,7 @@ export interface AssociateMacSecKeyRequest {
|
|
|
1179
1179
|
* <p>If you use this request parameter, you must use the <code>cak</code> request parameter and not use the <code>secretARN</code> request parameter.</p>
|
|
1180
1180
|
* @public
|
|
1181
1181
|
*/
|
|
1182
|
-
ckn?: string;
|
|
1182
|
+
ckn?: string | undefined;
|
|
1183
1183
|
/**
|
|
1184
1184
|
* <p>The MAC Security (MACsec) CAK to associate with the dedicated connection.</p>
|
|
1185
1185
|
* <p>You can create the CKN/CAK pair using an industry standard tool.</p>
|
|
@@ -1187,7 +1187,7 @@ export interface AssociateMacSecKeyRequest {
|
|
|
1187
1187
|
* <p>If you use this request parameter, you must use the <code>ckn</code> request parameter and not use the <code>secretARN</code> request parameter.</p>
|
|
1188
1188
|
* @public
|
|
1189
1189
|
*/
|
|
1190
|
-
cak?: string;
|
|
1190
|
+
cak?: string | undefined;
|
|
1191
1191
|
}
|
|
1192
1192
|
/**
|
|
1193
1193
|
* @public
|
|
@@ -1197,12 +1197,12 @@ export interface AssociateMacSecKeyResponse {
|
|
|
1197
1197
|
* <p>The ID of the dedicated connection (dxcon-xxxx), or the ID of the LAG (dxlag-xxxx).</p>
|
|
1198
1198
|
* @public
|
|
1199
1199
|
*/
|
|
1200
|
-
connectionId?: string;
|
|
1200
|
+
connectionId?: string | undefined;
|
|
1201
1201
|
/**
|
|
1202
1202
|
* <p>The MAC Security (MACsec) security keys associated with the dedicated connection.</p>
|
|
1203
1203
|
* @public
|
|
1204
1204
|
*/
|
|
1205
|
-
macSecKeys?: MacSecKey[];
|
|
1205
|
+
macSecKeys?: MacSecKey[] | undefined;
|
|
1206
1206
|
}
|
|
1207
1207
|
/**
|
|
1208
1208
|
* @public
|
|
@@ -1275,7 +1275,7 @@ export interface ConfirmConnectionResponse {
|
|
|
1275
1275
|
* </ul>
|
|
1276
1276
|
* @public
|
|
1277
1277
|
*/
|
|
1278
|
-
connectionState?: ConnectionState;
|
|
1278
|
+
connectionState?: ConnectionState | undefined;
|
|
1279
1279
|
}
|
|
1280
1280
|
/**
|
|
1281
1281
|
* @public
|
|
@@ -1289,7 +1289,7 @@ export interface ConfirmCustomerAgreementRequest {
|
|
|
1289
1289
|
* </p>
|
|
1290
1290
|
* @public
|
|
1291
1291
|
*/
|
|
1292
|
-
agreementName?: string;
|
|
1292
|
+
agreementName?: string | undefined;
|
|
1293
1293
|
}
|
|
1294
1294
|
/**
|
|
1295
1295
|
* @public
|
|
@@ -1301,7 +1301,7 @@ export interface ConfirmCustomerAgreementResponse {
|
|
|
1301
1301
|
* </p>
|
|
1302
1302
|
* @public
|
|
1303
1303
|
*/
|
|
1304
|
-
status?: string;
|
|
1304
|
+
status?: string | undefined;
|
|
1305
1305
|
}
|
|
1306
1306
|
/**
|
|
1307
1307
|
* @public
|
|
@@ -1316,12 +1316,12 @@ export interface ConfirmPrivateVirtualInterfaceRequest {
|
|
|
1316
1316
|
* <p>The ID of the virtual private gateway.</p>
|
|
1317
1317
|
* @public
|
|
1318
1318
|
*/
|
|
1319
|
-
virtualGatewayId?: string;
|
|
1319
|
+
virtualGatewayId?: string | undefined;
|
|
1320
1320
|
/**
|
|
1321
1321
|
* <p>The ID of the Direct Connect gateway.</p>
|
|
1322
1322
|
* @public
|
|
1323
1323
|
*/
|
|
1324
|
-
directConnectGatewayId?: string;
|
|
1324
|
+
directConnectGatewayId?: string | undefined;
|
|
1325
1325
|
}
|
|
1326
1326
|
/**
|
|
1327
1327
|
* @public
|
|
@@ -1369,7 +1369,7 @@ export interface ConfirmPrivateVirtualInterfaceResponse {
|
|
|
1369
1369
|
* </ul>
|
|
1370
1370
|
* @public
|
|
1371
1371
|
*/
|
|
1372
|
-
virtualInterfaceState?: VirtualInterfaceState;
|
|
1372
|
+
virtualInterfaceState?: VirtualInterfaceState | undefined;
|
|
1373
1373
|
}
|
|
1374
1374
|
/**
|
|
1375
1375
|
* @public
|
|
@@ -1427,7 +1427,7 @@ export interface ConfirmPublicVirtualInterfaceResponse {
|
|
|
1427
1427
|
* </ul>
|
|
1428
1428
|
* @public
|
|
1429
1429
|
*/
|
|
1430
|
-
virtualInterfaceState?: VirtualInterfaceState;
|
|
1430
|
+
virtualInterfaceState?: VirtualInterfaceState | undefined;
|
|
1431
1431
|
}
|
|
1432
1432
|
/**
|
|
1433
1433
|
* @public
|
|
@@ -1490,7 +1490,7 @@ export interface ConfirmTransitVirtualInterfaceResponse {
|
|
|
1490
1490
|
* </ul>
|
|
1491
1491
|
* @public
|
|
1492
1492
|
*/
|
|
1493
|
-
virtualInterfaceState?: VirtualInterfaceState;
|
|
1493
|
+
virtualInterfaceState?: VirtualInterfaceState | undefined;
|
|
1494
1494
|
}
|
|
1495
1495
|
/**
|
|
1496
1496
|
* @public
|
|
@@ -1500,7 +1500,7 @@ export interface Connections {
|
|
|
1500
1500
|
* <p>The connections.</p>
|
|
1501
1501
|
* @public
|
|
1502
1502
|
*/
|
|
1503
|
-
connections?: Connection[];
|
|
1503
|
+
connections?: Connection[] | undefined;
|
|
1504
1504
|
}
|
|
1505
1505
|
/**
|
|
1506
1506
|
* <p>Information about a new BGP peer.</p>
|
|
@@ -1511,27 +1511,27 @@ export interface NewBGPPeer {
|
|
|
1511
1511
|
* <p>The autonomous system (AS) number for Border Gateway Protocol (BGP) configuration.</p>
|
|
1512
1512
|
* @public
|
|
1513
1513
|
*/
|
|
1514
|
-
asn?: number;
|
|
1514
|
+
asn?: number | undefined;
|
|
1515
1515
|
/**
|
|
1516
1516
|
* <p>The authentication key for BGP configuration. This string has a minimum length of 6 characters and and a maximun lenth of 80 characters.</p>
|
|
1517
1517
|
* @public
|
|
1518
1518
|
*/
|
|
1519
|
-
authKey?: string;
|
|
1519
|
+
authKey?: string | undefined;
|
|
1520
1520
|
/**
|
|
1521
1521
|
* <p>The address family for the BGP peer.</p>
|
|
1522
1522
|
* @public
|
|
1523
1523
|
*/
|
|
1524
|
-
addressFamily?: AddressFamily;
|
|
1524
|
+
addressFamily?: AddressFamily | undefined;
|
|
1525
1525
|
/**
|
|
1526
1526
|
* <p>The IP address assigned to the Amazon interface.</p>
|
|
1527
1527
|
* @public
|
|
1528
1528
|
*/
|
|
1529
|
-
amazonAddress?: string;
|
|
1529
|
+
amazonAddress?: string | undefined;
|
|
1530
1530
|
/**
|
|
1531
1531
|
* <p>The IP address assigned to the customer interface.</p>
|
|
1532
1532
|
* @public
|
|
1533
1533
|
*/
|
|
1534
|
-
customerAddress?: string;
|
|
1534
|
+
customerAddress?: string | undefined;
|
|
1535
1535
|
}
|
|
1536
1536
|
/**
|
|
1537
1537
|
* @public
|
|
@@ -1541,12 +1541,12 @@ export interface CreateBGPPeerRequest {
|
|
|
1541
1541
|
* <p>The ID of the virtual interface.</p>
|
|
1542
1542
|
* @public
|
|
1543
1543
|
*/
|
|
1544
|
-
virtualInterfaceId?: string;
|
|
1544
|
+
virtualInterfaceId?: string | undefined;
|
|
1545
1545
|
/**
|
|
1546
1546
|
* <p>Information about the BGP peer.</p>
|
|
1547
1547
|
* @public
|
|
1548
1548
|
*/
|
|
1549
|
-
newBGPPeer?: NewBGPPeer;
|
|
1549
|
+
newBGPPeer?: NewBGPPeer | undefined;
|
|
1550
1550
|
}
|
|
1551
1551
|
/**
|
|
1552
1552
|
* @public
|
|
@@ -1556,7 +1556,7 @@ export interface CreateBGPPeerResponse {
|
|
|
1556
1556
|
* <p>The virtual interface.</p>
|
|
1557
1557
|
* @public
|
|
1558
1558
|
*/
|
|
1559
|
-
virtualInterface?: VirtualInterface;
|
|
1559
|
+
virtualInterface?: VirtualInterface | undefined;
|
|
1560
1560
|
}
|
|
1561
1561
|
/**
|
|
1562
1562
|
* @public
|
|
@@ -1581,23 +1581,23 @@ export interface CreateConnectionRequest {
|
|
|
1581
1581
|
* <p>The ID of the LAG.</p>
|
|
1582
1582
|
* @public
|
|
1583
1583
|
*/
|
|
1584
|
-
lagId?: string;
|
|
1584
|
+
lagId?: string | undefined;
|
|
1585
1585
|
/**
|
|
1586
1586
|
* <p>The tags to associate with the lag.</p>
|
|
1587
1587
|
* @public
|
|
1588
1588
|
*/
|
|
1589
|
-
tags?: Tag[];
|
|
1589
|
+
tags?: Tag[] | undefined;
|
|
1590
1590
|
/**
|
|
1591
1591
|
* <p>The name of the service provider associated with the requested connection.</p>
|
|
1592
1592
|
* @public
|
|
1593
1593
|
*/
|
|
1594
|
-
providerName?: string;
|
|
1594
|
+
providerName?: string | undefined;
|
|
1595
1595
|
/**
|
|
1596
1596
|
* <p>Indicates whether you want the connection to support MAC Security (MACsec).</p>
|
|
1597
1597
|
* <p>MAC Security (MACsec) is only available on dedicated connections. For information about MAC Security (MACsec) prerequisties, see <a href="https://docs.aws.amazon.com/directconnect/latest/UserGuide/direct-connect-mac-sec-getting-started.html#mac-sec-prerequisites">MACsec prerequisties</a> in the <i>Direct Connect User Guide</i>.</p>
|
|
1598
1598
|
* @public
|
|
1599
1599
|
*/
|
|
1600
|
-
requestMACSec?: boolean;
|
|
1600
|
+
requestMACSec?: boolean | undefined;
|
|
1601
1601
|
}
|
|
1602
1602
|
/**
|
|
1603
1603
|
* @public
|
|
@@ -1614,7 +1614,7 @@ export interface CreateDirectConnectGatewayRequest {
|
|
|
1614
1614
|
* 65,534 or 4,200,000,000 to 4,294,967,294. The default is 64512.</p>
|
|
1615
1615
|
* @public
|
|
1616
1616
|
*/
|
|
1617
|
-
amazonSideAsn?: number;
|
|
1617
|
+
amazonSideAsn?: number | undefined;
|
|
1618
1618
|
}
|
|
1619
1619
|
/**
|
|
1620
1620
|
* @public
|
|
@@ -1639,22 +1639,22 @@ export interface DirectConnectGateway {
|
|
|
1639
1639
|
* <p>The ID of the Direct Connect gateway.</p>
|
|
1640
1640
|
* @public
|
|
1641
1641
|
*/
|
|
1642
|
-
directConnectGatewayId?: string;
|
|
1642
|
+
directConnectGatewayId?: string | undefined;
|
|
1643
1643
|
/**
|
|
1644
1644
|
* <p>The name of the Direct Connect gateway.</p>
|
|
1645
1645
|
* @public
|
|
1646
1646
|
*/
|
|
1647
|
-
directConnectGatewayName?: string;
|
|
1647
|
+
directConnectGatewayName?: string | undefined;
|
|
1648
1648
|
/**
|
|
1649
1649
|
* <p>The autonomous system number (ASN) for the Amazon side of the connection.</p>
|
|
1650
1650
|
* @public
|
|
1651
1651
|
*/
|
|
1652
|
-
amazonSideAsn?: number;
|
|
1652
|
+
amazonSideAsn?: number | undefined;
|
|
1653
1653
|
/**
|
|
1654
1654
|
* <p>The ID of the Amazon Web Services account that owns the Direct Connect gateway.</p>
|
|
1655
1655
|
* @public
|
|
1656
1656
|
*/
|
|
1657
|
-
ownerAccount?: string;
|
|
1657
|
+
ownerAccount?: string | undefined;
|
|
1658
1658
|
/**
|
|
1659
1659
|
* <p>The state of the Direct Connect gateway. The following are the possible values:</p>
|
|
1660
1660
|
* <ul>
|
|
@@ -1677,12 +1677,12 @@ export interface DirectConnectGateway {
|
|
|
1677
1677
|
* </ul>
|
|
1678
1678
|
* @public
|
|
1679
1679
|
*/
|
|
1680
|
-
directConnectGatewayState?: DirectConnectGatewayState;
|
|
1680
|
+
directConnectGatewayState?: DirectConnectGatewayState | undefined;
|
|
1681
1681
|
/**
|
|
1682
1682
|
* <p>The error message if the state of an object failed to advance.</p>
|
|
1683
1683
|
* @public
|
|
1684
1684
|
*/
|
|
1685
|
-
stateChangeError?: string;
|
|
1685
|
+
stateChangeError?: string | undefined;
|
|
1686
1686
|
}
|
|
1687
1687
|
/**
|
|
1688
1688
|
* @public
|
|
@@ -1692,7 +1692,7 @@ export interface CreateDirectConnectGatewayResult {
|
|
|
1692
1692
|
* <p>The Direct Connect gateway.</p>
|
|
1693
1693
|
* @public
|
|
1694
1694
|
*/
|
|
1695
|
-
directConnectGateway?: DirectConnectGateway;
|
|
1695
|
+
directConnectGateway?: DirectConnectGateway | undefined;
|
|
1696
1696
|
}
|
|
1697
1697
|
/**
|
|
1698
1698
|
* @public
|
|
@@ -1707,19 +1707,19 @@ export interface CreateDirectConnectGatewayAssociationRequest {
|
|
|
1707
1707
|
* <p>The ID of the virtual private gateway or transit gateway.</p>
|
|
1708
1708
|
* @public
|
|
1709
1709
|
*/
|
|
1710
|
-
gatewayId?: string;
|
|
1710
|
+
gatewayId?: string | undefined;
|
|
1711
1711
|
/**
|
|
1712
1712
|
* <p>The Amazon VPC prefixes to advertise to the Direct Connect gateway</p>
|
|
1713
1713
|
* <p>This parameter is required when you create an association to a transit gateway.</p>
|
|
1714
1714
|
* <p>For information about how to set the prefixes, see <a href="https://docs.aws.amazon.com/directconnect/latest/UserGuide/multi-account-associate-vgw.html#allowed-prefixes">Allowed Prefixes</a> in the <i>Direct Connect User Guide</i>.</p>
|
|
1715
1715
|
* @public
|
|
1716
1716
|
*/
|
|
1717
|
-
addAllowedPrefixesToDirectConnectGateway?: RouteFilterPrefix[];
|
|
1717
|
+
addAllowedPrefixesToDirectConnectGateway?: RouteFilterPrefix[] | undefined;
|
|
1718
1718
|
/**
|
|
1719
1719
|
* <p>The ID of the virtual private gateway.</p>
|
|
1720
1720
|
* @public
|
|
1721
1721
|
*/
|
|
1722
|
-
virtualGatewayId?: string;
|
|
1722
|
+
virtualGatewayId?: string | undefined;
|
|
1723
1723
|
}
|
|
1724
1724
|
/**
|
|
1725
1725
|
* @public
|
|
@@ -1729,7 +1729,7 @@ export interface CreateDirectConnectGatewayAssociationResult {
|
|
|
1729
1729
|
* <p>The association to be created.</p>
|
|
1730
1730
|
* @public
|
|
1731
1731
|
*/
|
|
1732
|
-
directConnectGatewayAssociation?: DirectConnectGatewayAssociation;
|
|
1732
|
+
directConnectGatewayAssociation?: DirectConnectGatewayAssociation | undefined;
|
|
1733
1733
|
}
|
|
1734
1734
|
/**
|
|
1735
1735
|
* @public
|
|
@@ -1754,12 +1754,12 @@ export interface CreateDirectConnectGatewayAssociationProposalRequest {
|
|
|
1754
1754
|
* <p>The Amazon VPC prefixes to advertise to the Direct Connect gateway.</p>
|
|
1755
1755
|
* @public
|
|
1756
1756
|
*/
|
|
1757
|
-
addAllowedPrefixesToDirectConnectGateway?: RouteFilterPrefix[];
|
|
1757
|
+
addAllowedPrefixesToDirectConnectGateway?: RouteFilterPrefix[] | undefined;
|
|
1758
1758
|
/**
|
|
1759
1759
|
* <p>The Amazon VPC prefixes to no longer advertise to the Direct Connect gateway.</p>
|
|
1760
1760
|
* @public
|
|
1761
1761
|
*/
|
|
1762
|
-
removeAllowedPrefixesToDirectConnectGateway?: RouteFilterPrefix[];
|
|
1762
|
+
removeAllowedPrefixesToDirectConnectGateway?: RouteFilterPrefix[] | undefined;
|
|
1763
1763
|
}
|
|
1764
1764
|
/**
|
|
1765
1765
|
* @public
|
|
@@ -1783,17 +1783,17 @@ export interface DirectConnectGatewayAssociationProposal {
|
|
|
1783
1783
|
* <p>The ID of the association proposal.</p>
|
|
1784
1784
|
* @public
|
|
1785
1785
|
*/
|
|
1786
|
-
proposalId?: string;
|
|
1786
|
+
proposalId?: string | undefined;
|
|
1787
1787
|
/**
|
|
1788
1788
|
* <p>The ID of the Direct Connect gateway.</p>
|
|
1789
1789
|
* @public
|
|
1790
1790
|
*/
|
|
1791
|
-
directConnectGatewayId?: string;
|
|
1791
|
+
directConnectGatewayId?: string | undefined;
|
|
1792
1792
|
/**
|
|
1793
1793
|
* <p>The ID of the Amazon Web Services account that owns the Direct Connect gateway.</p>
|
|
1794
1794
|
* @public
|
|
1795
1795
|
*/
|
|
1796
|
-
directConnectGatewayOwnerAccount?: string;
|
|
1796
|
+
directConnectGatewayOwnerAccount?: string | undefined;
|
|
1797
1797
|
/**
|
|
1798
1798
|
* <p>The state of the proposal. The following are possible values:</p>
|
|
1799
1799
|
* <ul>
|
|
@@ -1812,22 +1812,22 @@ export interface DirectConnectGatewayAssociationProposal {
|
|
|
1812
1812
|
* </ul>
|
|
1813
1813
|
* @public
|
|
1814
1814
|
*/
|
|
1815
|
-
proposalState?: DirectConnectGatewayAssociationProposalState;
|
|
1815
|
+
proposalState?: DirectConnectGatewayAssociationProposalState | undefined;
|
|
1816
1816
|
/**
|
|
1817
1817
|
* <p>Information about the associated gateway.</p>
|
|
1818
1818
|
* @public
|
|
1819
1819
|
*/
|
|
1820
|
-
associatedGateway?: AssociatedGateway;
|
|
1820
|
+
associatedGateway?: AssociatedGateway | undefined;
|
|
1821
1821
|
/**
|
|
1822
1822
|
* <p>The existing Amazon VPC prefixes advertised to the Direct Connect gateway.</p>
|
|
1823
1823
|
* @public
|
|
1824
1824
|
*/
|
|
1825
|
-
existingAllowedPrefixesToDirectConnectGateway?: RouteFilterPrefix[];
|
|
1825
|
+
existingAllowedPrefixesToDirectConnectGateway?: RouteFilterPrefix[] | undefined;
|
|
1826
1826
|
/**
|
|
1827
1827
|
* <p>The Amazon VPC prefixes to advertise to the Direct Connect gateway.</p>
|
|
1828
1828
|
* @public
|
|
1829
1829
|
*/
|
|
1830
|
-
requestedAllowedPrefixesToDirectConnectGateway?: RouteFilterPrefix[];
|
|
1830
|
+
requestedAllowedPrefixesToDirectConnectGateway?: RouteFilterPrefix[] | undefined;
|
|
1831
1831
|
}
|
|
1832
1832
|
/**
|
|
1833
1833
|
* @public
|
|
@@ -1837,7 +1837,7 @@ export interface CreateDirectConnectGatewayAssociationProposalResult {
|
|
|
1837
1837
|
* <p>Information about the Direct Connect gateway proposal.</p>
|
|
1838
1838
|
* @public
|
|
1839
1839
|
*/
|
|
1840
|
-
directConnectGatewayAssociationProposal?: DirectConnectGatewayAssociationProposal;
|
|
1840
|
+
directConnectGatewayAssociationProposal?: DirectConnectGatewayAssociationProposal | undefined;
|
|
1841
1841
|
}
|
|
1842
1842
|
/**
|
|
1843
1843
|
* @public
|
|
@@ -1862,17 +1862,17 @@ export interface CreateInterconnectRequest {
|
|
|
1862
1862
|
* <p>The ID of the LAG.</p>
|
|
1863
1863
|
* @public
|
|
1864
1864
|
*/
|
|
1865
|
-
lagId?: string;
|
|
1865
|
+
lagId?: string | undefined;
|
|
1866
1866
|
/**
|
|
1867
1867
|
* <p>The tags to associate with the interconnect.</p>
|
|
1868
1868
|
* @public
|
|
1869
1869
|
*/
|
|
1870
|
-
tags?: Tag[];
|
|
1870
|
+
tags?: Tag[] | undefined;
|
|
1871
1871
|
/**
|
|
1872
1872
|
* <p>The name of the service provider associated with the interconnect.</p>
|
|
1873
1873
|
* @public
|
|
1874
1874
|
*/
|
|
1875
|
-
providerName?: string;
|
|
1875
|
+
providerName?: string | undefined;
|
|
1876
1876
|
}
|
|
1877
1877
|
/**
|
|
1878
1878
|
* @public
|
|
@@ -1900,12 +1900,12 @@ export interface Interconnect {
|
|
|
1900
1900
|
* <p>The ID of the interconnect.</p>
|
|
1901
1901
|
* @public
|
|
1902
1902
|
*/
|
|
1903
|
-
interconnectId?: string;
|
|
1903
|
+
interconnectId?: string | undefined;
|
|
1904
1904
|
/**
|
|
1905
1905
|
* <p>The name of the interconnect.</p>
|
|
1906
1906
|
* @public
|
|
1907
1907
|
*/
|
|
1908
|
-
interconnectName?: string;
|
|
1908
|
+
interconnectName?: string | undefined;
|
|
1909
1909
|
/**
|
|
1910
1910
|
* <p>The state of the interconnect. The following are the possible values:</p>
|
|
1911
1911
|
* <ul>
|
|
@@ -1941,70 +1941,70 @@ export interface Interconnect {
|
|
|
1941
1941
|
* </ul>
|
|
1942
1942
|
* @public
|
|
1943
1943
|
*/
|
|
1944
|
-
interconnectState?: InterconnectState;
|
|
1944
|
+
interconnectState?: InterconnectState | undefined;
|
|
1945
1945
|
/**
|
|
1946
1946
|
* <p>The Amazon Web Services Region where the connection is located.</p>
|
|
1947
1947
|
* @public
|
|
1948
1948
|
*/
|
|
1949
|
-
region?: string;
|
|
1949
|
+
region?: string | undefined;
|
|
1950
1950
|
/**
|
|
1951
1951
|
* <p>The location of the connection.</p>
|
|
1952
1952
|
* @public
|
|
1953
1953
|
*/
|
|
1954
|
-
location?: string;
|
|
1954
|
+
location?: string | undefined;
|
|
1955
1955
|
/**
|
|
1956
1956
|
* <p>The bandwidth of the connection.</p>
|
|
1957
1957
|
* @public
|
|
1958
1958
|
*/
|
|
1959
|
-
bandwidth?: string;
|
|
1959
|
+
bandwidth?: string | undefined;
|
|
1960
1960
|
/**
|
|
1961
1961
|
* <p>The time of the most recent call to <a>DescribeLoa</a> for this connection.</p>
|
|
1962
1962
|
* @public
|
|
1963
1963
|
*/
|
|
1964
|
-
loaIssueTime?: Date;
|
|
1964
|
+
loaIssueTime?: Date | undefined;
|
|
1965
1965
|
/**
|
|
1966
1966
|
* <p>The ID of the LAG.</p>
|
|
1967
1967
|
* @public
|
|
1968
1968
|
*/
|
|
1969
|
-
lagId?: string;
|
|
1969
|
+
lagId?: string | undefined;
|
|
1970
1970
|
/**
|
|
1971
1971
|
* @deprecated
|
|
1972
1972
|
*
|
|
1973
1973
|
* <p>The Direct Connect endpoint on which the physical connection terminates.</p>
|
|
1974
1974
|
* @public
|
|
1975
1975
|
*/
|
|
1976
|
-
awsDevice?: string;
|
|
1976
|
+
awsDevice?: string | undefined;
|
|
1977
1977
|
/**
|
|
1978
1978
|
* <p>Indicates whether jumbo frames are supported.</p>
|
|
1979
1979
|
* @public
|
|
1980
1980
|
*/
|
|
1981
|
-
jumboFrameCapable?: boolean;
|
|
1981
|
+
jumboFrameCapable?: boolean | undefined;
|
|
1982
1982
|
/**
|
|
1983
1983
|
* <p>The Direct Connect endpoint that terminates the physical connection.</p>
|
|
1984
1984
|
* @public
|
|
1985
1985
|
*/
|
|
1986
|
-
awsDeviceV2?: string;
|
|
1986
|
+
awsDeviceV2?: string | undefined;
|
|
1987
1987
|
/**
|
|
1988
1988
|
* <p>The Direct Connect endpoint that terminates the logical connection. This device might be
|
|
1989
1989
|
* different than the device that terminates the physical connection.</p>
|
|
1990
1990
|
* @public
|
|
1991
1991
|
*/
|
|
1992
|
-
awsLogicalDeviceId?: string;
|
|
1992
|
+
awsLogicalDeviceId?: string | undefined;
|
|
1993
1993
|
/**
|
|
1994
1994
|
* <p>Indicates whether the interconnect supports a secondary BGP in the same address family (IPv4/IPv6).</p>
|
|
1995
1995
|
* @public
|
|
1996
1996
|
*/
|
|
1997
|
-
hasLogicalRedundancy?: HasLogicalRedundancy;
|
|
1997
|
+
hasLogicalRedundancy?: HasLogicalRedundancy | undefined;
|
|
1998
1998
|
/**
|
|
1999
1999
|
* <p>The tags associated with the interconnect.</p>
|
|
2000
2000
|
* @public
|
|
2001
2001
|
*/
|
|
2002
|
-
tags?: Tag[];
|
|
2002
|
+
tags?: Tag[] | undefined;
|
|
2003
2003
|
/**
|
|
2004
2004
|
* <p>The name of the service provider associated with the interconnect.</p>
|
|
2005
2005
|
* @public
|
|
2006
2006
|
*/
|
|
2007
|
-
providerName?: string;
|
|
2007
|
+
providerName?: string | undefined;
|
|
2008
2008
|
}
|
|
2009
2009
|
/**
|
|
2010
2010
|
* @public
|
|
@@ -2037,22 +2037,22 @@ export interface CreateLagRequest {
|
|
|
2037
2037
|
* <p>The ID of an existing dedicated connection to migrate to the LAG.</p>
|
|
2038
2038
|
* @public
|
|
2039
2039
|
*/
|
|
2040
|
-
connectionId?: string;
|
|
2040
|
+
connectionId?: string | undefined;
|
|
2041
2041
|
/**
|
|
2042
2042
|
* <p>The tags to associate with the LAG.</p>
|
|
2043
2043
|
* @public
|
|
2044
2044
|
*/
|
|
2045
|
-
tags?: Tag[];
|
|
2045
|
+
tags?: Tag[] | undefined;
|
|
2046
2046
|
/**
|
|
2047
2047
|
* <p>The tags to associate with the automtically created LAGs.</p>
|
|
2048
2048
|
* @public
|
|
2049
2049
|
*/
|
|
2050
|
-
childConnectionTags?: Tag[];
|
|
2050
|
+
childConnectionTags?: Tag[] | undefined;
|
|
2051
2051
|
/**
|
|
2052
2052
|
* <p>The name of the service provider associated with the LAG.</p>
|
|
2053
2053
|
* @public
|
|
2054
2054
|
*/
|
|
2055
|
-
providerName?: string;
|
|
2055
|
+
providerName?: string | undefined;
|
|
2056
2056
|
/**
|
|
2057
2057
|
* <p>Indicates whether the connection will support MAC Security (MACsec).</p>
|
|
2058
2058
|
* <note>
|
|
@@ -2060,7 +2060,7 @@ export interface CreateLagRequest {
|
|
|
2060
2060
|
* </note>
|
|
2061
2061
|
* @public
|
|
2062
2062
|
*/
|
|
2063
|
-
requestMACSec?: boolean;
|
|
2063
|
+
requestMACSec?: boolean | undefined;
|
|
2064
2064
|
}
|
|
2065
2065
|
/**
|
|
2066
2066
|
* @public
|
|
@@ -2089,29 +2089,29 @@ export interface Lag {
|
|
|
2089
2089
|
* values are 1Gbps, 10Gbps, 100Gbps, or 400 Gbps.. </p>
|
|
2090
2090
|
* @public
|
|
2091
2091
|
*/
|
|
2092
|
-
connectionsBandwidth?: string;
|
|
2092
|
+
connectionsBandwidth?: string | undefined;
|
|
2093
2093
|
/**
|
|
2094
2094
|
* <p>The number of physical dedicated connections initially provisioned and bundled by the LAG.
|
|
2095
2095
|
* You can have a maximum of four connections when the port speed is 1 Gbps or 10 Gbps, or two
|
|
2096
2096
|
* when the port speed is 100 Gbps or 400 Gbps.</p>
|
|
2097
2097
|
* @public
|
|
2098
2098
|
*/
|
|
2099
|
-
numberOfConnections?: number;
|
|
2099
|
+
numberOfConnections?: number | undefined;
|
|
2100
2100
|
/**
|
|
2101
2101
|
* <p>The ID of the LAG.</p>
|
|
2102
2102
|
* @public
|
|
2103
2103
|
*/
|
|
2104
|
-
lagId?: string;
|
|
2104
|
+
lagId?: string | undefined;
|
|
2105
2105
|
/**
|
|
2106
2106
|
* <p>The ID of the Amazon Web Services account that owns the LAG.</p>
|
|
2107
2107
|
* @public
|
|
2108
2108
|
*/
|
|
2109
|
-
ownerAccount?: string;
|
|
2109
|
+
ownerAccount?: string | undefined;
|
|
2110
2110
|
/**
|
|
2111
2111
|
* <p>The name of the LAG.</p>
|
|
2112
2112
|
* @public
|
|
2113
2113
|
*/
|
|
2114
|
-
lagName?: string;
|
|
2114
|
+
lagName?: string | undefined;
|
|
2115
2115
|
/**
|
|
2116
2116
|
* <p>The state of the LAG. The following are the possible values:</p>
|
|
2117
2117
|
* <ul>
|
|
@@ -2147,86 +2147,86 @@ export interface Lag {
|
|
|
2147
2147
|
* </ul>
|
|
2148
2148
|
* @public
|
|
2149
2149
|
*/
|
|
2150
|
-
lagState?: LagState;
|
|
2150
|
+
lagState?: LagState | undefined;
|
|
2151
2151
|
/**
|
|
2152
2152
|
* <p>The location of the LAG.</p>
|
|
2153
2153
|
* @public
|
|
2154
2154
|
*/
|
|
2155
|
-
location?: string;
|
|
2155
|
+
location?: string | undefined;
|
|
2156
2156
|
/**
|
|
2157
2157
|
* <p>The Amazon Web Services Region where the connection is located.</p>
|
|
2158
2158
|
* @public
|
|
2159
2159
|
*/
|
|
2160
|
-
region?: string;
|
|
2160
|
+
region?: string | undefined;
|
|
2161
2161
|
/**
|
|
2162
2162
|
* <p>The minimum number of physical dedicated connections that must be operational for the LAG itself to be operational.</p>
|
|
2163
2163
|
* @public
|
|
2164
2164
|
*/
|
|
2165
|
-
minimumLinks?: number;
|
|
2165
|
+
minimumLinks?: number | undefined;
|
|
2166
2166
|
/**
|
|
2167
2167
|
* @deprecated
|
|
2168
2168
|
*
|
|
2169
2169
|
* <p>The Direct Connect endpoint that hosts the LAG.</p>
|
|
2170
2170
|
* @public
|
|
2171
2171
|
*/
|
|
2172
|
-
awsDevice?: string;
|
|
2172
|
+
awsDevice?: string | undefined;
|
|
2173
2173
|
/**
|
|
2174
2174
|
* <p>The Direct Connect endpoint that hosts the LAG.</p>
|
|
2175
2175
|
* @public
|
|
2176
2176
|
*/
|
|
2177
|
-
awsDeviceV2?: string;
|
|
2177
|
+
awsDeviceV2?: string | undefined;
|
|
2178
2178
|
/**
|
|
2179
2179
|
* <p>The Direct Connect endpoint that terminates the logical connection. This device might be
|
|
2180
2180
|
* different than the device that terminates the physical connection.</p>
|
|
2181
2181
|
* @public
|
|
2182
2182
|
*/
|
|
2183
|
-
awsLogicalDeviceId?: string;
|
|
2183
|
+
awsLogicalDeviceId?: string | undefined;
|
|
2184
2184
|
/**
|
|
2185
2185
|
* <p>The connections bundled by the LAG.</p>
|
|
2186
2186
|
* @public
|
|
2187
2187
|
*/
|
|
2188
|
-
connections?: Connection[];
|
|
2188
|
+
connections?: Connection[] | undefined;
|
|
2189
2189
|
/**
|
|
2190
2190
|
* <p>Indicates whether the LAG can host other connections.</p>
|
|
2191
2191
|
* @public
|
|
2192
2192
|
*/
|
|
2193
|
-
allowsHostedConnections?: boolean;
|
|
2193
|
+
allowsHostedConnections?: boolean | undefined;
|
|
2194
2194
|
/**
|
|
2195
2195
|
* <p>Indicates whether jumbo frames are supported.</p>
|
|
2196
2196
|
* @public
|
|
2197
2197
|
*/
|
|
2198
|
-
jumboFrameCapable?: boolean;
|
|
2198
|
+
jumboFrameCapable?: boolean | undefined;
|
|
2199
2199
|
/**
|
|
2200
2200
|
* <p>Indicates whether the LAG supports a secondary BGP peer in the same address family (IPv4/IPv6).</p>
|
|
2201
2201
|
* @public
|
|
2202
2202
|
*/
|
|
2203
|
-
hasLogicalRedundancy?: HasLogicalRedundancy;
|
|
2203
|
+
hasLogicalRedundancy?: HasLogicalRedundancy | undefined;
|
|
2204
2204
|
/**
|
|
2205
2205
|
* <p>The tags associated with the LAG.</p>
|
|
2206
2206
|
* @public
|
|
2207
2207
|
*/
|
|
2208
|
-
tags?: Tag[];
|
|
2208
|
+
tags?: Tag[] | undefined;
|
|
2209
2209
|
/**
|
|
2210
2210
|
* <p>The name of the service provider associated with the LAG.</p>
|
|
2211
2211
|
* @public
|
|
2212
2212
|
*/
|
|
2213
|
-
providerName?: string;
|
|
2213
|
+
providerName?: string | undefined;
|
|
2214
2214
|
/**
|
|
2215
2215
|
* <p>Indicates whether the LAG supports MAC Security (MACsec).</p>
|
|
2216
2216
|
* @public
|
|
2217
2217
|
*/
|
|
2218
|
-
macSecCapable?: boolean;
|
|
2218
|
+
macSecCapable?: boolean | undefined;
|
|
2219
2219
|
/**
|
|
2220
2220
|
* <p>The LAG MAC Security (MACsec) encryption mode.</p>
|
|
2221
2221
|
* <p>The valid values are <code>no_encrypt</code>, <code>should_encrypt</code>, and <code>must_encrypt</code>.</p>
|
|
2222
2222
|
* @public
|
|
2223
2223
|
*/
|
|
2224
|
-
encryptionMode?: string;
|
|
2224
|
+
encryptionMode?: string | undefined;
|
|
2225
2225
|
/**
|
|
2226
2226
|
* <p>The MAC Security (MACsec) security keys associated with the LAG.</p>
|
|
2227
2227
|
* @public
|
|
2228
2228
|
*/
|
|
2229
|
-
macSecKeys?: MacSecKey[];
|
|
2229
|
+
macSecKeys?: MacSecKey[] | undefined;
|
|
2230
2230
|
}
|
|
2231
2231
|
/**
|
|
2232
2232
|
* <p>Information about a private virtual interface.</p>
|
|
@@ -2253,47 +2253,47 @@ export interface NewPrivateVirtualInterface {
|
|
|
2253
2253
|
* <p>The maximum transmission unit (MTU), in bytes. The supported values are 1500 and 8500. The default value is 1500.</p>
|
|
2254
2254
|
* @public
|
|
2255
2255
|
*/
|
|
2256
|
-
mtu?: number;
|
|
2256
|
+
mtu?: number | undefined;
|
|
2257
2257
|
/**
|
|
2258
2258
|
* <p>The authentication key for BGP configuration. This string has a minimum length of 6 characters and and a maximun lenth of 80 characters.</p>
|
|
2259
2259
|
* @public
|
|
2260
2260
|
*/
|
|
2261
|
-
authKey?: string;
|
|
2261
|
+
authKey?: string | undefined;
|
|
2262
2262
|
/**
|
|
2263
2263
|
* <p>The IP address assigned to the Amazon interface.</p>
|
|
2264
2264
|
* @public
|
|
2265
2265
|
*/
|
|
2266
|
-
amazonAddress?: string;
|
|
2266
|
+
amazonAddress?: string | undefined;
|
|
2267
2267
|
/**
|
|
2268
2268
|
* <p>The IP address assigned to the customer interface.</p>
|
|
2269
2269
|
* @public
|
|
2270
2270
|
*/
|
|
2271
|
-
customerAddress?: string;
|
|
2271
|
+
customerAddress?: string | undefined;
|
|
2272
2272
|
/**
|
|
2273
2273
|
* <p>The address family for the BGP peer.</p>
|
|
2274
2274
|
* @public
|
|
2275
2275
|
*/
|
|
2276
|
-
addressFamily?: AddressFamily;
|
|
2276
|
+
addressFamily?: AddressFamily | undefined;
|
|
2277
2277
|
/**
|
|
2278
2278
|
* <p>The ID of the virtual private gateway.</p>
|
|
2279
2279
|
* @public
|
|
2280
2280
|
*/
|
|
2281
|
-
virtualGatewayId?: string;
|
|
2281
|
+
virtualGatewayId?: string | undefined;
|
|
2282
2282
|
/**
|
|
2283
2283
|
* <p>The ID of the Direct Connect gateway.</p>
|
|
2284
2284
|
* @public
|
|
2285
2285
|
*/
|
|
2286
|
-
directConnectGatewayId?: string;
|
|
2286
|
+
directConnectGatewayId?: string | undefined;
|
|
2287
2287
|
/**
|
|
2288
2288
|
* <p>The tags associated with the private virtual interface.</p>
|
|
2289
2289
|
* @public
|
|
2290
2290
|
*/
|
|
2291
|
-
tags?: Tag[];
|
|
2291
|
+
tags?: Tag[] | undefined;
|
|
2292
2292
|
/**
|
|
2293
2293
|
* <p>Indicates whether to enable or disable SiteLink.</p>
|
|
2294
2294
|
* @public
|
|
2295
2295
|
*/
|
|
2296
|
-
enableSiteLink?: boolean;
|
|
2296
|
+
enableSiteLink?: boolean | undefined;
|
|
2297
2297
|
}
|
|
2298
2298
|
/**
|
|
2299
2299
|
* @public
|
|
@@ -2335,32 +2335,32 @@ export interface NewPublicVirtualInterface {
|
|
|
2335
2335
|
* <p>The authentication key for BGP configuration. This string has a minimum length of 6 characters and and a maximun lenth of 80 characters.</p>
|
|
2336
2336
|
* @public
|
|
2337
2337
|
*/
|
|
2338
|
-
authKey?: string;
|
|
2338
|
+
authKey?: string | undefined;
|
|
2339
2339
|
/**
|
|
2340
2340
|
* <p>The IP address assigned to the Amazon interface.</p>
|
|
2341
2341
|
* @public
|
|
2342
2342
|
*/
|
|
2343
|
-
amazonAddress?: string;
|
|
2343
|
+
amazonAddress?: string | undefined;
|
|
2344
2344
|
/**
|
|
2345
2345
|
* <p>The IP address assigned to the customer interface.</p>
|
|
2346
2346
|
* @public
|
|
2347
2347
|
*/
|
|
2348
|
-
customerAddress?: string;
|
|
2348
|
+
customerAddress?: string | undefined;
|
|
2349
2349
|
/**
|
|
2350
2350
|
* <p>The address family for the BGP peer.</p>
|
|
2351
2351
|
* @public
|
|
2352
2352
|
*/
|
|
2353
|
-
addressFamily?: AddressFamily;
|
|
2353
|
+
addressFamily?: AddressFamily | undefined;
|
|
2354
2354
|
/**
|
|
2355
2355
|
* <p>The routes to be advertised to the Amazon Web Services network in this Region. Applies to public virtual interfaces.</p>
|
|
2356
2356
|
* @public
|
|
2357
2357
|
*/
|
|
2358
|
-
routeFilterPrefixes?: RouteFilterPrefix[];
|
|
2358
|
+
routeFilterPrefixes?: RouteFilterPrefix[] | undefined;
|
|
2359
2359
|
/**
|
|
2360
2360
|
* <p>The tags associated with the public virtual interface.</p>
|
|
2361
2361
|
* @public
|
|
2362
2362
|
*/
|
|
2363
|
-
tags?: Tag[];
|
|
2363
|
+
tags?: Tag[] | undefined;
|
|
2364
2364
|
}
|
|
2365
2365
|
/**
|
|
2366
2366
|
* @public
|
|
@@ -2386,58 +2386,58 @@ export interface NewTransitVirtualInterface {
|
|
|
2386
2386
|
* <p>The name of the virtual interface assigned by the customer network. The name has a maximum of 100 characters. The following are valid characters: a-z, 0-9 and a hyphen (-).</p>
|
|
2387
2387
|
* @public
|
|
2388
2388
|
*/
|
|
2389
|
-
virtualInterfaceName?: string;
|
|
2389
|
+
virtualInterfaceName?: string | undefined;
|
|
2390
2390
|
/**
|
|
2391
2391
|
* <p>The ID of the VLAN.</p>
|
|
2392
2392
|
* @public
|
|
2393
2393
|
*/
|
|
2394
|
-
vlan?: number;
|
|
2394
|
+
vlan?: number | undefined;
|
|
2395
2395
|
/**
|
|
2396
2396
|
* <p>The autonomous system (AS) number for Border Gateway Protocol (BGP) configuration.</p>
|
|
2397
2397
|
* <p>The valid values are 1-2147483647.</p>
|
|
2398
2398
|
* @public
|
|
2399
2399
|
*/
|
|
2400
|
-
asn?: number;
|
|
2400
|
+
asn?: number | undefined;
|
|
2401
2401
|
/**
|
|
2402
2402
|
* <p>The maximum transmission unit (MTU), in bytes. The supported values are 1500 and 8500. The default value is 1500.</p>
|
|
2403
2403
|
* @public
|
|
2404
2404
|
*/
|
|
2405
|
-
mtu?: number;
|
|
2405
|
+
mtu?: number | undefined;
|
|
2406
2406
|
/**
|
|
2407
2407
|
* <p>The authentication key for BGP configuration. This string has a minimum length of 6 characters and and a maximun lenth of 80 characters.</p>
|
|
2408
2408
|
* @public
|
|
2409
2409
|
*/
|
|
2410
|
-
authKey?: string;
|
|
2410
|
+
authKey?: string | undefined;
|
|
2411
2411
|
/**
|
|
2412
2412
|
* <p>The IP address assigned to the Amazon interface.</p>
|
|
2413
2413
|
* @public
|
|
2414
2414
|
*/
|
|
2415
|
-
amazonAddress?: string;
|
|
2415
|
+
amazonAddress?: string | undefined;
|
|
2416
2416
|
/**
|
|
2417
2417
|
* <p>The IP address assigned to the customer interface.</p>
|
|
2418
2418
|
* @public
|
|
2419
2419
|
*/
|
|
2420
|
-
customerAddress?: string;
|
|
2420
|
+
customerAddress?: string | undefined;
|
|
2421
2421
|
/**
|
|
2422
2422
|
* <p>The address family for the BGP peer.</p>
|
|
2423
2423
|
* @public
|
|
2424
2424
|
*/
|
|
2425
|
-
addressFamily?: AddressFamily;
|
|
2425
|
+
addressFamily?: AddressFamily | undefined;
|
|
2426
2426
|
/**
|
|
2427
2427
|
* <p>The ID of the Direct Connect gateway.</p>
|
|
2428
2428
|
* @public
|
|
2429
2429
|
*/
|
|
2430
|
-
directConnectGatewayId?: string;
|
|
2430
|
+
directConnectGatewayId?: string | undefined;
|
|
2431
2431
|
/**
|
|
2432
2432
|
* <p>The tags associated with the transitive virtual interface.</p>
|
|
2433
2433
|
* @public
|
|
2434
2434
|
*/
|
|
2435
|
-
tags?: Tag[];
|
|
2435
|
+
tags?: Tag[] | undefined;
|
|
2436
2436
|
/**
|
|
2437
2437
|
* <p>Indicates whether to enable or disable SiteLink.</p>
|
|
2438
2438
|
* @public
|
|
2439
2439
|
*/
|
|
2440
|
-
enableSiteLink?: boolean;
|
|
2440
|
+
enableSiteLink?: boolean | undefined;
|
|
2441
2441
|
}
|
|
2442
2442
|
/**
|
|
2443
2443
|
* @public
|
|
@@ -2462,7 +2462,7 @@ export interface CreateTransitVirtualInterfaceResult {
|
|
|
2462
2462
|
* <p>Information about a virtual interface.</p>
|
|
2463
2463
|
* @public
|
|
2464
2464
|
*/
|
|
2465
|
-
virtualInterface?: VirtualInterface;
|
|
2465
|
+
virtualInterface?: VirtualInterface | undefined;
|
|
2466
2466
|
}
|
|
2467
2467
|
/**
|
|
2468
2468
|
* @public
|
|
@@ -2472,22 +2472,22 @@ export interface DeleteBGPPeerRequest {
|
|
|
2472
2472
|
* <p>The ID of the virtual interface.</p>
|
|
2473
2473
|
* @public
|
|
2474
2474
|
*/
|
|
2475
|
-
virtualInterfaceId?: string;
|
|
2475
|
+
virtualInterfaceId?: string | undefined;
|
|
2476
2476
|
/**
|
|
2477
2477
|
* <p>The autonomous system (AS) number for Border Gateway Protocol (BGP) configuration.</p>
|
|
2478
2478
|
* @public
|
|
2479
2479
|
*/
|
|
2480
|
-
asn?: number;
|
|
2480
|
+
asn?: number | undefined;
|
|
2481
2481
|
/**
|
|
2482
2482
|
* <p>The IP address assigned to the customer interface.</p>
|
|
2483
2483
|
* @public
|
|
2484
2484
|
*/
|
|
2485
|
-
customerAddress?: string;
|
|
2485
|
+
customerAddress?: string | undefined;
|
|
2486
2486
|
/**
|
|
2487
2487
|
* <p>The ID of the BGP peer.</p>
|
|
2488
2488
|
* @public
|
|
2489
2489
|
*/
|
|
2490
|
-
bgpPeerId?: string;
|
|
2490
|
+
bgpPeerId?: string | undefined;
|
|
2491
2491
|
}
|
|
2492
2492
|
/**
|
|
2493
2493
|
* @public
|
|
@@ -2497,7 +2497,7 @@ export interface DeleteBGPPeerResponse {
|
|
|
2497
2497
|
* <p>The virtual interface.</p>
|
|
2498
2498
|
* @public
|
|
2499
2499
|
*/
|
|
2500
|
-
virtualInterface?: VirtualInterface;
|
|
2500
|
+
virtualInterface?: VirtualInterface | undefined;
|
|
2501
2501
|
}
|
|
2502
2502
|
/**
|
|
2503
2503
|
* @public
|
|
@@ -2527,7 +2527,7 @@ export interface DeleteDirectConnectGatewayResult {
|
|
|
2527
2527
|
* <p>The Direct Connect gateway.</p>
|
|
2528
2528
|
* @public
|
|
2529
2529
|
*/
|
|
2530
|
-
directConnectGateway?: DirectConnectGateway;
|
|
2530
|
+
directConnectGateway?: DirectConnectGateway | undefined;
|
|
2531
2531
|
}
|
|
2532
2532
|
/**
|
|
2533
2533
|
* @public
|
|
@@ -2537,17 +2537,17 @@ export interface DeleteDirectConnectGatewayAssociationRequest {
|
|
|
2537
2537
|
* <p>The ID of the Direct Connect gateway association.</p>
|
|
2538
2538
|
* @public
|
|
2539
2539
|
*/
|
|
2540
|
-
associationId?: string;
|
|
2540
|
+
associationId?: string | undefined;
|
|
2541
2541
|
/**
|
|
2542
2542
|
* <p>The ID of the Direct Connect gateway.</p>
|
|
2543
2543
|
* @public
|
|
2544
2544
|
*/
|
|
2545
|
-
directConnectGatewayId?: string;
|
|
2545
|
+
directConnectGatewayId?: string | undefined;
|
|
2546
2546
|
/**
|
|
2547
2547
|
* <p>The ID of the virtual private gateway.</p>
|
|
2548
2548
|
* @public
|
|
2549
2549
|
*/
|
|
2550
|
-
virtualGatewayId?: string;
|
|
2550
|
+
virtualGatewayId?: string | undefined;
|
|
2551
2551
|
}
|
|
2552
2552
|
/**
|
|
2553
2553
|
* @public
|
|
@@ -2557,7 +2557,7 @@ export interface DeleteDirectConnectGatewayAssociationResult {
|
|
|
2557
2557
|
* <p>Information about the deleted association.</p>
|
|
2558
2558
|
* @public
|
|
2559
2559
|
*/
|
|
2560
|
-
directConnectGatewayAssociation?: DirectConnectGatewayAssociation;
|
|
2560
|
+
directConnectGatewayAssociation?: DirectConnectGatewayAssociation | undefined;
|
|
2561
2561
|
}
|
|
2562
2562
|
/**
|
|
2563
2563
|
* @public
|
|
@@ -2577,7 +2577,7 @@ export interface DeleteDirectConnectGatewayAssociationProposalResult {
|
|
|
2577
2577
|
* <p>The ID of the associated gateway.</p>
|
|
2578
2578
|
* @public
|
|
2579
2579
|
*/
|
|
2580
|
-
directConnectGatewayAssociationProposal?: DirectConnectGatewayAssociationProposal;
|
|
2580
|
+
directConnectGatewayAssociationProposal?: DirectConnectGatewayAssociationProposal | undefined;
|
|
2581
2581
|
}
|
|
2582
2582
|
/**
|
|
2583
2583
|
* @public
|
|
@@ -2628,7 +2628,7 @@ export interface DeleteInterconnectResponse {
|
|
|
2628
2628
|
* </ul>
|
|
2629
2629
|
* @public
|
|
2630
2630
|
*/
|
|
2631
|
-
interconnectState?: InterconnectState;
|
|
2631
|
+
interconnectState?: InterconnectState | undefined;
|
|
2632
2632
|
}
|
|
2633
2633
|
/**
|
|
2634
2634
|
* @public
|
|
@@ -2696,7 +2696,7 @@ export interface DeleteVirtualInterfaceResponse {
|
|
|
2696
2696
|
* </ul>
|
|
2697
2697
|
* @public
|
|
2698
2698
|
*/
|
|
2699
|
-
virtualInterfaceState?: VirtualInterfaceState;
|
|
2699
|
+
virtualInterfaceState?: VirtualInterfaceState | undefined;
|
|
2700
2700
|
}
|
|
2701
2701
|
/**
|
|
2702
2702
|
* @public
|
|
@@ -2723,12 +2723,12 @@ export interface DescribeConnectionLoaRequest {
|
|
|
2723
2723
|
* the LOA-CFA lists the provider name alongside your company name as the requester of the cross connect.</p>
|
|
2724
2724
|
* @public
|
|
2725
2725
|
*/
|
|
2726
|
-
providerName?: string;
|
|
2726
|
+
providerName?: string | undefined;
|
|
2727
2727
|
/**
|
|
2728
2728
|
* <p>The standard media type for the LOA-CFA document. The only supported value is application/pdf.</p>
|
|
2729
2729
|
* @public
|
|
2730
2730
|
*/
|
|
2731
|
-
loaContentType?: LoaContentType;
|
|
2731
|
+
loaContentType?: LoaContentType | undefined;
|
|
2732
2732
|
}
|
|
2733
2733
|
/**
|
|
2734
2734
|
* <p>Information about a Letter of Authorization - Connecting Facility Assignment (LOA-CFA) for a connection.</p>
|
|
@@ -2739,12 +2739,12 @@ export interface Loa {
|
|
|
2739
2739
|
* <p>The binary contents of the LOA-CFA document.</p>
|
|
2740
2740
|
* @public
|
|
2741
2741
|
*/
|
|
2742
|
-
loaContent?: Uint8Array;
|
|
2742
|
+
loaContent?: Uint8Array | undefined;
|
|
2743
2743
|
/**
|
|
2744
2744
|
* <p>The standard media type for the LOA-CFA document. The only supported value is application/pdf.</p>
|
|
2745
2745
|
* @public
|
|
2746
2746
|
*/
|
|
2747
|
-
loaContentType?: LoaContentType;
|
|
2747
|
+
loaContentType?: LoaContentType | undefined;
|
|
2748
2748
|
}
|
|
2749
2749
|
/**
|
|
2750
2750
|
* @public
|
|
@@ -2754,7 +2754,7 @@ export interface DescribeConnectionLoaResponse {
|
|
|
2754
2754
|
* <p>The Letter of Authorization - Connecting Facility Assignment (LOA-CFA).</p>
|
|
2755
2755
|
* @public
|
|
2756
2756
|
*/
|
|
2757
|
-
loa?: Loa;
|
|
2757
|
+
loa?: Loa | undefined;
|
|
2758
2758
|
}
|
|
2759
2759
|
/**
|
|
2760
2760
|
* @public
|
|
@@ -2764,7 +2764,7 @@ export interface DescribeConnectionsRequest {
|
|
|
2764
2764
|
* <p>The ID of the connection.</p>
|
|
2765
2765
|
* @public
|
|
2766
2766
|
*/
|
|
2767
|
-
connectionId?: string;
|
|
2767
|
+
connectionId?: string | undefined;
|
|
2768
2768
|
}
|
|
2769
2769
|
/**
|
|
2770
2770
|
* @public
|
|
@@ -2797,7 +2797,7 @@ export interface DescribeCustomerMetadataResponse {
|
|
|
2797
2797
|
* <p>The list of customer agreements.</p>
|
|
2798
2798
|
* @public
|
|
2799
2799
|
*/
|
|
2800
|
-
agreements?: CustomerAgreement[];
|
|
2800
|
+
agreements?: CustomerAgreement[] | undefined;
|
|
2801
2801
|
/**
|
|
2802
2802
|
* <p>The type of network-to-network interface (NNI) partner. The partner type will be one of the following:</p>
|
|
2803
2803
|
* <ul>
|
|
@@ -2813,7 +2813,7 @@ export interface DescribeCustomerMetadataResponse {
|
|
|
2813
2813
|
* </ul>
|
|
2814
2814
|
* @public
|
|
2815
2815
|
*/
|
|
2816
|
-
nniPartnerType?: NniPartnerType;
|
|
2816
|
+
nniPartnerType?: NniPartnerType | undefined;
|
|
2817
2817
|
}
|
|
2818
2818
|
/**
|
|
2819
2819
|
* @public
|
|
@@ -2823,17 +2823,17 @@ export interface DescribeDirectConnectGatewayAssociationProposalsRequest {
|
|
|
2823
2823
|
* <p>The ID of the Direct Connect gateway.</p>
|
|
2824
2824
|
* @public
|
|
2825
2825
|
*/
|
|
2826
|
-
directConnectGatewayId?: string;
|
|
2826
|
+
directConnectGatewayId?: string | undefined;
|
|
2827
2827
|
/**
|
|
2828
2828
|
* <p>The ID of the proposal.</p>
|
|
2829
2829
|
* @public
|
|
2830
2830
|
*/
|
|
2831
|
-
proposalId?: string;
|
|
2831
|
+
proposalId?: string | undefined;
|
|
2832
2832
|
/**
|
|
2833
2833
|
* <p>The ID of the associated gateway.</p>
|
|
2834
2834
|
* @public
|
|
2835
2835
|
*/
|
|
2836
|
-
associatedGatewayId?: string;
|
|
2836
|
+
associatedGatewayId?: string | undefined;
|
|
2837
2837
|
/**
|
|
2838
2838
|
* <p>The maximum number of results to return with a single call.
|
|
2839
2839
|
* To retrieve the remaining results, make another call with the returned <code>nextToken</code> value.</p>
|
|
@@ -2841,12 +2841,12 @@ export interface DescribeDirectConnectGatewayAssociationProposalsRequest {
|
|
|
2841
2841
|
* returned.</p>
|
|
2842
2842
|
* @public
|
|
2843
2843
|
*/
|
|
2844
|
-
maxResults?: number;
|
|
2844
|
+
maxResults?: number | undefined;
|
|
2845
2845
|
/**
|
|
2846
2846
|
* <p>The token for the next page of results.</p>
|
|
2847
2847
|
* @public
|
|
2848
2848
|
*/
|
|
2849
|
-
nextToken?: string;
|
|
2849
|
+
nextToken?: string | undefined;
|
|
2850
2850
|
}
|
|
2851
2851
|
/**
|
|
2852
2852
|
* @public
|
|
@@ -2856,12 +2856,12 @@ export interface DescribeDirectConnectGatewayAssociationProposalsResult {
|
|
|
2856
2856
|
* <p>Describes the Direct Connect gateway association proposals.</p>
|
|
2857
2857
|
* @public
|
|
2858
2858
|
*/
|
|
2859
|
-
directConnectGatewayAssociationProposals?: DirectConnectGatewayAssociationProposal[];
|
|
2859
|
+
directConnectGatewayAssociationProposals?: DirectConnectGatewayAssociationProposal[] | undefined;
|
|
2860
2860
|
/**
|
|
2861
2861
|
* <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>
|
|
2862
2862
|
* @public
|
|
2863
2863
|
*/
|
|
2864
|
-
nextToken?: string;
|
|
2864
|
+
nextToken?: string | undefined;
|
|
2865
2865
|
}
|
|
2866
2866
|
/**
|
|
2867
2867
|
* @public
|
|
@@ -2871,17 +2871,17 @@ export interface DescribeDirectConnectGatewayAssociationsRequest {
|
|
|
2871
2871
|
* <p>The ID of the Direct Connect gateway association.</p>
|
|
2872
2872
|
* @public
|
|
2873
2873
|
*/
|
|
2874
|
-
associationId?: string;
|
|
2874
|
+
associationId?: string | undefined;
|
|
2875
2875
|
/**
|
|
2876
2876
|
* <p>The ID of the associated gateway.</p>
|
|
2877
2877
|
* @public
|
|
2878
2878
|
*/
|
|
2879
|
-
associatedGatewayId?: string;
|
|
2879
|
+
associatedGatewayId?: string | undefined;
|
|
2880
2880
|
/**
|
|
2881
2881
|
* <p>The ID of the Direct Connect gateway.</p>
|
|
2882
2882
|
* @public
|
|
2883
2883
|
*/
|
|
2884
|
-
directConnectGatewayId?: string;
|
|
2884
|
+
directConnectGatewayId?: string | undefined;
|
|
2885
2885
|
/**
|
|
2886
2886
|
* <p>The maximum number of results to return with a single call.
|
|
2887
2887
|
* To retrieve the remaining results, make another call with the returned <code>nextToken</code> value.</p>
|
|
@@ -2889,17 +2889,17 @@ export interface DescribeDirectConnectGatewayAssociationsRequest {
|
|
|
2889
2889
|
* returned.</p>
|
|
2890
2890
|
* @public
|
|
2891
2891
|
*/
|
|
2892
|
-
maxResults?: number;
|
|
2892
|
+
maxResults?: number | undefined;
|
|
2893
2893
|
/**
|
|
2894
2894
|
* <p>The token provided in the previous call to retrieve the next page.</p>
|
|
2895
2895
|
* @public
|
|
2896
2896
|
*/
|
|
2897
|
-
nextToken?: string;
|
|
2897
|
+
nextToken?: string | undefined;
|
|
2898
2898
|
/**
|
|
2899
2899
|
* <p>The ID of the virtual private gateway or transit gateway.</p>
|
|
2900
2900
|
* @public
|
|
2901
2901
|
*/
|
|
2902
|
-
virtualGatewayId?: string;
|
|
2902
|
+
virtualGatewayId?: string | undefined;
|
|
2903
2903
|
}
|
|
2904
2904
|
/**
|
|
2905
2905
|
* @public
|
|
@@ -2909,12 +2909,12 @@ export interface DescribeDirectConnectGatewayAssociationsResult {
|
|
|
2909
2909
|
* <p>Information about the associations.</p>
|
|
2910
2910
|
* @public
|
|
2911
2911
|
*/
|
|
2912
|
-
directConnectGatewayAssociations?: DirectConnectGatewayAssociation[];
|
|
2912
|
+
directConnectGatewayAssociations?: DirectConnectGatewayAssociation[] | undefined;
|
|
2913
2913
|
/**
|
|
2914
2914
|
* <p>The token to retrieve the next page.</p>
|
|
2915
2915
|
* @public
|
|
2916
2916
|
*/
|
|
2917
|
-
nextToken?: string;
|
|
2917
|
+
nextToken?: string | undefined;
|
|
2918
2918
|
}
|
|
2919
2919
|
/**
|
|
2920
2920
|
* @public
|
|
@@ -2924,12 +2924,12 @@ export interface DescribeDirectConnectGatewayAttachmentsRequest {
|
|
|
2924
2924
|
* <p>The ID of the Direct Connect gateway.</p>
|
|
2925
2925
|
* @public
|
|
2926
2926
|
*/
|
|
2927
|
-
directConnectGatewayId?: string;
|
|
2927
|
+
directConnectGatewayId?: string | undefined;
|
|
2928
2928
|
/**
|
|
2929
2929
|
* <p>The ID of the virtual interface.</p>
|
|
2930
2930
|
* @public
|
|
2931
2931
|
*/
|
|
2932
|
-
virtualInterfaceId?: string;
|
|
2932
|
+
virtualInterfaceId?: string | undefined;
|
|
2933
2933
|
/**
|
|
2934
2934
|
* <p>The maximum number of results to return with a single call.
|
|
2935
2935
|
* To retrieve the remaining results, make another call with the returned <code>nextToken</code> value.</p>
|
|
@@ -2937,12 +2937,12 @@ export interface DescribeDirectConnectGatewayAttachmentsRequest {
|
|
|
2937
2937
|
* returned.</p>
|
|
2938
2938
|
* @public
|
|
2939
2939
|
*/
|
|
2940
|
-
maxResults?: number;
|
|
2940
|
+
maxResults?: number | undefined;
|
|
2941
2941
|
/**
|
|
2942
2942
|
* <p>The token provided in the previous call to retrieve the next page.</p>
|
|
2943
2943
|
* @public
|
|
2944
2944
|
*/
|
|
2945
|
-
nextToken?: string;
|
|
2945
|
+
nextToken?: string | undefined;
|
|
2946
2946
|
}
|
|
2947
2947
|
/**
|
|
2948
2948
|
* @public
|
|
@@ -2979,22 +2979,22 @@ export interface DirectConnectGatewayAttachment {
|
|
|
2979
2979
|
* <p>The ID of the Direct Connect gateway.</p>
|
|
2980
2980
|
* @public
|
|
2981
2981
|
*/
|
|
2982
|
-
directConnectGatewayId?: string;
|
|
2982
|
+
directConnectGatewayId?: string | undefined;
|
|
2983
2983
|
/**
|
|
2984
2984
|
* <p>The ID of the virtual interface.</p>
|
|
2985
2985
|
* @public
|
|
2986
2986
|
*/
|
|
2987
|
-
virtualInterfaceId?: string;
|
|
2987
|
+
virtualInterfaceId?: string | undefined;
|
|
2988
2988
|
/**
|
|
2989
2989
|
* <p>The Amazon Web Services Region where the virtual interface is located.</p>
|
|
2990
2990
|
* @public
|
|
2991
2991
|
*/
|
|
2992
|
-
virtualInterfaceRegion?: string;
|
|
2992
|
+
virtualInterfaceRegion?: string | undefined;
|
|
2993
2993
|
/**
|
|
2994
2994
|
* <p>The ID of the Amazon Web Services account that owns the virtual interface.</p>
|
|
2995
2995
|
* @public
|
|
2996
2996
|
*/
|
|
2997
|
-
virtualInterfaceOwnerAccount?: string;
|
|
2997
|
+
virtualInterfaceOwnerAccount?: string | undefined;
|
|
2998
2998
|
/**
|
|
2999
2999
|
* <p>The state of the attachment. The following are the possible values:</p>
|
|
3000
3000
|
* <ul>
|
|
@@ -3017,17 +3017,17 @@ export interface DirectConnectGatewayAttachment {
|
|
|
3017
3017
|
* </ul>
|
|
3018
3018
|
* @public
|
|
3019
3019
|
*/
|
|
3020
|
-
attachmentState?: DirectConnectGatewayAttachmentState;
|
|
3020
|
+
attachmentState?: DirectConnectGatewayAttachmentState | undefined;
|
|
3021
3021
|
/**
|
|
3022
3022
|
* <p>The type of attachment.</p>
|
|
3023
3023
|
* @public
|
|
3024
3024
|
*/
|
|
3025
|
-
attachmentType?: DirectConnectGatewayAttachmentType;
|
|
3025
|
+
attachmentType?: DirectConnectGatewayAttachmentType | undefined;
|
|
3026
3026
|
/**
|
|
3027
3027
|
* <p>The error message if the state of an object failed to advance.</p>
|
|
3028
3028
|
* @public
|
|
3029
3029
|
*/
|
|
3030
|
-
stateChangeError?: string;
|
|
3030
|
+
stateChangeError?: string | undefined;
|
|
3031
3031
|
}
|
|
3032
3032
|
/**
|
|
3033
3033
|
* @public
|
|
@@ -3037,12 +3037,12 @@ export interface DescribeDirectConnectGatewayAttachmentsResult {
|
|
|
3037
3037
|
* <p>The attachments.</p>
|
|
3038
3038
|
* @public
|
|
3039
3039
|
*/
|
|
3040
|
-
directConnectGatewayAttachments?: DirectConnectGatewayAttachment[];
|
|
3040
|
+
directConnectGatewayAttachments?: DirectConnectGatewayAttachment[] | undefined;
|
|
3041
3041
|
/**
|
|
3042
3042
|
* <p>The token to retrieve the next page.</p>
|
|
3043
3043
|
* @public
|
|
3044
3044
|
*/
|
|
3045
|
-
nextToken?: string;
|
|
3045
|
+
nextToken?: string | undefined;
|
|
3046
3046
|
}
|
|
3047
3047
|
/**
|
|
3048
3048
|
* @public
|
|
@@ -3052,7 +3052,7 @@ export interface DescribeDirectConnectGatewaysRequest {
|
|
|
3052
3052
|
* <p>The ID of the Direct Connect gateway.</p>
|
|
3053
3053
|
* @public
|
|
3054
3054
|
*/
|
|
3055
|
-
directConnectGatewayId?: string;
|
|
3055
|
+
directConnectGatewayId?: string | undefined;
|
|
3056
3056
|
/**
|
|
3057
3057
|
* <p>The maximum number of results to return with a single call.
|
|
3058
3058
|
* To retrieve the remaining results, make another call with the returned <code>nextToken</code> value.</p>
|
|
@@ -3060,12 +3060,12 @@ export interface DescribeDirectConnectGatewaysRequest {
|
|
|
3060
3060
|
* returned.</p>
|
|
3061
3061
|
* @public
|
|
3062
3062
|
*/
|
|
3063
|
-
maxResults?: number;
|
|
3063
|
+
maxResults?: number | undefined;
|
|
3064
3064
|
/**
|
|
3065
3065
|
* <p>The token provided in the previous call to retrieve the next page.</p>
|
|
3066
3066
|
* @public
|
|
3067
3067
|
*/
|
|
3068
|
-
nextToken?: string;
|
|
3068
|
+
nextToken?: string | undefined;
|
|
3069
3069
|
}
|
|
3070
3070
|
/**
|
|
3071
3071
|
* @public
|
|
@@ -3075,12 +3075,12 @@ export interface DescribeDirectConnectGatewaysResult {
|
|
|
3075
3075
|
* <p>The Direct Connect gateways.</p>
|
|
3076
3076
|
* @public
|
|
3077
3077
|
*/
|
|
3078
|
-
directConnectGateways?: DirectConnectGateway[];
|
|
3078
|
+
directConnectGateways?: DirectConnectGateway[] | undefined;
|
|
3079
3079
|
/**
|
|
3080
3080
|
* <p>The token to retrieve the next page.</p>
|
|
3081
3081
|
* @public
|
|
3082
3082
|
*/
|
|
3083
|
-
nextToken?: string;
|
|
3083
|
+
nextToken?: string | undefined;
|
|
3084
3084
|
}
|
|
3085
3085
|
/**
|
|
3086
3086
|
* @public
|
|
@@ -3105,12 +3105,12 @@ export interface DescribeInterconnectLoaRequest {
|
|
|
3105
3105
|
* <p>The name of the service provider who establishes connectivity on your behalf. If you supply this parameter, the LOA-CFA lists the provider name alongside your company name as the requester of the cross connect.</p>
|
|
3106
3106
|
* @public
|
|
3107
3107
|
*/
|
|
3108
|
-
providerName?: string;
|
|
3108
|
+
providerName?: string | undefined;
|
|
3109
3109
|
/**
|
|
3110
3110
|
* <p>The standard media type for the LOA-CFA document. The only supported value is application/pdf.</p>
|
|
3111
3111
|
* @public
|
|
3112
3112
|
*/
|
|
3113
|
-
loaContentType?: LoaContentType;
|
|
3113
|
+
loaContentType?: LoaContentType | undefined;
|
|
3114
3114
|
}
|
|
3115
3115
|
/**
|
|
3116
3116
|
* @public
|
|
@@ -3120,7 +3120,7 @@ export interface DescribeInterconnectLoaResponse {
|
|
|
3120
3120
|
* <p>The Letter of Authorization - Connecting Facility Assignment (LOA-CFA).</p>
|
|
3121
3121
|
* @public
|
|
3122
3122
|
*/
|
|
3123
|
-
loa?: Loa;
|
|
3123
|
+
loa?: Loa | undefined;
|
|
3124
3124
|
}
|
|
3125
3125
|
/**
|
|
3126
3126
|
* @public
|
|
@@ -3130,7 +3130,7 @@ export interface DescribeInterconnectsRequest {
|
|
|
3130
3130
|
* <p>The ID of the interconnect.</p>
|
|
3131
3131
|
* @public
|
|
3132
3132
|
*/
|
|
3133
|
-
interconnectId?: string;
|
|
3133
|
+
interconnectId?: string | undefined;
|
|
3134
3134
|
}
|
|
3135
3135
|
/**
|
|
3136
3136
|
* @public
|
|
@@ -3140,7 +3140,7 @@ export interface Interconnects {
|
|
|
3140
3140
|
* <p>The interconnects.</p>
|
|
3141
3141
|
* @public
|
|
3142
3142
|
*/
|
|
3143
|
-
interconnects?: Interconnect[];
|
|
3143
|
+
interconnects?: Interconnect[] | undefined;
|
|
3144
3144
|
}
|
|
3145
3145
|
/**
|
|
3146
3146
|
* @public
|
|
@@ -3150,7 +3150,7 @@ export interface DescribeLagsRequest {
|
|
|
3150
3150
|
* <p>The ID of the LAG.</p>
|
|
3151
3151
|
* @public
|
|
3152
3152
|
*/
|
|
3153
|
-
lagId?: string;
|
|
3153
|
+
lagId?: string | undefined;
|
|
3154
3154
|
}
|
|
3155
3155
|
/**
|
|
3156
3156
|
* @public
|
|
@@ -3160,7 +3160,7 @@ export interface Lags {
|
|
|
3160
3160
|
* <p>The LAGs.</p>
|
|
3161
3161
|
* @public
|
|
3162
3162
|
*/
|
|
3163
|
-
lags?: Lag[];
|
|
3163
|
+
lags?: Lag[] | undefined;
|
|
3164
3164
|
}
|
|
3165
3165
|
/**
|
|
3166
3166
|
* @public
|
|
@@ -3176,12 +3176,12 @@ export interface DescribeLoaRequest {
|
|
|
3176
3176
|
* LOA-CFA lists the provider name alongside your company name as the requester of the cross connect.</p>
|
|
3177
3177
|
* @public
|
|
3178
3178
|
*/
|
|
3179
|
-
providerName?: string;
|
|
3179
|
+
providerName?: string | undefined;
|
|
3180
3180
|
/**
|
|
3181
3181
|
* <p>The standard media type for the LOA-CFA document. The only supported value is application/pdf.</p>
|
|
3182
3182
|
* @public
|
|
3183
3183
|
*/
|
|
3184
|
-
loaContentType?: LoaContentType;
|
|
3184
|
+
loaContentType?: LoaContentType | undefined;
|
|
3185
3185
|
}
|
|
3186
3186
|
/**
|
|
3187
3187
|
* <p>Information about an Direct Connect location.</p>
|
|
@@ -3192,32 +3192,32 @@ export interface Location {
|
|
|
3192
3192
|
* <p>The code for the location.</p>
|
|
3193
3193
|
* @public
|
|
3194
3194
|
*/
|
|
3195
|
-
locationCode?: string;
|
|
3195
|
+
locationCode?: string | undefined;
|
|
3196
3196
|
/**
|
|
3197
3197
|
* <p>The name of the location. This includes the name of the colocation partner and the physical site of the building.</p>
|
|
3198
3198
|
* @public
|
|
3199
3199
|
*/
|
|
3200
|
-
locationName?: string;
|
|
3200
|
+
locationName?: string | undefined;
|
|
3201
3201
|
/**
|
|
3202
3202
|
* <p>The Amazon Web Services Region for the location.</p>
|
|
3203
3203
|
* @public
|
|
3204
3204
|
*/
|
|
3205
|
-
region?: string;
|
|
3205
|
+
region?: string | undefined;
|
|
3206
3206
|
/**
|
|
3207
3207
|
* <p>The available port speeds for the location.</p>
|
|
3208
3208
|
* @public
|
|
3209
3209
|
*/
|
|
3210
|
-
availablePortSpeeds?: string[];
|
|
3210
|
+
availablePortSpeeds?: string[] | undefined;
|
|
3211
3211
|
/**
|
|
3212
3212
|
* <p>The name of the service provider for the location.</p>
|
|
3213
3213
|
* @public
|
|
3214
3214
|
*/
|
|
3215
|
-
availableProviders?: string[];
|
|
3215
|
+
availableProviders?: string[] | undefined;
|
|
3216
3216
|
/**
|
|
3217
3217
|
* <p>The available MAC Security (MACsec) port speeds for the location.</p>
|
|
3218
3218
|
* @public
|
|
3219
3219
|
*/
|
|
3220
|
-
availableMacSecPortSpeeds?: string[];
|
|
3220
|
+
availableMacSecPortSpeeds?: string[] | undefined;
|
|
3221
3221
|
}
|
|
3222
3222
|
/**
|
|
3223
3223
|
* @public
|
|
@@ -3227,7 +3227,7 @@ export interface Locations {
|
|
|
3227
3227
|
* <p>The locations.</p>
|
|
3228
3228
|
* @public
|
|
3229
3229
|
*/
|
|
3230
|
-
locations?: Location[];
|
|
3230
|
+
locations?: Location[] | undefined;
|
|
3231
3231
|
}
|
|
3232
3232
|
/**
|
|
3233
3233
|
* <p>Provides the details about a virtual interface's router.</p>
|
|
@@ -3243,7 +3243,7 @@ export interface DescribeRouterConfigurationRequest {
|
|
|
3243
3243
|
* <p>Identifies the router by a combination of vendor, platform, and software version. For example, <code>CiscoSystemsInc-2900SeriesRouters-IOS124</code>.</p>
|
|
3244
3244
|
* @public
|
|
3245
3245
|
*/
|
|
3246
|
-
routerTypeIdentifier?: string;
|
|
3246
|
+
routerTypeIdentifier?: string | undefined;
|
|
3247
3247
|
}
|
|
3248
3248
|
/**
|
|
3249
3249
|
* <p>Information about the virtual router.</p>
|
|
@@ -3254,32 +3254,32 @@ export interface RouterType {
|
|
|
3254
3254
|
* <p>The vendor for the virtual interface's router.</p>
|
|
3255
3255
|
* @public
|
|
3256
3256
|
*/
|
|
3257
|
-
vendor?: string;
|
|
3257
|
+
vendor?: string | undefined;
|
|
3258
3258
|
/**
|
|
3259
3259
|
* <p>The virtual interface router platform.</p>
|
|
3260
3260
|
* @public
|
|
3261
3261
|
*/
|
|
3262
|
-
platform?: string;
|
|
3262
|
+
platform?: string | undefined;
|
|
3263
3263
|
/**
|
|
3264
3264
|
* <p>The router software. </p>
|
|
3265
3265
|
* @public
|
|
3266
3266
|
*/
|
|
3267
|
-
software?: string;
|
|
3267
|
+
software?: string | undefined;
|
|
3268
3268
|
/**
|
|
3269
3269
|
* <p>The template for the virtual interface's router.</p>
|
|
3270
3270
|
* @public
|
|
3271
3271
|
*/
|
|
3272
|
-
xsltTemplateName?: string;
|
|
3272
|
+
xsltTemplateName?: string | undefined;
|
|
3273
3273
|
/**
|
|
3274
3274
|
* <p>The MAC Security (MACsec) template for the virtual interface's router.</p>
|
|
3275
3275
|
* @public
|
|
3276
3276
|
*/
|
|
3277
|
-
xsltTemplateNameForMacSec?: string;
|
|
3277
|
+
xsltTemplateNameForMacSec?: string | undefined;
|
|
3278
3278
|
/**
|
|
3279
3279
|
* <p>Identifies the router by a combination of vendor, platform, and software version. For example, <code>CiscoSystemsInc-2900SeriesRouters-IOS124</code>.</p>
|
|
3280
3280
|
* @public
|
|
3281
3281
|
*/
|
|
3282
|
-
routerTypeIdentifier?: string;
|
|
3282
|
+
routerTypeIdentifier?: string | undefined;
|
|
3283
3283
|
}
|
|
3284
3284
|
/**
|
|
3285
3285
|
* @public
|
|
@@ -3289,22 +3289,22 @@ export interface DescribeRouterConfigurationResponse {
|
|
|
3289
3289
|
* <p>The customer router configuration.</p>
|
|
3290
3290
|
* @public
|
|
3291
3291
|
*/
|
|
3292
|
-
customerRouterConfig?: string;
|
|
3292
|
+
customerRouterConfig?: string | undefined;
|
|
3293
3293
|
/**
|
|
3294
3294
|
* <p>The details about the router.</p>
|
|
3295
3295
|
* @public
|
|
3296
3296
|
*/
|
|
3297
|
-
router?: RouterType;
|
|
3297
|
+
router?: RouterType | undefined;
|
|
3298
3298
|
/**
|
|
3299
3299
|
* <p>The ID assigned to the virtual interface.</p>
|
|
3300
3300
|
* @public
|
|
3301
3301
|
*/
|
|
3302
|
-
virtualInterfaceId?: string;
|
|
3302
|
+
virtualInterfaceId?: string | undefined;
|
|
3303
3303
|
/**
|
|
3304
3304
|
* <p>Provides the details about a virtual interface's router.</p>
|
|
3305
3305
|
* @public
|
|
3306
3306
|
*/
|
|
3307
|
-
virtualInterfaceName?: string;
|
|
3307
|
+
virtualInterfaceName?: string | undefined;
|
|
3308
3308
|
}
|
|
3309
3309
|
/**
|
|
3310
3310
|
* @public
|
|
@@ -3325,12 +3325,12 @@ export interface ResourceTag {
|
|
|
3325
3325
|
* <p>The Amazon Resource Name (ARN) of the resource.</p>
|
|
3326
3326
|
* @public
|
|
3327
3327
|
*/
|
|
3328
|
-
resourceArn?: string;
|
|
3328
|
+
resourceArn?: string | undefined;
|
|
3329
3329
|
/**
|
|
3330
3330
|
* <p>The tags.</p>
|
|
3331
3331
|
* @public
|
|
3332
3332
|
*/
|
|
3333
|
-
tags?: Tag[];
|
|
3333
|
+
tags?: Tag[] | undefined;
|
|
3334
3334
|
}
|
|
3335
3335
|
/**
|
|
3336
3336
|
* @public
|
|
@@ -3340,7 +3340,7 @@ export interface DescribeTagsResponse {
|
|
|
3340
3340
|
* <p>Information about the tags.</p>
|
|
3341
3341
|
* @public
|
|
3342
3342
|
*/
|
|
3343
|
-
resourceTags?: ResourceTag[];
|
|
3343
|
+
resourceTags?: ResourceTag[] | undefined;
|
|
3344
3344
|
}
|
|
3345
3345
|
/**
|
|
3346
3346
|
* <p>Information about a virtual private gateway for a private virtual interface.</p>
|
|
@@ -3351,7 +3351,7 @@ export interface VirtualGateway {
|
|
|
3351
3351
|
* <p>The ID of the virtual private gateway.</p>
|
|
3352
3352
|
* @public
|
|
3353
3353
|
*/
|
|
3354
|
-
virtualGatewayId?: string;
|
|
3354
|
+
virtualGatewayId?: string | undefined;
|
|
3355
3355
|
/**
|
|
3356
3356
|
* <p>The state of the virtual private gateway. The following are the possible values:</p>
|
|
3357
3357
|
* <ul>
|
|
@@ -3374,7 +3374,7 @@ export interface VirtualGateway {
|
|
|
3374
3374
|
* </ul>
|
|
3375
3375
|
* @public
|
|
3376
3376
|
*/
|
|
3377
|
-
virtualGatewayState?: string;
|
|
3377
|
+
virtualGatewayState?: string | undefined;
|
|
3378
3378
|
}
|
|
3379
3379
|
/**
|
|
3380
3380
|
* @public
|
|
@@ -3384,7 +3384,7 @@ export interface VirtualGateways {
|
|
|
3384
3384
|
* <p>The virtual private gateways.</p>
|
|
3385
3385
|
* @public
|
|
3386
3386
|
*/
|
|
3387
|
-
virtualGateways?: VirtualGateway[];
|
|
3387
|
+
virtualGateways?: VirtualGateway[] | undefined;
|
|
3388
3388
|
}
|
|
3389
3389
|
/**
|
|
3390
3390
|
* @public
|
|
@@ -3394,12 +3394,12 @@ export interface DescribeVirtualInterfacesRequest {
|
|
|
3394
3394
|
* <p>The ID of the connection.</p>
|
|
3395
3395
|
* @public
|
|
3396
3396
|
*/
|
|
3397
|
-
connectionId?: string;
|
|
3397
|
+
connectionId?: string | undefined;
|
|
3398
3398
|
/**
|
|
3399
3399
|
* <p>The ID of the virtual interface.</p>
|
|
3400
3400
|
* @public
|
|
3401
3401
|
*/
|
|
3402
|
-
virtualInterfaceId?: string;
|
|
3402
|
+
virtualInterfaceId?: string | undefined;
|
|
3403
3403
|
}
|
|
3404
3404
|
/**
|
|
3405
3405
|
* @public
|
|
@@ -3409,7 +3409,7 @@ export interface VirtualInterfaces {
|
|
|
3409
3409
|
* <p>The virtual interfaces</p>
|
|
3410
3410
|
* @public
|
|
3411
3411
|
*/
|
|
3412
|
-
virtualInterfaces?: VirtualInterface[];
|
|
3412
|
+
virtualInterfaces?: VirtualInterface[] | undefined;
|
|
3413
3413
|
}
|
|
3414
3414
|
/**
|
|
3415
3415
|
* @public
|
|
@@ -3451,12 +3451,12 @@ export interface DisassociateMacSecKeyResponse {
|
|
|
3451
3451
|
* <p>The ID of the dedicated connection (dxcon-xxxx), or the ID of the LAG (dxlag-xxxx).</p>
|
|
3452
3452
|
* @public
|
|
3453
3453
|
*/
|
|
3454
|
-
connectionId?: string;
|
|
3454
|
+
connectionId?: string | undefined;
|
|
3455
3455
|
/**
|
|
3456
3456
|
* <p>The MAC Security (MACsec) security keys no longer associated with the dedicated connection.</p>
|
|
3457
3457
|
* @public
|
|
3458
3458
|
*/
|
|
3459
|
-
macSecKeys?: MacSecKey[];
|
|
3459
|
+
macSecKeys?: MacSecKey[] | undefined;
|
|
3460
3460
|
}
|
|
3461
3461
|
/**
|
|
3462
3462
|
* @public
|
|
@@ -3466,22 +3466,22 @@ export interface ListVirtualInterfaceTestHistoryRequest {
|
|
|
3466
3466
|
* <p>The ID of the virtual interface failover test.</p>
|
|
3467
3467
|
* @public
|
|
3468
3468
|
*/
|
|
3469
|
-
testId?: string;
|
|
3469
|
+
testId?: string | undefined;
|
|
3470
3470
|
/**
|
|
3471
3471
|
* <p>The ID of the virtual interface that was tested.</p>
|
|
3472
3472
|
* @public
|
|
3473
3473
|
*/
|
|
3474
|
-
virtualInterfaceId?: string;
|
|
3474
|
+
virtualInterfaceId?: string | undefined;
|
|
3475
3475
|
/**
|
|
3476
3476
|
* <p>The BGP peers that were placed in the DOWN state during the virtual interface failover test.</p>
|
|
3477
3477
|
* @public
|
|
3478
3478
|
*/
|
|
3479
|
-
bgpPeers?: string[];
|
|
3479
|
+
bgpPeers?: string[] | undefined;
|
|
3480
3480
|
/**
|
|
3481
3481
|
* <p>The status of the virtual interface failover test.</p>
|
|
3482
3482
|
* @public
|
|
3483
3483
|
*/
|
|
3484
|
-
status?: string;
|
|
3484
|
+
status?: string | undefined;
|
|
3485
3485
|
/**
|
|
3486
3486
|
* <p>The maximum number of results to return with a single call.
|
|
3487
3487
|
* To retrieve the remaining results, make another call with the returned <code>nextToken</code> value.</p>
|
|
@@ -3489,12 +3489,12 @@ export interface ListVirtualInterfaceTestHistoryRequest {
|
|
|
3489
3489
|
* returned.</p>
|
|
3490
3490
|
* @public
|
|
3491
3491
|
*/
|
|
3492
|
-
maxResults?: number;
|
|
3492
|
+
maxResults?: number | undefined;
|
|
3493
3493
|
/**
|
|
3494
3494
|
* <p>The token for the next page of results.</p>
|
|
3495
3495
|
* @public
|
|
3496
3496
|
*/
|
|
3497
|
-
nextToken?: string;
|
|
3497
|
+
nextToken?: string | undefined;
|
|
3498
3498
|
}
|
|
3499
3499
|
/**
|
|
3500
3500
|
* <p>Information about the virtual interface failover test.</p>
|
|
@@ -3505,42 +3505,42 @@ export interface VirtualInterfaceTestHistory {
|
|
|
3505
3505
|
* <p>The ID of the virtual interface failover test.</p>
|
|
3506
3506
|
* @public
|
|
3507
3507
|
*/
|
|
3508
|
-
testId?: string;
|
|
3508
|
+
testId?: string | undefined;
|
|
3509
3509
|
/**
|
|
3510
3510
|
* <p>The ID of the tested virtual interface.</p>
|
|
3511
3511
|
* @public
|
|
3512
3512
|
*/
|
|
3513
|
-
virtualInterfaceId?: string;
|
|
3513
|
+
virtualInterfaceId?: string | undefined;
|
|
3514
3514
|
/**
|
|
3515
3515
|
* <p>The BGP peers that were put in the DOWN state as part of the virtual interface failover test.</p>
|
|
3516
3516
|
* @public
|
|
3517
3517
|
*/
|
|
3518
|
-
bgpPeers?: string[];
|
|
3518
|
+
bgpPeers?: string[] | undefined;
|
|
3519
3519
|
/**
|
|
3520
3520
|
* <p>The status of the virtual interface failover test.</p>
|
|
3521
3521
|
* @public
|
|
3522
3522
|
*/
|
|
3523
|
-
status?: string;
|
|
3523
|
+
status?: string | undefined;
|
|
3524
3524
|
/**
|
|
3525
3525
|
* <p>The owner ID of the tested virtual interface.</p>
|
|
3526
3526
|
* @public
|
|
3527
3527
|
*/
|
|
3528
|
-
ownerAccount?: string;
|
|
3528
|
+
ownerAccount?: string | undefined;
|
|
3529
3529
|
/**
|
|
3530
3530
|
* <p>The time that the virtual interface failover test ran in minutes.</p>
|
|
3531
3531
|
* @public
|
|
3532
3532
|
*/
|
|
3533
|
-
testDurationInMinutes?: number;
|
|
3533
|
+
testDurationInMinutes?: number | undefined;
|
|
3534
3534
|
/**
|
|
3535
3535
|
* <p>The time that the virtual interface moves to the DOWN state.</p>
|
|
3536
3536
|
* @public
|
|
3537
3537
|
*/
|
|
3538
|
-
startTime?: Date;
|
|
3538
|
+
startTime?: Date | undefined;
|
|
3539
3539
|
/**
|
|
3540
3540
|
* <p>The time that the virtual interface moves out of the DOWN state.</p>
|
|
3541
3541
|
* @public
|
|
3542
3542
|
*/
|
|
3543
|
-
endTime?: Date;
|
|
3543
|
+
endTime?: Date | undefined;
|
|
3544
3544
|
}
|
|
3545
3545
|
/**
|
|
3546
3546
|
* @public
|
|
@@ -3550,12 +3550,12 @@ export interface ListVirtualInterfaceTestHistoryResponse {
|
|
|
3550
3550
|
* <p>The ID of the tested virtual interface.</p>
|
|
3551
3551
|
* @public
|
|
3552
3552
|
*/
|
|
3553
|
-
virtualInterfaceTestHistory?: VirtualInterfaceTestHistory[];
|
|
3553
|
+
virtualInterfaceTestHistory?: VirtualInterfaceTestHistory[] | undefined;
|
|
3554
3554
|
/**
|
|
3555
3555
|
* <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>
|
|
3556
3556
|
* @public
|
|
3557
3557
|
*/
|
|
3558
|
-
nextToken?: string;
|
|
3558
|
+
nextToken?: string | undefined;
|
|
3559
3559
|
}
|
|
3560
3560
|
/**
|
|
3561
3561
|
* @public
|
|
@@ -3570,14 +3570,14 @@ export interface StartBgpFailoverTestRequest {
|
|
|
3570
3570
|
* <p>The BGP peers to place in the DOWN state.</p>
|
|
3571
3571
|
* @public
|
|
3572
3572
|
*/
|
|
3573
|
-
bgpPeers?: string[];
|
|
3573
|
+
bgpPeers?: string[] | undefined;
|
|
3574
3574
|
/**
|
|
3575
3575
|
* <p>The time in minutes that the virtual interface failover test will last.</p>
|
|
3576
3576
|
* <p>Maximum value: 4,320 minutes (72 hours).</p>
|
|
3577
3577
|
* <p>Default: 180 minutes (3 hours).</p>
|
|
3578
3578
|
* @public
|
|
3579
3579
|
*/
|
|
3580
|
-
testDurationInMinutes?: number;
|
|
3580
|
+
testDurationInMinutes?: number | undefined;
|
|
3581
3581
|
}
|
|
3582
3582
|
/**
|
|
3583
3583
|
* @public
|
|
@@ -3587,7 +3587,7 @@ export interface StartBgpFailoverTestResponse {
|
|
|
3587
3587
|
* <p>Information about the virtual interface failover test.</p>
|
|
3588
3588
|
* @public
|
|
3589
3589
|
*/
|
|
3590
|
-
virtualInterfaceTest?: VirtualInterfaceTestHistory;
|
|
3590
|
+
virtualInterfaceTest?: VirtualInterfaceTestHistory | undefined;
|
|
3591
3591
|
}
|
|
3592
3592
|
/**
|
|
3593
3593
|
* @public
|
|
@@ -3607,7 +3607,7 @@ export interface StopBgpFailoverTestResponse {
|
|
|
3607
3607
|
* <p>Information about the virtual interface failover test.</p>
|
|
3608
3608
|
* @public
|
|
3609
3609
|
*/
|
|
3610
|
-
virtualInterfaceTest?: VirtualInterfaceTestHistory;
|
|
3610
|
+
virtualInterfaceTest?: VirtualInterfaceTestHistory | undefined;
|
|
3611
3611
|
}
|
|
3612
3612
|
/**
|
|
3613
3613
|
* @public
|
|
@@ -3663,13 +3663,13 @@ export interface UpdateConnectionRequest {
|
|
|
3663
3663
|
* <p>The name of the connection.</p>
|
|
3664
3664
|
* @public
|
|
3665
3665
|
*/
|
|
3666
|
-
connectionName?: string;
|
|
3666
|
+
connectionName?: string | undefined;
|
|
3667
3667
|
/**
|
|
3668
3668
|
* <p>The connection MAC Security (MACsec) encryption mode.</p>
|
|
3669
3669
|
* <p>The valid values are <code>no_encrypt</code>, <code>should_encrypt</code>, and <code>must_encrypt</code>.</p>
|
|
3670
3670
|
* @public
|
|
3671
3671
|
*/
|
|
3672
|
-
encryptionMode?: string;
|
|
3672
|
+
encryptionMode?: string | undefined;
|
|
3673
3673
|
}
|
|
3674
3674
|
/**
|
|
3675
3675
|
* @public
|
|
@@ -3694,7 +3694,7 @@ export interface UpdateDirectConnectGatewayResponse {
|
|
|
3694
3694
|
* <p>Informaiton about a Direct Connect gateway, which enables you to connect virtual interfaces and virtual private gateways or transit gateways.</p>
|
|
3695
3695
|
* @public
|
|
3696
3696
|
*/
|
|
3697
|
-
directConnectGateway?: DirectConnectGateway;
|
|
3697
|
+
directConnectGateway?: DirectConnectGateway | undefined;
|
|
3698
3698
|
}
|
|
3699
3699
|
/**
|
|
3700
3700
|
* @public
|
|
@@ -3704,17 +3704,17 @@ export interface UpdateDirectConnectGatewayAssociationRequest {
|
|
|
3704
3704
|
* <p>The ID of the Direct Connect gateway association.</p>
|
|
3705
3705
|
* @public
|
|
3706
3706
|
*/
|
|
3707
|
-
associationId?: string;
|
|
3707
|
+
associationId?: string | undefined;
|
|
3708
3708
|
/**
|
|
3709
3709
|
* <p>The Amazon VPC prefixes to advertise to the Direct Connect gateway.</p>
|
|
3710
3710
|
* @public
|
|
3711
3711
|
*/
|
|
3712
|
-
addAllowedPrefixesToDirectConnectGateway?: RouteFilterPrefix[];
|
|
3712
|
+
addAllowedPrefixesToDirectConnectGateway?: RouteFilterPrefix[] | undefined;
|
|
3713
3713
|
/**
|
|
3714
3714
|
* <p>The Amazon VPC prefixes to no longer advertise to the Direct Connect gateway.</p>
|
|
3715
3715
|
* @public
|
|
3716
3716
|
*/
|
|
3717
|
-
removeAllowedPrefixesToDirectConnectGateway?: RouteFilterPrefix[];
|
|
3717
|
+
removeAllowedPrefixesToDirectConnectGateway?: RouteFilterPrefix[] | undefined;
|
|
3718
3718
|
}
|
|
3719
3719
|
/**
|
|
3720
3720
|
* @public
|
|
@@ -3724,7 +3724,7 @@ export interface UpdateDirectConnectGatewayAssociationResult {
|
|
|
3724
3724
|
* <p>Information about an association between a Direct Connect gateway and a virtual private gateway or transit gateway.</p>
|
|
3725
3725
|
* @public
|
|
3726
3726
|
*/
|
|
3727
|
-
directConnectGatewayAssociation?: DirectConnectGatewayAssociation;
|
|
3727
|
+
directConnectGatewayAssociation?: DirectConnectGatewayAssociation | undefined;
|
|
3728
3728
|
}
|
|
3729
3729
|
/**
|
|
3730
3730
|
* @public
|
|
@@ -3739,18 +3739,18 @@ export interface UpdateLagRequest {
|
|
|
3739
3739
|
* <p>The name of the LAG.</p>
|
|
3740
3740
|
* @public
|
|
3741
3741
|
*/
|
|
3742
|
-
lagName?: string;
|
|
3742
|
+
lagName?: string | undefined;
|
|
3743
3743
|
/**
|
|
3744
3744
|
* <p>The minimum number of physical connections that must be operational for the LAG itself to be operational.</p>
|
|
3745
3745
|
* @public
|
|
3746
3746
|
*/
|
|
3747
|
-
minimumLinks?: number;
|
|
3747
|
+
minimumLinks?: number | undefined;
|
|
3748
3748
|
/**
|
|
3749
3749
|
* <p>The LAG MAC Security (MACsec) encryption mode.</p>
|
|
3750
3750
|
* <p>Amazon Web Services applies the value to all connections which are part of the LAG.</p>
|
|
3751
3751
|
* @public
|
|
3752
3752
|
*/
|
|
3753
|
-
encryptionMode?: string;
|
|
3753
|
+
encryptionMode?: string | undefined;
|
|
3754
3754
|
}
|
|
3755
3755
|
/**
|
|
3756
3756
|
* @public
|
|
@@ -3765,15 +3765,15 @@ export interface UpdateVirtualInterfaceAttributesRequest {
|
|
|
3765
3765
|
* <p>The maximum transmission unit (MTU), in bytes. The supported values are 1500 and 8500. The default value is 1500.</p>
|
|
3766
3766
|
* @public
|
|
3767
3767
|
*/
|
|
3768
|
-
mtu?: number;
|
|
3768
|
+
mtu?: number | undefined;
|
|
3769
3769
|
/**
|
|
3770
3770
|
* <p>Indicates whether to enable or disable SiteLink.</p>
|
|
3771
3771
|
* @public
|
|
3772
3772
|
*/
|
|
3773
|
-
enableSiteLink?: boolean;
|
|
3773
|
+
enableSiteLink?: boolean | undefined;
|
|
3774
3774
|
/**
|
|
3775
3775
|
* <p>The name of the virtual private interface.</p>
|
|
3776
3776
|
* @public
|
|
3777
3777
|
*/
|
|
3778
|
-
virtualInterfaceName?: string;
|
|
3778
|
+
virtualInterfaceName?: string | undefined;
|
|
3779
3779
|
}
|