@aws-sdk/client-direct-connect 3.427.0 → 3.429.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.
@@ -64,7 +64,7 @@ export interface AssociatedGateway {
64
64
  * @public
65
65
  * <p>The type of associated gateway.</p>
66
66
  */
67
- type?: GatewayType | string;
67
+ type?: GatewayType;
68
68
  /**
69
69
  * @public
70
70
  * <p>The ID of the Amazon Web Services account that owns the associated virtual private gateway or transit gateway.</p>
@@ -133,7 +133,7 @@ export interface DirectConnectGatewayAssociation {
133
133
  * </li>
134
134
  * </ul>
135
135
  */
136
- associationState?: DirectConnectGatewayAssociationState | string;
136
+ associationState?: DirectConnectGatewayAssociationState;
137
137
  /**
138
138
  * @public
139
139
  * <p>The error message if the state of an object failed to advance.</p>
@@ -423,7 +423,7 @@ export interface Connection {
423
423
  * </li>
424
424
  * </ul>
425
425
  */
426
- connectionState?: ConnectionState | string;
426
+ connectionState?: ConnectionState;
427
427
  /**
428
428
  * @public
429
429
  * <p>The Amazon Web Services Region where the connection is located.</p>
@@ -486,7 +486,7 @@ export interface Connection {
486
486
  * @public
487
487
  * <p>Indicates whether the connection supports a secondary BGP peer in the same address family (IPv4/IPv6).</p>
488
488
  */
489
- hasLogicalRedundancy?: HasLogicalRedundancy | string;
489
+ hasLogicalRedundancy?: HasLogicalRedundancy;
490
490
  /**
491
491
  * @public
492
492
  * <p>The tags associated with the connection.</p>
@@ -619,7 +619,7 @@ export interface NewPrivateVirtualInterfaceAllocation {
619
619
  * @public
620
620
  * <p>The address family for the BGP peer.</p>
621
621
  */
622
- addressFamily?: AddressFamily | string;
622
+ addressFamily?: AddressFamily;
623
623
  /**
624
624
  * @public
625
625
  * <p>The IP address assigned to the customer interface.</p>
@@ -703,7 +703,7 @@ export interface BGPPeer {
703
703
  * @public
704
704
  * <p>The address family for the BGP peer.</p>
705
705
  */
706
- addressFamily?: AddressFamily | string;
706
+ addressFamily?: AddressFamily;
707
707
  /**
708
708
  * @public
709
709
  * <p>The IP address assigned to the Amazon interface.</p>
@@ -740,7 +740,7 @@ export interface BGPPeer {
740
740
  * </li>
741
741
  * </ul>
742
742
  */
743
- bgpPeerState?: BGPPeerState | string;
743
+ bgpPeerState?: BGPPeerState;
744
744
  /**
745
745
  * @public
746
746
  * <p>The status of the BGP peer. The following are the possible values:</p>
@@ -760,7 +760,7 @@ export interface BGPPeer {
760
760
  * </li>
761
761
  * </ul>
762
762
  */
763
- bgpStatus?: BGPStatus | string;
763
+ bgpStatus?: BGPStatus;
764
764
  /**
765
765
  * @public
766
766
  * <p>The Direct Connect endpoint that terminates the BGP peer.</p>
@@ -862,7 +862,7 @@ export interface VirtualInterface {
862
862
  * @public
863
863
  * <p>The address family for the BGP peer.</p>
864
864
  */
865
- addressFamily?: AddressFamily | string;
865
+ addressFamily?: AddressFamily;
866
866
  /**
867
867
  * @public
868
868
  * <p>The state of the virtual interface. The following are the possible values:</p>
@@ -905,7 +905,7 @@ export interface VirtualInterface {
905
905
  * </li>
906
906
  * </ul>
907
907
  */
908
- virtualInterfaceState?: VirtualInterfaceState | string;
908
+ virtualInterfaceState?: VirtualInterfaceState;
909
909
  /**
910
910
  * @public
911
911
  * <p>The customer router configuration.</p>
@@ -1008,7 +1008,7 @@ export interface NewPublicVirtualInterfaceAllocation {
1008
1008
  * @public
1009
1009
  * <p>The address family for the BGP peer.</p>
1010
1010
  */
1011
- addressFamily?: AddressFamily | string;
1011
+ addressFamily?: AddressFamily;
1012
1012
  /**
1013
1013
  * @public
1014
1014
  * <p>The routes to be advertised to the Amazon Web Services network in this Region. Applies to public virtual interfaces.</p>
@@ -1085,7 +1085,7 @@ export interface NewTransitVirtualInterfaceAllocation {
1085
1085
  * @public
1086
1086
  * <p>The address family for the BGP peer.</p>
1087
1087
  */
1088
- addressFamily?: AddressFamily | string;
1088
+ addressFamily?: AddressFamily;
1089
1089
  /**
1090
1090
  * @public
1091
1091
  * <p>The tags associated with the transitive virtual interface.</p>
@@ -1272,7 +1272,7 @@ export interface ConfirmConnectionResponse {
1272
1272
  * </li>
1273
1273
  * </ul>
1274
1274
  */
1275
- connectionState?: ConnectionState | string;
1275
+ connectionState?: ConnectionState;
1276
1276
  }
