@aws-sdk/client-networkmanager 3.301.0 → 3.303.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.
@@ -6,12 +6,14 @@ import { NetworkManagerServiceException as __BaseException } from "./NetworkMana
6
6
  export interface AcceptAttachmentRequest {
7
7
  AttachmentId: string | undefined;
8
8
  }
9
- export declare enum AttachmentType {
10
- CONNECT = "CONNECT",
11
- SITE_TO_SITE_VPN = "SITE_TO_SITE_VPN",
12
- TRANSIT_GATEWAY_ROUTE_TABLE = "TRANSIT_GATEWAY_ROUTE_TABLE",
13
- VPC = "VPC",
14
- }
9
+ export declare const AttachmentType: {
10
+ readonly CONNECT: "CONNECT";
11
+ readonly SITE_TO_SITE_VPN: "SITE_TO_SITE_VPN";
12
+ readonly TRANSIT_GATEWAY_ROUTE_TABLE: "TRANSIT_GATEWAY_ROUTE_TABLE";
13
+ readonly VPC: "VPC";
14
+ };
15
+ export type AttachmentType =
16
+ (typeof AttachmentType)[keyof typeof AttachmentType];
15
17
  export interface Tag {
16
18
  Key?: string;
17
19
  Value?: string;
@@ -21,17 +23,19 @@ export interface ProposedSegmentChange {
21
23
  AttachmentPolicyRuleNumber?: number;
22
24
  SegmentName?: string;
23
25
  }
24
- export declare enum AttachmentState {
25
- AVAILABLE = "AVAILABLE",
26
- CREATING = "CREATING",
27
- DELETING = "DELETING",
28
- FAILED = "FAILED",
29
- PENDING_ATTACHMENT_ACCEPTANCE = "PENDING_ATTACHMENT_ACCEPTANCE",
30
- PENDING_NETWORK_UPDATE = "PENDING_NETWORK_UPDATE",
31
- PENDING_TAG_ACCEPTANCE = "PENDING_TAG_ACCEPTANCE",
32
- REJECTED = "REJECTED",
33
- UPDATING = "UPDATING",
34
- }
26
+ export declare const AttachmentState: {
27
+ readonly AVAILABLE: "AVAILABLE";
28
+ readonly CREATING: "CREATING";
29
+ readonly DELETING: "DELETING";
30
+ readonly FAILED: "FAILED";
31
+ readonly PENDING_ATTACHMENT_ACCEPTANCE: "PENDING_ATTACHMENT_ACCEPTANCE";
32
+ readonly PENDING_NETWORK_UPDATE: "PENDING_NETWORK_UPDATE";
33
+ readonly PENDING_TAG_ACCEPTANCE: "PENDING_TAG_ACCEPTANCE";
34
+ readonly REJECTED: "REJECTED";
35
+ readonly UPDATING: "UPDATING";
36
+ };
37
+ export type AttachmentState =
38
+ (typeof AttachmentState)[keyof typeof AttachmentState];
35
39
  export interface Attachment {
36
40
  CoreNetworkId?: string;
37
41
  CoreNetworkArn?: string;
@@ -100,12 +104,14 @@ export interface ValidationExceptionField {
100
104
  Name: string | undefined;
101
105
  Message: string | undefined;
102
106
  }
103
- export declare enum ValidationExceptionReason {
104
- CANNOT_PARSE = "CannotParse",
105
- FIELD_VALIDATION_FAILED = "FieldValidationFailed",
106
- OTHER = "Other",
107
- UNKNOWN_OPERATION = "UnknownOperation",
108
- }
107
+ export declare const ValidationExceptionReason: {
108
+ readonly CANNOT_PARSE: "CannotParse";
109
+ readonly FIELD_VALIDATION_FAILED: "FieldValidationFailed";
110
+ readonly OTHER: "Other";
111
+ readonly UNKNOWN_OPERATION: "UnknownOperation";
112
+ };
113
+ export type ValidationExceptionReason =
114
+ (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
109
115
  export declare class ValidationException extends __BaseException {
110
116
  readonly name: "ValidationException";
111
117
  readonly $fault: "client";
@@ -126,12 +132,14 @@ export interface AssociateConnectPeerRequest {
126
132
  DeviceId: string | undefined;
127
133
  LinkId?: string;
128
134
  }
129
- export declare enum ConnectPeerAssociationState {
130
- available = "AVAILABLE",
131
- deleted = "DELETED",
132
- deleting = "DELETING",
133
- pending = "PENDING",
134
- }
135
+ export declare const ConnectPeerAssociationState: {
136
+ readonly available: "AVAILABLE";
137
+ readonly deleted: "DELETED";
138
+ readonly deleting: "DELETING";
139
+ readonly pending: "PENDING";
140
+ };
141
+ export type ConnectPeerAssociationState =
142
+ (typeof ConnectPeerAssociationState)[keyof typeof ConnectPeerAssociationState];
135
143
  export interface ConnectPeerAssociation {
136
144
  ConnectPeerId?: string;
137
145
  GlobalNetworkId?: string;
@@ -160,12 +168,14 @@ export interface AssociateCustomerGatewayRequest {
160
168
  DeviceId: string | undefined;
161
169
  LinkId?: string;
162
170
  }
163
- export declare enum CustomerGatewayAssociationState {
164
- available = "AVAILABLE",
165
- deleted = "DELETED",
166
- deleting = "DELETING",
167
- pending = "PENDING",
168
- }
171
+ export declare const CustomerGatewayAssociationState: {
172
+ readonly available: "AVAILABLE";
173
+ readonly deleted: "DELETED";
174
+ readonly deleting: "DELETING";
175
+ readonly pending: "PENDING";
176
+ };
177
+ export type CustomerGatewayAssociationState =
178
+ (typeof CustomerGatewayAssociationState)[keyof typeof CustomerGatewayAssociationState];
169
179
  export interface CustomerGatewayAssociation {
170
180
  CustomerGatewayArn?: string;
171
181
  GlobalNetworkId?: string;
@@ -181,12 +191,14 @@ export interface AssociateLinkRequest {
181
191
  DeviceId: string | undefined;
182
192
  LinkId: string | undefined;
183
193
  }
184
- export declare enum LinkAssociationState {
185
- available = "AVAILABLE",
186
- deleted = "DELETED",
187
- deleting = "DELETING",
188
- pending = "PENDING",
189
- }
194
+ export declare const LinkAssociationState: {
195
+ readonly available: "AVAILABLE";
196
+ readonly deleted: "DELETED";
197
+ readonly deleting: "DELETING";
198
+ readonly pending: "PENDING";
199
+ };
200
+ export type LinkAssociationState =
201
+ (typeof LinkAssociationState)[keyof typeof LinkAssociationState];
190
202
  export interface LinkAssociation {
191
203
  GlobalNetworkId?: string;
192
204
  DeviceId?: string;
@@ -202,12 +214,14 @@ export interface AssociateTransitGatewayConnectPeerRequest {
202
214
  DeviceId: string | undefined;
203
215
  LinkId?: string;
204
216
  }
205
- export declare enum TransitGatewayConnectPeerAssociationState {
206
- available = "AVAILABLE",
207
- deleted = "DELETED",
208
- deleting = "DELETING",
209
- pending = "PENDING",
210
- }
217
+ export declare const TransitGatewayConnectPeerAssociationState: {
218
+ readonly available: "AVAILABLE";
219
+ readonly deleted: "DELETED";
220
+ readonly deleting: "DELETING";
221
+ readonly pending: "PENDING";
222
+ };
223
+ export type TransitGatewayConnectPeerAssociationState =
224
+ (typeof TransitGatewayConnectPeerAssociationState)[keyof typeof TransitGatewayConnectPeerAssociationState];
211
225
  export interface TransitGatewayConnectPeerAssociation {
212
226
  TransitGatewayConnectPeerArn?: string;
213
227
  GlobalNetworkId?: string;
@@ -229,39 +243,46 @@ export interface Bandwidth {
229
243
  export interface BgpOptions {
230
244
  PeerAsn?: number;
231
245
  }
232
- export declare enum ChangeAction {
233
- ADD = "ADD",
234
- MODIFY = "MODIFY",
235
- REMOVE = "REMOVE",
236
- }
237
- export declare enum ChangeSetState {
238
- EXECUTING = "EXECUTING",
239
- EXECUTION_SUCCEEDED = "EXECUTION_SUCCEEDED",
240
- FAILED_GENERATION = "FAILED_GENERATION",
241
- OUT_OF_DATE = "OUT_OF_DATE",
242
- PENDING_GENERATION = "PENDING_GENERATION",
243
- READY_TO_EXECUTE = "READY_TO_EXECUTE",
244
- }
245
- export declare enum ChangeStatus {
246
- COMPLETE = "COMPLETE",
247
- FAILED = "FAILED",
248
- IN_PROGRESS = "IN_PROGRESS",
249
- NOT_STARTED = "NOT_STARTED",
250
- }
251
- export declare enum ChangeType {
252
- ATTACHMENT_MAPPING = "ATTACHMENT_MAPPING",
253
- ATTACHMENT_POLICIES_CONFIGURATION = "ATTACHMENT_POLICIES_CONFIGURATION",
254
- ATTACHMENT_ROUTE_PROPAGATION = "ATTACHMENT_ROUTE_PROPAGATION",
255
- ATTACHMENT_ROUTE_STATIC = "ATTACHMENT_ROUTE_STATIC",
256
- CORE_NETWORK_CONFIGURATION = "CORE_NETWORK_CONFIGURATION",
257
- CORE_NETWORK_EDGE = "CORE_NETWORK_EDGE",
258
- CORE_NETWORK_SEGMENT = "CORE_NETWORK_SEGMENT",
259
- SEGMENTS_CONFIGURATION = "SEGMENTS_CONFIGURATION",
260
- SEGMENT_ACTIONS_CONFIGURATION = "SEGMENT_ACTIONS_CONFIGURATION",
261
- }
262
- export declare enum TunnelProtocol {
263
- GRE = "GRE",
264
- }
246
+ export declare const ChangeAction: {
247
+ readonly ADD: "ADD";
248
+ readonly MODIFY: "MODIFY";
249
+ readonly REMOVE: "REMOVE";
250
+ };
251
+ export type ChangeAction = (typeof ChangeAction)[keyof typeof ChangeAction];
252
+ export declare const ChangeSetState: {
253
+ readonly EXECUTING: "EXECUTING";
254
+ readonly EXECUTION_SUCCEEDED: "EXECUTION_SUCCEEDED";
255
+ readonly FAILED_GENERATION: "FAILED_GENERATION";
256
+ readonly OUT_OF_DATE: "OUT_OF_DATE";
257
+ readonly PENDING_GENERATION: "PENDING_GENERATION";
258
+ readonly READY_TO_EXECUTE: "READY_TO_EXECUTE";
259
+ };
260
+ export type ChangeSetState =
261
+ (typeof ChangeSetState)[keyof typeof ChangeSetState];
262
+ export declare const ChangeStatus: {
263
+ readonly COMPLETE: "COMPLETE";
264
+ readonly FAILED: "FAILED";
265
+ readonly IN_PROGRESS: "IN_PROGRESS";
266
+ readonly NOT_STARTED: "NOT_STARTED";
267
+ };
268
+ export type ChangeStatus = (typeof ChangeStatus)[keyof typeof ChangeStatus];
269
+ export declare const ChangeType: {
270
+ readonly ATTACHMENT_MAPPING: "ATTACHMENT_MAPPING";
271
+ readonly ATTACHMENT_POLICIES_CONFIGURATION: "ATTACHMENT_POLICIES_CONFIGURATION";
272
+ readonly ATTACHMENT_ROUTE_PROPAGATION: "ATTACHMENT_ROUTE_PROPAGATION";
273
+ readonly ATTACHMENT_ROUTE_STATIC: "ATTACHMENT_ROUTE_STATIC";
274
+ readonly CORE_NETWORK_CONFIGURATION: "CORE_NETWORK_CONFIGURATION";
275
+ readonly CORE_NETWORK_EDGE: "CORE_NETWORK_EDGE";
276
+ readonly CORE_NETWORK_SEGMENT: "CORE_NETWORK_SEGMENT";
277
+ readonly SEGMENTS_CONFIGURATION: "SEGMENTS_CONFIGURATION";
278
+ readonly SEGMENT_ACTIONS_CONFIGURATION: "SEGMENT_ACTIONS_CONFIGURATION";
279
+ };
280
+ export type ChangeType = (typeof ChangeType)[keyof typeof ChangeType];
281
+ export declare const TunnelProtocol: {
282
+ readonly GRE: "GRE";
283
+ };
284
+ export type TunnelProtocol =
285
+ (typeof TunnelProtocol)[keyof typeof TunnelProtocol];
265
286
  export interface ConnectAttachmentOptions {
266
287
  Protocol?: TunnelProtocol | string;
267
288
  }
@@ -270,12 +291,14 @@ export interface ConnectAttachment {
270
291
  TransportAttachmentId?: string;
271
292
  Options?: ConnectAttachmentOptions;
272
293
  }
273
- export declare enum ConnectionState {
274
- available = "AVAILABLE",
275
- deleting = "DELETING",
276
- pending = "PENDING",
277
- updating = "UPDATING",
278
- }
294
+ export declare const ConnectionState: {
295
+ readonly available: "AVAILABLE";
296
+ readonly deleting: "DELETING";
297
+ readonly pending: "PENDING";
298
+ readonly updating: "UPDATING";
299
+ };
300
+ export type ConnectionState =
301
+ (typeof ConnectionState)[keyof typeof ConnectionState];
279
302
  export interface Connection {
280
303
  ConnectionId?: string;
281
304
  ConnectionArn?: string;
@@ -289,14 +312,18 @@ export interface Connection {
289
312
  State?: ConnectionState | string;
290
313
  Tags?: Tag[];
291
314
  }
292
- export declare enum ConnectionStatus {
293
- DOWN = "DOWN",
294
- UP = "UP",
295
- }
296
- export declare enum ConnectionType {
297
- BGP = "BGP",
298
- IPSEC = "IPSEC",
299
- }
315
+ export declare const ConnectionStatus: {
316
+ readonly DOWN: "DOWN";
317
+ readonly UP: "UP";
318
+ };
319
+ export type ConnectionStatus =
320
+ (typeof ConnectionStatus)[keyof typeof ConnectionStatus];
321
+ export declare const ConnectionType: {
322
+ readonly BGP: "BGP";
323
+ readonly IPSEC: "IPSEC";
324
+ };
325
+ export type ConnectionType =
326
+ (typeof ConnectionType)[keyof typeof ConnectionType];
300
327
  export interface ConnectionHealth {
301
328
  Type?: ConnectionType | string;
302
329
  Status?: ConnectionStatus | string;
@@ -315,12 +342,14 @@ export interface ConnectPeerConfiguration {
315
342
  Protocol?: TunnelProtocol | string;
316
343
  BgpConfigurations?: ConnectPeerBgpConfiguration[];
317
344
  }
318
- export declare enum ConnectPeerState {
319
- AVAILABLE = "AVAILABLE",
320
- CREATING = "CREATING",
321
- DELETING = "DELETING",
322
- FAILED = "FAILED",
323
- }
345
+ export declare const ConnectPeerState: {
346
+ readonly AVAILABLE: "AVAILABLE";
347
+ readonly CREATING: "CREATING";
348
+ readonly DELETING: "DELETING";
349
+ readonly FAILED: "FAILED";
350
+ };
351
+ export type ConnectPeerState =
352
+ (typeof ConnectPeerState)[keyof typeof ConnectPeerState];
324
353
  export interface ConnectPeer {
325
354
  CoreNetworkId?: string;
326
355
  ConnectAttachmentId?: string;
@@ -350,12 +379,14 @@ export interface CoreNetworkSegment {
350
379
  EdgeLocations?: string[];
351
380
  SharedSegments?: string[];
352
381
  }
353
- export declare enum CoreNetworkState {
354
- AVAILABLE = "AVAILABLE",
355
- CREATING = "CREATING",
356
- DELETING = "DELETING",
357
- UPDATING = "UPDATING",
358
- }
382
+ export declare const CoreNetworkState: {
383
+ readonly AVAILABLE: "AVAILABLE";
384
+ readonly CREATING: "CREATING";
385
+ readonly DELETING: "DELETING";
386
+ readonly UPDATING: "UPDATING";
387
+ };
388
+ export type CoreNetworkState =
389
+ (typeof CoreNetworkState)[keyof typeof CoreNetworkState];
359
390
  export interface CoreNetwork {
360
391
  GlobalNetworkId?: string;
361
392
  CoreNetworkId?: string;
@@ -398,10 +429,12 @@ export interface CoreNetworkChangeEvent {
398
429
  Status?: ChangeStatus | string;
399
430
  Values?: CoreNetworkChangeEventValues;
400
431
  }
401
- export declare enum CoreNetworkPolicyAlias {
402
- LATEST = "LATEST",
403
- LIVE = "LIVE",
404
- }
432
+ export declare const CoreNetworkPolicyAlias: {
433
+ readonly LATEST: "LATEST";
434
+ readonly LIVE: "LIVE";
435
+ };
436
+ export type CoreNetworkPolicyAlias =
437
+ (typeof CoreNetworkPolicyAlias)[keyof typeof CoreNetworkPolicyAlias];
405
438
  export interface CoreNetworkPolicyError {
406
439
  ErrorCode: string | undefined;
407
440
  Message: string | undefined;
@@ -510,12 +543,13 @@ export interface CreateDeviceRequest {
510
543
  SiteId?: string;
511
544
  Tags?: Tag[];
512
545
  }
513
- export declare enum DeviceState {
514
- available = "AVAILABLE",
515
- deleting = "DELETING",
516
- pending = "PENDING",
517
- updating = "UPDATING",
518
- }
546
+ export declare const DeviceState: {
547
+ readonly available: "AVAILABLE";
548
+ readonly deleting: "DELETING";
549
+ readonly pending: "PENDING";
550
+ readonly updating: "UPDATING";
551
+ };
552
+ export type DeviceState = (typeof DeviceState)[keyof typeof DeviceState];
519
553
  export interface Device {
520
554
  DeviceId?: string;
521
555
  DeviceArn?: string;
@@ -539,12 +573,14 @@ export interface CreateGlobalNetworkRequest {
539
573
  Description?: string;
540
574
  Tags?: Tag[];
541
575
  }
542
- export declare enum GlobalNetworkState {
543
- available = "AVAILABLE",
544
- deleting = "DELETING",
545
- pending = "PENDING",
546
- updating = "UPDATING",
547
- }
576
+ export declare const GlobalNetworkState: {
577
+ readonly available: "AVAILABLE";
578
+ readonly deleting: "DELETING";
579
+ readonly pending: "PENDING";
580
+ readonly updating: "UPDATING";
581
+ };
582
+ export type GlobalNetworkState =
583
+ (typeof GlobalNetworkState)[keyof typeof GlobalNetworkState];
548
584
  export interface GlobalNetwork {
549
585
  GlobalNetworkId?: string;
550
586
  GlobalNetworkArn?: string;
@@ -565,12 +601,13 @@ export interface CreateLinkRequest {
565
601
  SiteId: string | undefined;
566
602
  Tags?: Tag[];
567
603
  }
568
- export declare enum LinkState {
569
- available = "AVAILABLE",
570
- deleting = "DELETING",
571
- pending = "PENDING",
572
- updating = "UPDATING",
573
- }
604
+ export declare const LinkState: {
605
+ readonly available: "AVAILABLE";
606
+ readonly deleting: "DELETING";
607
+ readonly pending: "PENDING";
608
+ readonly updating: "UPDATING";
609
+ };
610
+ export type LinkState = (typeof LinkState)[keyof typeof LinkState];
574
611
  export interface Link {
575
612
  LinkId?: string;
576
613
  LinkArn?: string;
@@ -593,12 +630,13 @@ export interface CreateSiteRequest {
593
630
  Location?: Location;
594
631
  Tags?: Tag[];
595
632
  }
596
- export declare enum SiteState {
597
- available = "AVAILABLE",
598
- deleting = "DELETING",
599
- pending = "PENDING",
600
- updating = "UPDATING",
601
- }
633
+ export declare const SiteState: {
634
+ readonly available: "AVAILABLE";
635
+ readonly deleting: "DELETING";
636
+ readonly pending: "PENDING";
637
+ readonly updating: "UPDATING";
638
+ };
639
+ export type SiteState = (typeof SiteState)[keyof typeof SiteState];
602
640
  export interface Site {
603
641
  SiteId?: string;
604
642
  SiteArn?: string;
@@ -631,15 +669,17 @@ export interface CreateTransitGatewayPeeringRequest {
631
669
  Tags?: Tag[];
632
670
  ClientToken?: string;
633
671
  }
634
- export declare enum PeeringType {
635
- TRANSIT_GATEWAY = "TRANSIT_GATEWAY",
636
- }
637
- export declare enum PeeringState {
638
- AVAILABLE = "AVAILABLE",
639
- CREATING = "CREATING",
640
- DELETING = "DELETING",
641
- FAILED = "FAILED",
642
- }
672
+ export declare const PeeringType: {
673
+ readonly TRANSIT_GATEWAY: "TRANSIT_GATEWAY";
674
+ };
675
+ export type PeeringType = (typeof PeeringType)[keyof typeof PeeringType];
676
+ export declare const PeeringState: {
677
+ readonly AVAILABLE: "AVAILABLE";
678
+ readonly CREATING: "CREATING";
679
+ readonly DELETING: "DELETING";
680
+ readonly FAILED: "FAILED";
681
+ };
682
+ export type PeeringState = (typeof PeeringState)[keyof typeof PeeringState];
643
683
  export interface Peering {
644
684
  CoreNetworkId?: string;
645
685
  CoreNetworkArn?: string;
@@ -767,13 +807,15 @@ export interface DeregisterTransitGatewayRequest {
767
807
  GlobalNetworkId: string | undefined;
768
808
  TransitGatewayArn: string | undefined;
769
809
  }
770
- export declare enum TransitGatewayRegistrationState {
771
- available = "AVAILABLE",
772
- deleted = "DELETED",
773
- deleting = "DELETING",
774
- failed = "FAILED",
775
- pending = "PENDING",
776
- }
810
+ export declare const TransitGatewayRegistrationState: {
811
+ readonly available: "AVAILABLE";
812
+ readonly deleted: "DELETED";
813
+ readonly deleting: "DELETING";
814
+ readonly failed: "FAILED";
815
+ readonly pending: "PENDING";
816
+ };
817
+ export type TransitGatewayRegistrationState =
818
+ (typeof TransitGatewayRegistrationState)[keyof typeof TransitGatewayRegistrationState];
777
819
  export interface TransitGatewayRegistrationStateReason {
778
820
  Code?: TransitGatewayRegistrationState | string;
779
821
  Message?: string;
@@ -1006,14 +1048,16 @@ export interface RouteTableIdentifier {
1006
1048
  TransitGatewayRouteTableArn?: string;
1007
1049
  CoreNetworkSegmentEdge?: CoreNetworkSegmentEdgeIdentifier;
1008
1050
  }
1009
- export declare enum RouteState {
1010
- ACTIVE = "ACTIVE",
1011
- BLACKHOLE = "BLACKHOLE",
1012
- }
1013
- export declare enum RouteType {
1014
- PROPAGATED = "PROPAGATED",
1015
- STATIC = "STATIC",
1016
- }
1051
+ export declare const RouteState: {
1052
+ readonly ACTIVE: "ACTIVE";
1053
+ readonly BLACKHOLE: "BLACKHOLE";
1054
+ };
1055
+ export type RouteState = (typeof RouteState)[keyof typeof RouteState];
1056
+ export declare const RouteType: {
1057
+ readonly PROPAGATED: "PROPAGATED";
1058
+ readonly STATIC: "STATIC";
1059
+ };
1060
+ export type RouteType = (typeof RouteType)[keyof typeof RouteType];
1017
1061
  export interface GetNetworkRoutesRequest {
1018
1062
  GlobalNetworkId: string | undefined;
1019
1063
  RouteTableIdentifier: RouteTableIdentifier | undefined;
@@ -1041,10 +1085,12 @@ export interface NetworkRoute {
1041
1085
  State?: RouteState | string;
1042
1086
  Type?: RouteType | string;
1043
1087
  }
1044
- export declare enum RouteTableType {
1045
- CORE_NETWORK_SEGMENT = "CORE_NETWORK_SEGMENT",
1046
- TRANSIT_GATEWAY_ROUTE_TABLE = "TRANSIT_GATEWAY_ROUTE_TABLE",
1047
- }
1088
+ export declare const RouteTableType: {
1089
+ readonly CORE_NETWORK_SEGMENT: "CORE_NETWORK_SEGMENT";
1090
+ readonly TRANSIT_GATEWAY_ROUTE_TABLE: "TRANSIT_GATEWAY_ROUTE_TABLE";
1091
+ };
1092
+ export type RouteTableType =
1093
+ (typeof RouteTableType)[keyof typeof RouteTableType];
1048
1094
  export interface GetNetworkRoutesResponse {
1049
1095
  RouteTableArn?: string;
1050
1096
  CoreNetworkSegmentEdge?: CoreNetworkSegmentEdgeIdentifier;
@@ -1093,23 +1139,27 @@ export interface RouteAnalysisEndpointOptions {
1093
1139
  TransitGatewayArn?: string;
1094
1140
  IpAddress?: string;
1095
1141
  }
1096
- export declare enum RouteAnalysisCompletionReasonCode {
1097
- BLACKHOLE_ROUTE_FOR_DESTINATION_FOUND = "BLACKHOLE_ROUTE_FOR_DESTINATION_FOUND",
1098
- CYCLIC_PATH_DETECTED = "CYCLIC_PATH_DETECTED",
1099
- INACTIVE_ROUTE_FOR_DESTINATION_FOUND = "INACTIVE_ROUTE_FOR_DESTINATION_FOUND",
1100
- MAX_HOPS_EXCEEDED = "MAX_HOPS_EXCEEDED",
1101
- NO_DESTINATION_ARN_PROVIDED = "NO_DESTINATION_ARN_PROVIDED",
1102
- POSSIBLE_MIDDLEBOX = "POSSIBLE_MIDDLEBOX",
1103
- ROUTE_NOT_FOUND = "ROUTE_NOT_FOUND",
1104
- TRANSIT_GATEWAY_ATTACHMENT = "TRANSIT_GATEWAY_ATTACHMENT_ATTACH_ARN_NO_MATCH",
1105
- TRANSIT_GATEWAY_ATTACHMENT_NOT_FOUND = "TRANSIT_GATEWAY_ATTACHMENT_NOT_FOUND",
1106
- TRANSIT_GATEWAY_ATTACHMENT_NOT_IN_TRANSIT_GATEWAY = "TRANSIT_GATEWAY_ATTACHMENT_NOT_IN_TRANSIT_GATEWAY",
1107
- TRANSIT_GATEWAY_ATTACHMENT_STABLE_ROUTE_TABLE_NOT_FOUND = "TRANSIT_GATEWAY_ATTACHMENT_STABLE_ROUTE_TABLE_NOT_FOUND",
1108
- }
1109
- export declare enum RouteAnalysisCompletionResultCode {
1110
- CONNECTED = "CONNECTED",
1111
- NOT_CONNECTED = "NOT_CONNECTED",
1112
- }
1142
+ export declare const RouteAnalysisCompletionReasonCode: {
1143
+ readonly BLACKHOLE_ROUTE_FOR_DESTINATION_FOUND: "BLACKHOLE_ROUTE_FOR_DESTINATION_FOUND";
1144
+ readonly CYCLIC_PATH_DETECTED: "CYCLIC_PATH_DETECTED";
1145
+ readonly INACTIVE_ROUTE_FOR_DESTINATION_FOUND: "INACTIVE_ROUTE_FOR_DESTINATION_FOUND";
1146
+ readonly MAX_HOPS_EXCEEDED: "MAX_HOPS_EXCEEDED";
1147
+ readonly NO_DESTINATION_ARN_PROVIDED: "NO_DESTINATION_ARN_PROVIDED";
1148
+ readonly POSSIBLE_MIDDLEBOX: "POSSIBLE_MIDDLEBOX";
1149
+ readonly ROUTE_NOT_FOUND: "ROUTE_NOT_FOUND";
1150
+ readonly TRANSIT_GATEWAY_ATTACHMENT: "TRANSIT_GATEWAY_ATTACHMENT_ATTACH_ARN_NO_MATCH";
1151
+ readonly TRANSIT_GATEWAY_ATTACHMENT_NOT_FOUND: "TRANSIT_GATEWAY_ATTACHMENT_NOT_FOUND";
1152
+ readonly TRANSIT_GATEWAY_ATTACHMENT_NOT_IN_TRANSIT_GATEWAY: "TRANSIT_GATEWAY_ATTACHMENT_NOT_IN_TRANSIT_GATEWAY";
1153
+ readonly TRANSIT_GATEWAY_ATTACHMENT_STABLE_ROUTE_TABLE_NOT_FOUND: "TRANSIT_GATEWAY_ATTACHMENT_STABLE_ROUTE_TABLE_NOT_FOUND";
1154
+ };
1155
+ export type RouteAnalysisCompletionReasonCode =
1156
+ (typeof RouteAnalysisCompletionReasonCode)[keyof typeof RouteAnalysisCompletionReasonCode];
1157
+ export declare const RouteAnalysisCompletionResultCode: {
1158
+ readonly CONNECTED: "CONNECTED";
1159
+ readonly NOT_CONNECTED: "NOT_CONNECTED";
1160
+ };
1161
+ export type RouteAnalysisCompletionResultCode =
1162
+ (typeof RouteAnalysisCompletionResultCode)[keyof typeof RouteAnalysisCompletionResultCode];
1113
1163
  export interface RouteAnalysisCompletion {
1114
1164
  ResultCode?: RouteAnalysisCompletionResultCode | string;
1115
1165
  ReasonCode?: RouteAnalysisCompletionReasonCode | string;
@@ -1132,11 +1182,13 @@ export interface RouteAnalysisPath {
1132
1182
  CompletionStatus?: RouteAnalysisCompletion;
1133
1183
  Path?: PathComponent[];
1134
1184
  }
1135
- export declare enum RouteAnalysisStatus {
1136
- completed = "COMPLETED",
1137
- failed = "FAILED",
1138
- running = "RUNNING",
1139
- }
1185
+ export declare const RouteAnalysisStatus: {
1186
+ readonly completed: "COMPLETED";
1187
+ readonly failed: "FAILED";
1188
+ readonly running: "RUNNING";
1189
+ };
1190
+ export type RouteAnalysisStatus =
1191
+ (typeof RouteAnalysisStatus)[keyof typeof RouteAnalysisStatus];
1140
1192
  export interface RouteAnalysis {
1141
1193
  GlobalNetworkId?: string;
1142
1194
  OwnerAccountId?: string;