1277
1277
  /**
1278
1278
  * @public
@@ -1366,7 +1366,7 @@ export interface ConfirmPrivateVirtualInterfaceResponse {
1366
1366
  * </li>
1367
1367
  * </ul>
1368
1368
  */
1369
- virtualInterfaceState?: VirtualInterfaceState | string;
1369
+ virtualInterfaceState?: VirtualInterfaceState;
1370
1370
  }
1371
1371
  /**
1372
1372
  * @public
@@ -1424,7 +1424,7 @@ export interface ConfirmPublicVirtualInterfaceResponse {
1424
1424
  * </li>
1425
1425
  * </ul>
1426
1426
  */
1427
- virtualInterfaceState?: VirtualInterfaceState | string;
1427
+ virtualInterfaceState?: VirtualInterfaceState;
1428
1428
  }
1429
1429
  /**
1430
1430
  * @public
@@ -1487,7 +1487,7 @@ export interface ConfirmTransitVirtualInterfaceResponse {
1487
1487
  * </li>
1488
1488
  * </ul>
1489
1489
  */
1490
- virtualInterfaceState?: VirtualInterfaceState | string;
1490
+ virtualInterfaceState?: VirtualInterfaceState;
1491
1491
  }
1492
1492
  /**
1493
1493
  * @public
@@ -1518,7 +1518,7 @@ export interface NewBGPPeer {
1518
1518
  * @public
1519
1519
  * <p>The address family for the BGP peer.</p>
1520
1520
  */
1521
- addressFamily?: AddressFamily | string;
1521
+ addressFamily?: AddressFamily;
1522
1522
  /**
1523
1523
  * @public
1524
1524
  * <p>The IP address assigned to the Amazon interface.</p>
@@ -1674,7 +1674,7 @@ export interface DirectConnectGateway {
1674
1674
  * </li>
1675
1675
  * </ul>
1676
1676
  */
1677
- directConnectGatewayState?: DirectConnectGatewayState | string;
1677
+ directConnectGatewayState?: DirectConnectGatewayState;
1678
1678
  /**
1679
1679
  * @public
1680
1680
  * <p>The error message if the state of an object failed to advance.</p>
@@ -1809,7 +1809,7 @@ export interface DirectConnectGatewayAssociationProposal {
1809
1809
  * </li>
1810
1810
  * </ul>
1811
1811
  */
1812
- proposalState?: DirectConnectGatewayAssociationProposalState | string;
1812
+ proposalState?: DirectConnectGatewayAssociationProposalState;
1813
1813
  /**
1814
1814
  * @public
1815
1815
  * <p>Information about the associated gateway.</p>
@@ -1938,7 +1938,7 @@ export interface Interconnect {
1938
1938
  * </li>
1939
1939
  * </ul>
1940
1940
  */
1941
- interconnectState?: InterconnectState | string;
1941
+ interconnectState?: InterconnectState;
1942
1942
  /**
1943
1943
  * @public
1944
1944
  * <p>The Amazon Web Services Region where the connection is located.</p>
@@ -1991,7 +1991,7 @@ export interface Interconnect {
1991
1991
  * @public
1992
1992
  * <p>Indicates whether the interconnect supports a secondary BGP in the same address family (IPv4/IPv6).</p>
1993
1993
  */
1994
- hasLogicalRedundancy?: HasLogicalRedundancy | string;
1994
+ hasLogicalRedundancy?: HasLogicalRedundancy;
1995
1995
  /**
1996
1996
  * @public
1997
1997
  * <p>The tags associated with the interconnect.</p>
@@ -2141,7 +2141,7 @@ export interface Lag {
2141
2141
  * </li>
2142
2142
  * </ul>
2143
2143
  */
2144
- lagState?: LagState | string;
2144
+ lagState?: LagState;
2145
2145
  /**
2146
2146
  * @public
2147
2147
  * <p>The location of the LAG.</p>
@@ -2194,7 +2194,7 @@ export interface Lag {
2194
2194
  * @public
2195
2195
  * <p>Indicates whether the LAG supports a secondary BGP peer in the same address family (IPv4/IPv6).</p>
2196
2196
  */
2197
- hasLogicalRedundancy?: HasLogicalRedundancy | string;
2197
+ hasLogicalRedundancy?: HasLogicalRedundancy;
2198
2198
  /**
2199
2199
  * @public
2200
2200
  * <p>The tags associated with the LAG.</p>
@@ -2267,7 +2267,7 @@ export interface NewPrivateVirtualInterface {
2267
2267
  * @public
2268
2268
  * <p>The address family for the BGP peer.</p>
2269
2269
  */
2270
- addressFamily?: AddressFamily | string;
2270
+ addressFamily?: AddressFamily;
2271
2271
  /**
2272
2272
  * @public
2273
2273
  * <p>The ID of the virtual private gateway.</p>
@@ -2344,7 +2344,7 @@ export interface NewPublicVirtualInterface {
2344
2344
  * @public
2345
2345
  * <p>The address family for the BGP peer.</p>
2346
2346
  */
2347
- addressFamily?: AddressFamily | string;
2347
+ addressFamily?: AddressFamily;
2348
2348
  /**
2349
2349
  * @public
2350
2350
  * <p>The routes to be advertised to the Amazon Web Services network in this Region. Applies to public virtual interfaces.</p>
@@ -2416,7 +2416,7 @@ export interface NewTransitVirtualInterface {
2416
2416
  * @public
2417
2417
  * <p>The address family for the BGP peer.</p>
2418
2418
  */
2419
- addressFamily?: AddressFamily | string;
2419
+ addressFamily?: AddressFamily;
2420
2420
  /**
2421
2421
  * @public
2422
2422
  * <p>The ID of the Direct Connect gateway.</p>
@@ -2622,7 +2622,7 @@ export interface DeleteInterconnectResponse {
2622
2622
  * </li>
2623
2623
  * </ul>
2624
2624
  */
2625
- interconnectState?: InterconnectState | string;
2625
+ interconnectState?: InterconnectState;
2626
2626
  }
2627
2627
  /**
2628
2628
  * @public
@@ -2690,7 +2690,7 @@ export interface DeleteVirtualInterfaceResponse {
2690
2690
  * </li>
2691
2691
  * </ul>
2692
2692
  */
2693
- virtualInterfaceState?: VirtualInterfaceState | string;
2693
+ virtualInterfaceState?: VirtualInterfaceState;
2694
2694
  }
2695
2695
  /**
2696
2696
  * @public
@@ -2722,7 +2722,7 @@ export interface DescribeConnectionLoaRequest {
2722
2722
  * @public
2723
2723
  * <p>The standard media type for the LOA-CFA document. The only supported value is application/pdf.</p>
2724
2724
  */
2725
- loaContentType?: LoaContentType | string;
2725
+ loaContentType?: LoaContentType;
2726
2726
  }
2727
2727
  /**
2728
2728
  * @public
@@ -2738,7 +2738,7 @@ export interface Loa {
2738
2738
  * @public
2739
2739
  * <p>The standard media type for the LOA-CFA document. The only supported value is application/pdf.</p>
2740
2740
  */
2741
- loaContentType?: LoaContentType | string;
2741
+ loaContentType?: LoaContentType;
2742
2742
  }
2743
2743
  /**
2744
2744
  * @public
@@ -2807,7 +2807,7 @@ export interface DescribeCustomerMetadataResponse {
2807
2807
  * </li>
2808
2808
  * </ul>
2809
2809
  */
2810
- nniPartnerType?: NniPartnerType | string;
2810
+ nniPartnerType?: NniPartnerType;
2811
2811
  }
2812
2812
  /**
2813
2813
  * @public
@@ -3011,12 +3011,12 @@ export interface DirectConnectGatewayAttachment {
3011
3011
  * </li>
3012
3012
  * </ul>
3013
3013
  */
3014
- attachmentState?: DirectConnectGatewayAttachmentState | string;
3014
+ attachmentState?: DirectConnectGatewayAttachmentState;
3015
3015
  /**
3016
3016
  * @public
3017
3017
  * <p>The type of attachment.</p>
3018
3018
  */
3019
- attachmentType?: DirectConnectGatewayAttachmentType | string;
3019
+ attachmentType?: DirectConnectGatewayAttachmentType;
3020
3020
  /**
3021
3021
  * @public
3022
3022
  * <p>The error message if the state of an object failed to advance.</p>
@@ -3104,7 +3104,7 @@ export interface DescribeInterconnectLoaRequest {
3104
3104
  * @public
3105
3105
  * <p>The standard media type for the LOA-CFA document. The only supported value is application/pdf.</p>
3106
3106
  */
3107
- loaContentType?: LoaContentType | string;
3107
+ loaContentType?: LoaContentType;
3108
3108
  }
3109
3109
  /**
3110
3110
  * @public
@@ -3175,7 +3175,7 @@ export interface DescribeLoaRequest {
3175
3175
  * @public
3176
3176
  * <p>The standard media type for the LOA-CFA document. The only supported value is application/pdf.</p>
3177
3177
  */
3178
- loaContentType?: LoaContentType | string;
3178
+ loaContentType?: LoaContentType;
3179
3179
  }
3180
3180
  /**
3181
3181
  * @public
@@ -16,7 +16,7 @@ export declare const GatewayType: {
16
16
  export type GatewayType = (typeof GatewayType)[keyof typeof GatewayType];
17
17
  export interface AssociatedGateway {
18
18
  id?: string;
19
- type?: GatewayType | string;
19
+ type?: GatewayType;
20
20
  ownerAccount?: string;
21
21
  region?: string;
22
22
  }
@@ -32,7 +32,7 @@ export type DirectConnectGatewayAssociationState =
32
32
  export interface DirectConnectGatewayAssociation {
33
33
  directConnectGatewayId?: string;
34
34
  directConnectGatewayOwnerAccount?: string;
35
- associationState?: DirectConnectGatewayAssociationState | string;
35
+ associationState?: DirectConnectGatewayAssociationState;
36
36
  stateChangeError?: string;
37
37
  associatedGateway?: AssociatedGateway;
38
38
  associationId?: string;
@@ -108,7 +108,7 @@ export interface Connection {
108
108
  ownerAccount?: string;
109
109
  connectionId?: string;
110
110
  connectionName?: string;
111
- connectionState?: ConnectionState | string;
111
+ connectionState?: ConnectionState;
112
112
  region?: string;
113
113
  location?: string;
114
114
  bandwidth?: string;
@@ -120,7 +120,7 @@ export interface Connection {
120
120
  jumboFrameCapable?: boolean;
121
121
  awsDeviceV2?: string;
122
122
  awsLogicalDeviceId?: string;
123
- hasLogicalRedundancy?: HasLogicalRedundancy | string;
123
+ hasLogicalRedundancy?: HasLogicalRedundancy;
124
124
  tags?: Tag[];
125
125
  providerName?: string;
126
126
  macSecCapable?: boolean;
@@ -157,7 +157,7 @@ export interface NewPrivateVirtualInterfaceAllocation {
157
157
  mtu?: number;
158
158
  authKey?: string;
159
159
  amazonAddress?: string;
160
- addressFamily?: AddressFamily | string;
160
+ addressFamily?: AddressFamily;
161
161
  customerAddress?: string;
162
162
  tags?: Tag[];
163
163
  }
@@ -186,11 +186,11 @@ export interface BGPPeer {
186
186
  bgpPeerId?: string;
187
187
  asn?: number;
188
188
  authKey?: string;
189
- addressFamily?: AddressFamily | string;
189
+ addressFamily?: AddressFamily;
190
190
  amazonAddress?: string;
191
191
  customerAddress?: string;
192
- bgpPeerState?: BGPPeerState | string;
193
- bgpStatus?: BGPStatus | string;
192
+ bgpPeerState?: BGPPeerState;
193
+ bgpStatus?: BGPStatus;
194
194
  awsDeviceV2?: string;
195
195
  awsLogicalDeviceId?: string;
196
196
  }
@@ -220,8 +220,8 @@ export interface VirtualInterface {
220
220
  authKey?: string;
221
221
  amazonAddress?: string;
222
222
  customerAddress?: string;
223
- addressFamily?: AddressFamily | string;
224
- virtualInterfaceState?: VirtualInterfaceState | string;
223
+ addressFamily?: AddressFamily;
224
+ virtualInterfaceState?: VirtualInterfaceState;
225
225
  customerRouterConfig?: string;
226
226
  mtu?: number;
227
227
  jumboFrameCapable?: boolean;
@@ -242,7 +242,7 @@ export interface NewPublicVirtualInterfaceAllocation {
242
242
  authKey?: string;
243
243
  amazonAddress?: string;
244
244
  customerAddress?: string;
245
- addressFamily?: AddressFamily | string;
245
+ addressFamily?: AddressFamily;
246
246
  routeFilterPrefixes?: RouteFilterPrefix[];
247
247
  tags?: Tag[];
248
248
  }
@@ -261,7 +261,7 @@ export interface NewTransitVirtualInterfaceAllocation {
261
261
  authKey?: string;
262
262
  amazonAddress?: string;
263
263
  customerAddress?: string;
264
- addressFamily?: AddressFamily | string;
264
+ addressFamily?: AddressFamily;
265
265
  tags?: Tag[];
266
266
  }
267
267
  export interface AllocateTransitVirtualInterfaceRequest {
@@ -300,7 +300,7 @@ export interface ConfirmConnectionRequest {
300
300
  connectionId: string | undefined;
301
301
  }
302
302
  export interface ConfirmConnectionResponse {
303
- connectionState?: ConnectionState | string;
303
+ connectionState?: ConnectionState;
304
304
  }
305
305
  export interface ConfirmCustomerAgreementRequest {
306
306
  agreementName?: string;
@@ -314,20 +314,20 @@ export interface ConfirmPrivateVirtualInterfaceRequest {
314
314
  directConnectGatewayId?: string;
315
315
  }
316
316
  export interface ConfirmPrivateVirtualInterfaceResponse {
317
- virtualInterfaceState?: VirtualInterfaceState | string;
317
+ virtualInterfaceState?: VirtualInterfaceState;
318
318
  }
319
319
  export interface ConfirmPublicVirtualInterfaceRequest {
320
320
  virtualInterfaceId: string | undefined;
321
321
  }
322
322
  export interface ConfirmPublicVirtualInterfaceResponse {
323
- virtualInterfaceState?: VirtualInterfaceState | string;
323
+ virtualInterfaceState?: VirtualInterfaceState;
324
324
  }
325
325
  export interface ConfirmTransitVirtualInterfaceRequest {
326
326
  virtualInterfaceId: string | undefined;
327
327
  directConnectGatewayId: string | undefined;
328
328
  }
329
329
  export interface ConfirmTransitVirtualInterfaceResponse {
330
- virtualInterfaceState?: VirtualInterfaceState | string;
330
+ virtualInterfaceState?: VirtualInterfaceState;
331
331
  }
332
332
  export interface Connections {
333
333
  connections?: Connection[];
@@ -335,7 +335,7 @@ export interface Connections {
335
335
  export interface NewBGPPeer {
336
336
  asn?: number;
337
337
  authKey?: string;
338
- addressFamily?: AddressFamily | string;
338
+ addressFamily?: AddressFamily;
339
339
  amazonAddress?: string;
340
340
  customerAddress?: string;
341
341
  }
@@ -372,7 +372,7 @@ export interface DirectConnectGateway {
372
372
  directConnectGatewayName?: string;
373
373
  amazonSideAsn?: number;
374
374
  ownerAccount?: string;
375
- directConnectGatewayState?: DirectConnectGatewayState | string;
375
+ directConnectGatewayState?: DirectConnectGatewayState;
376
376
  stateChangeError?: string;
377
377
  }
378
378
  export interface CreateDirectConnectGatewayResult {
@@ -405,7 +405,7 @@ export interface DirectConnectGatewayAssociationProposal {
405
405
  proposalId?: string;
406
406
  directConnectGatewayId?: string;
407
407
  directConnectGatewayOwnerAccount?: string;
408
- proposalState?: DirectConnectGatewayAssociationProposalState | string;
408
+ proposalState?: DirectConnectGatewayAssociationProposalState;
409
409
  associatedGateway?: AssociatedGateway;
410
410
  existingAllowedPrefixesToDirectConnectGateway?: RouteFilterPrefix[];
411
411
  requestedAllowedPrefixesToDirectConnectGateway?: RouteFilterPrefix[];
@@ -435,7 +435,7 @@ export type InterconnectState =
435
435
  export interface Interconnect {
436
436
  interconnectId?: string;
437
437
  interconnectName?: string;
438
- interconnectState?: InterconnectState | string;
438
+ interconnectState?: InterconnectState;
439
439
  region?: string;
440
440
  location?: string;
441
441
  bandwidth?: string;
@@ -445,7 +445,7 @@ export interface Interconnect {
445
445
  jumboFrameCapable?: boolean;
446
446
  awsDeviceV2?: string;
447
447
  awsLogicalDeviceId?: string;
448
- hasLogicalRedundancy?: HasLogicalRedundancy | string;
448
+ hasLogicalRedundancy?: HasLogicalRedundancy;
449
449
  tags?: Tag[];
450
450
  providerName?: string;
451
451
  }
@@ -476,7 +476,7 @@ export interface Lag {
476
476
  lagId?: string;
477
477
  ownerAccount?: string;
478
478
  lagName?: string;
479
- lagState?: LagState | string;
479
+ lagState?: LagState;
480
480
  location?: string;
481
481
  region?: string;
482
482
  minimumLinks?: number;
@@ -486,7 +486,7 @@ export interface Lag {
486
486
  connections?: Connection[];
487
487
  allowsHostedConnections?: boolean;
488
488
  jumboFrameCapable?: boolean;
489
- hasLogicalRedundancy?: HasLogicalRedundancy | string;
489
+ hasLogicalRedundancy?: HasLogicalRedundancy;
490
490
  tags?: Tag[];
491
491
  providerName?: string;
492
492
  macSecCapable?: boolean;
@@ -501,7 +501,7 @@ export interface NewPrivateVirtualInterface {
501
501
  authKey?: string;
502
502
  amazonAddress?: string;
503
503
  customerAddress?: string;
504
- addressFamily?: AddressFamily | string;
504
+ addressFamily?: AddressFamily;
505
505
  virtualGatewayId?: string;
506
506
  directConnectGatewayId?: string;
507
507
  tags?: Tag[];
@@ -518,7 +518,7 @@ export interface NewPublicVirtualInterface {
518
518
  authKey?: string;
519
519
  amazonAddress?: string;
520
520
  customerAddress?: string;
521
- addressFamily?: AddressFamily | string;
521
+ addressFamily?: AddressFamily;
522
522
  routeFilterPrefixes?: RouteFilterPrefix[];
523
523
  tags?: Tag[];
524
524
  }
@@ -534,7 +534,7 @@ export interface NewTransitVirtualInterface {
534
534
  authKey?: string;
535
535
  amazonAddress?: string;
536
536
  customerAddress?: string;
537
- addressFamily?: AddressFamily | string;
537
+ addressFamily?: AddressFamily;
538
538
  directConnectGatewayId?: string;
539
539
  tags?: Tag[];
540
540
  enableSiteLink?: boolean;
@@ -582,7 +582,7 @@ export interface DeleteInterconnectRequest {
582
582
  interconnectId: string | undefined;
583
583
  }
584
584
  export interface DeleteInterconnectResponse {
585
- interconnectState?: InterconnectState | string;
585
+ interconnectState?: InterconnectState;
586
586
  }
587
587
  export interface DeleteLagRequest {
588
588
  lagId: string | undefined;
@@ -591,7 +591,7 @@ export interface DeleteVirtualInterfaceRequest {
591
591
  virtualInterfaceId: string | undefined;
592
592
  }
593
593
  export interface DeleteVirtualInterfaceResponse {
594
- virtualInterfaceState?: VirtualInterfaceState | string;
594
+ virtualInterfaceState?: VirtualInterfaceState;
595
595
  }
596
596
  export declare const LoaContentType: {
597
597
  readonly PDF: "application/pdf";
@@ -601,11 +601,11 @@ export type LoaContentType =
601
601
  export interface DescribeConnectionLoaRequest {
602
602
  connectionId: string | undefined;
603
603
  providerName?: string;
604
- loaContentType?: LoaContentType | string;
604
+ loaContentType?: LoaContentType;
605
605
  }
606
606
  export interface Loa {
607
607
  loaContent?: Uint8Array;
608
- loaContentType?: LoaContentType | string;
608
+ loaContentType?: LoaContentType;
609
609
  }
610
610
  export interface DescribeConnectionLoaResponse {
611
611
  loa?: Loa;
@@ -625,7 +625,7 @@ export type NniPartnerType =
625
625
  (typeof NniPartnerType)[keyof typeof NniPartnerType];
626
626
  export interface DescribeCustomerMetadataResponse {
627
627
  agreements?: CustomerAgreement[];
628
- nniPartnerType?: NniPartnerType | string;
628
+ nniPartnerType?: NniPartnerType;
629
629
  }
630
630
  export interface DescribeDirectConnectGatewayAssociationProposalsRequest {
631
631
  directConnectGatewayId?: string;
@@ -675,8 +675,8 @@ export interface DirectConnectGatewayAttachment {
675
675
  virtualInterfaceId?: string;
676
676
  virtualInterfaceRegion?: string;
677
677
  virtualInterfaceOwnerAccount?: string;
678
- attachmentState?: DirectConnectGatewayAttachmentState | string;
679
- attachmentType?: DirectConnectGatewayAttachmentType | string;
678
+ attachmentState?: DirectConnectGatewayAttachmentState;
679
+ attachmentType?: DirectConnectGatewayAttachmentType;
680
680
  stateChangeError?: string;
681
681
  }
682
682
  export interface DescribeDirectConnectGatewayAttachmentsResult {
@@ -698,7 +698,7 @@ export interface DescribeHostedConnectionsRequest {
698
698
  export interface DescribeInterconnectLoaRequest {
699
699
  interconnectId: string | undefined;
700
700
  providerName?: string;
701
- loaContentType?: LoaContentType | string;
701
+ loaContentType?: LoaContentType;
702
702
  }
703
703
  export interface DescribeInterconnectLoaResponse {
704
704
  loa?: Loa;
@@ -718,7 +718,7 @@ export interface Lags {
718
718
  export interface DescribeLoaRequest {
719
719
  connectionId: string | undefined;
720
720
  providerName?: string;
721
- loaContentType?: LoaContentType | string;
721
+ loaContentType?: LoaContentType;
722
722
  }
723
723
  export interface Location {
724
724
  locationCode?: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-direct-connect",
3
3
  "description": "AWS SDK for JavaScript Direct Connect Client for Node.js, Browser and React Native",
4
- "version": "3.427.0",
4
+ "version": "3.429.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,39 +21,39 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.427.0",
25
- "@aws-sdk/credential-provider-node": "3.427.0",
26
- "@aws-sdk/middleware-host-header": "3.425.0",
27
- "@aws-sdk/middleware-logger": "3.425.0",
28
- "@aws-sdk/middleware-recursion-detection": "3.425.0",
29
- "@aws-sdk/middleware-signing": "3.425.0",
30
- "@aws-sdk/middleware-user-agent": "3.427.0",
31
- "@aws-sdk/region-config-resolver": "3.425.0",
32
- "@aws-sdk/types": "3.425.0",
33
- "@aws-sdk/util-endpoints": "3.427.0",
34
- "@aws-sdk/util-user-agent-browser": "3.425.0",
35
- "@aws-sdk/util-user-agent-node": "3.425.0",
36
- "@smithy/config-resolver": "^2.0.11",
37
- "@smithy/fetch-http-handler": "^2.2.1",
38
- "@smithy/hash-node": "^2.0.10",
39
- "@smithy/invalid-dependency": "^2.0.10",
40
- "@smithy/middleware-content-length": "^2.0.12",
41
- "@smithy/middleware-endpoint": "^2.0.10",
42
- "@smithy/middleware-retry": "^2.0.13",
43
- "@smithy/middleware-serde": "^2.0.10",
44
- "@smithy/middleware-stack": "^2.0.4",
45
- "@smithy/node-config-provider": "^2.0.13",
46
- "@smithy/node-http-handler": "^2.1.6",
47
- "@smithy/protocol-http": "^3.0.6",
48
- "@smithy/smithy-client": "^2.1.9",
49
- "@smithy/types": "^2.3.4",
50
- "@smithy/url-parser": "^2.0.10",
24
+ "@aws-sdk/client-sts": "3.429.0",
25
+ "@aws-sdk/credential-provider-node": "3.429.0",
26
+ "@aws-sdk/middleware-host-header": "3.429.0",
27
+ "@aws-sdk/middleware-logger": "3.428.0",
28
+ "@aws-sdk/middleware-recursion-detection": "3.428.0",
29
+ "@aws-sdk/middleware-signing": "3.428.0",
30
+ "@aws-sdk/middleware-user-agent": "3.428.0",
31
+ "@aws-sdk/region-config-resolver": "3.428.0",
32
+ "@aws-sdk/types": "3.428.0",
33
+ "@aws-sdk/util-endpoints": "3.428.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.428.0",
35
+ "@aws-sdk/util-user-agent-node": "3.428.0",
36
+ "@smithy/config-resolver": "^2.0.14",
37
+ "@smithy/fetch-http-handler": "^2.2.3",
38
+ "@smithy/hash-node": "^2.0.11",
39
+ "@smithy/invalid-dependency": "^2.0.11",
40
+ "@smithy/middleware-content-length": "^2.0.13",
41
+ "@smithy/middleware-endpoint": "^2.1.1",
42
+ "@smithy/middleware-retry": "^2.0.16",
43
+ "@smithy/middleware-serde": "^2.0.11",
44
+ "@smithy/middleware-stack": "^2.0.5",
45
+ "@smithy/node-config-provider": "^2.1.1",
46
+ "@smithy/node-http-handler": "^2.1.7",
47
+ "@smithy/protocol-http": "^3.0.7",
48
+ "@smithy/smithy-client": "^2.1.11",
49
+ "@smithy/types": "^2.3.5",
50
+ "@smithy/url-parser": "^2.0.11",
51
51
  "@smithy/util-base64": "^2.0.0",
52
52
  "@smithy/util-body-length-browser": "^2.0.0",
53
53
  "@smithy/util-body-length-node": "^2.1.0",
54
- "@smithy/util-defaults-mode-browser": "^2.0.13",
55
- "@smithy/util-defaults-mode-node": "^2.0.15",
56
- "@smithy/util-retry": "^2.0.3",
54
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
55
+ "@smithy/util-defaults-mode-node": "^2.0.19",
56
+ "@smithy/util-retry": "^2.0.4",
57
57
  "@smithy/util-utf8": "^2.0.0",
58
58
  "tslib": "^2.5.0"
59
59
  },