@aws-sdk/client-networkmanager 3.933.0 → 3.935.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-cjs/index.js +226 -225
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +225 -0
- package/dist-es/models/errors.js +141 -0
- package/dist-es/models/models_0.js +1 -366
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +513 -0
- package/dist-types/models/errors.d.ts +183 -0
- package/dist-types/models/models_0.d.ts +2 -694
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +286 -0
- package/dist-types/ts3.4/models/errors.d.ts +80 -0
- package/dist-types/ts3.4/models/models_0.d.ts +37 -366
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { AutomaticJsonStringConversion as __AutomaticJsonStringConversion
|
|
2
|
-
import {
|
|
1
|
+
import { AutomaticJsonStringConversion as __AutomaticJsonStringConversion } from "@smithy/smithy-client";
|
|
2
|
+
import { AttachmentErrorCode, AttachmentState, AttachmentType, ChangeAction, ChangeSetState, ChangeStatus, ChangeType, ConnectionState, ConnectionStatus, ConnectionType, ConnectPeerAssociationState, ConnectPeerErrorCode, ConnectPeerState, CoreNetworkPolicyAlias, CoreNetworkState, CustomerGatewayAssociationState, DeviceState, GlobalNetworkState, LinkAssociationState, LinkState, PeeringErrorCode, PeeringState, PeeringType, RouteAnalysisCompletionReasonCode, RouteAnalysisCompletionResultCode, RouteAnalysisStatus, RouteState, RouteTableType, RouteType, SegmentActionServiceInsertion, SendViaMode, SiteState, TransitGatewayConnectPeerAssociationState, TransitGatewayRegistrationState, TunnelProtocol } from "./enums";
|
|
3
3
|
/**
|
|
4
4
|
* @public
|
|
5
5
|
*/
|
|
@@ -10,42 +10,6 @@ export interface AcceptAttachmentRequest {
|
|
|
10
10
|
*/
|
|
11
11
|
AttachmentId: string | undefined;
|
|
12
12
|
}
|
|
13
|
-
/**
|
|
14
|
-
* @public
|
|
15
|
-
* @enum
|
|
16
|
-
*/
|
|
17
|
-
export declare const AttachmentType: {
|
|
18
|
-
readonly CONNECT: "CONNECT";
|
|
19
|
-
readonly DIRECT_CONNECT_GATEWAY: "DIRECT_CONNECT_GATEWAY";
|
|
20
|
-
readonly SITE_TO_SITE_VPN: "SITE_TO_SITE_VPN";
|
|
21
|
-
readonly TRANSIT_GATEWAY_ROUTE_TABLE: "TRANSIT_GATEWAY_ROUTE_TABLE";
|
|
22
|
-
readonly VPC: "VPC";
|
|
23
|
-
};
|
|
24
|
-
/**
|
|
25
|
-
* @public
|
|
26
|
-
*/
|
|
27
|
-
export type AttachmentType = (typeof AttachmentType)[keyof typeof AttachmentType];
|
|
28
|
-
/**
|
|
29
|
-
* @public
|
|
30
|
-
* @enum
|
|
31
|
-
*/
|
|
32
|
-
export declare const AttachmentErrorCode: {
|
|
33
|
-
readonly DIRECT_CONNECT_GATEWAY_EXISTING_ATTACHMENTS: "DIRECT_CONNECT_GATEWAY_EXISTING_ATTACHMENTS";
|
|
34
|
-
readonly DIRECT_CONNECT_GATEWAY_NOT_FOUND: "DIRECT_CONNECT_GATEWAY_NOT_FOUND";
|
|
35
|
-
readonly DIRECT_CONNECT_GATEWAY_NO_PRIVATE_VIF: "DIRECT_CONNECT_GATEWAY_NO_PRIVATE_VIF";
|
|
36
|
-
readonly MAXIMUM_NO_ENCAP_LIMIT_EXCEEDED: "MAXIMUM_NO_ENCAP_LIMIT_EXCEEDED";
|
|
37
|
-
readonly SUBNET_DUPLICATED_IN_AVAILABILITY_ZONE: "SUBNET_DUPLICATED_IN_AVAILABILITY_ZONE";
|
|
38
|
-
readonly SUBNET_NOT_FOUND: "SUBNET_NOT_FOUND";
|
|
39
|
-
readonly SUBNET_NO_FREE_ADDRESSES: "SUBNET_NO_FREE_ADDRESSES";
|
|
40
|
-
readonly SUBNET_NO_IPV6_CIDRS: "SUBNET_NO_IPV6_CIDRS";
|
|
41
|
-
readonly SUBNET_UNSUPPORTED_AVAILABILITY_ZONE: "SUBNET_UNSUPPORTED_AVAILABILITY_ZONE";
|
|
42
|
-
readonly VPC_NOT_FOUND: "VPC_NOT_FOUND";
|
|
43
|
-
readonly VPN_CONNECTION_NOT_FOUND: "VPN_CONNECTION_NOT_FOUND";
|
|
44
|
-
};
|
|
45
|
-
/**
|
|
46
|
-
* @public
|
|
47
|
-
*/
|
|
48
|
-
export type AttachmentErrorCode = (typeof AttachmentErrorCode)[keyof typeof AttachmentErrorCode];
|
|
49
13
|
/**
|
|
50
14
|
* <p>Describes the error associated with an attachment request.</p>
|
|
51
15
|
* @public
|
|
@@ -132,25 +96,6 @@ export interface ProposedSegmentChange {
|
|
|
132
96
|
*/
|
|
133
97
|
SegmentName?: string | undefined;
|
|
134
98
|
}
|
|
135
|
-
/**
|
|
136
|
-
* @public
|
|
137
|
-
* @enum
|
|
138
|
-
*/
|
|
139
|
-
export declare const AttachmentState: {
|
|
140
|
-
readonly AVAILABLE: "AVAILABLE";
|
|
141
|
-
readonly CREATING: "CREATING";
|
|
142
|
-
readonly DELETING: "DELETING";
|
|
143
|
-
readonly FAILED: "FAILED";
|
|
144
|
-
readonly PENDING_ATTACHMENT_ACCEPTANCE: "PENDING_ATTACHMENT_ACCEPTANCE";
|
|
145
|
-
readonly PENDING_NETWORK_UPDATE: "PENDING_NETWORK_UPDATE";
|
|
146
|
-
readonly PENDING_TAG_ACCEPTANCE: "PENDING_TAG_ACCEPTANCE";
|
|
147
|
-
readonly REJECTED: "REJECTED";
|
|
148
|
-
readonly UPDATING: "UPDATING";
|
|
149
|
-
};
|
|
150
|
-
/**
|
|
151
|
-
* @public
|
|
152
|
-
*/
|
|
153
|
-
export type AttachmentState = (typeof AttachmentState)[keyof typeof AttachmentState];
|
|
154
99
|
/**
|
|
155
100
|
* <p>Describes a core network attachment.</p>
|
|
156
101
|
* @public
|
|
@@ -257,107 +202,6 @@ export interface AcceptAttachmentResponse {
|
|
|
257
202
|
*/
|
|
258
203
|
Attachment?: Attachment | undefined;
|
|
259
204
|
}
|
|
260
|
-
/**
|
|
261
|
-
* <p>You do not have sufficient access to perform this action.</p>
|
|
262
|
-
* @public
|
|
263
|
-
*/
|
|
264
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
265
|
-
readonly name: "AccessDeniedException";
|
|
266
|
-
readonly $fault: "client";
|
|
267
|
-
Message: string | undefined;
|
|
268
|
-
/**
|
|
269
|
-
* @internal
|
|
270
|
-
*/
|
|
271
|
-
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
272
|
-
}
|
|
273
|
-
/**
|
|
274
|
-
* <p>There was a conflict processing the request. Updating or deleting the resource can
|
|
275
|
-
* cause an inconsistent state.</p>
|
|
276
|
-
* @public
|
|
277
|
-
*/
|
|
278
|
-
export declare class ConflictException extends __BaseException {
|
|
279
|
-
readonly name: "ConflictException";
|
|
280
|
-
readonly $fault: "client";
|
|
281
|
-
Message: string | undefined;
|
|
282
|
-
/**
|
|
283
|
-
* <p>The ID of the resource.</p>
|
|
284
|
-
* @public
|
|
285
|
-
*/
|
|
286
|
-
ResourceId: string | undefined;
|
|
287
|
-
/**
|
|
288
|
-
* <p>The resource type.</p>
|
|
289
|
-
* @public
|
|
290
|
-
*/
|
|
291
|
-
ResourceType: string | undefined;
|
|
292
|
-
/**
|
|
293
|
-
* @internal
|
|
294
|
-
*/
|
|
295
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
296
|
-
}
|
|
297
|
-
/**
|
|
298
|
-
* <p>The request has failed due to an internal error.</p>
|
|
299
|
-
* @public
|
|
300
|
-
*/
|
|
301
|
-
export declare class InternalServerException extends __BaseException {
|
|
302
|
-
readonly name: "InternalServerException";
|
|
303
|
-
readonly $fault: "server";
|
|
304
|
-
Message: string | undefined;
|
|
305
|
-
/**
|
|
306
|
-
* <p>Indicates when to retry the request.</p>
|
|
307
|
-
* @public
|
|
308
|
-
*/
|
|
309
|
-
RetryAfterSeconds?: number | undefined;
|
|
310
|
-
/**
|
|
311
|
-
* @internal
|
|
312
|
-
*/
|
|
313
|
-
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
314
|
-
}
|
|
315
|
-
/**
|
|
316
|
-
* <p>The specified resource could not be found.</p>
|
|
317
|
-
* @public
|
|
318
|
-
*/
|
|
319
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
320
|
-
readonly name: "ResourceNotFoundException";
|
|
321
|
-
readonly $fault: "client";
|
|
322
|
-
Message: string | undefined;
|
|
323
|
-
/**
|
|
324
|
-
* <p>The ID of the resource.</p>
|
|
325
|
-
* @public
|
|
326
|
-
*/
|
|
327
|
-
ResourceId: string | undefined;
|
|
328
|
-
/**
|
|
329
|
-
* <p>The resource type.</p>
|
|
330
|
-
* @public
|
|
331
|
-
*/
|
|
332
|
-
ResourceType: string | undefined;
|
|
333
|
-
/**
|
|
334
|
-
* <p>The specified resource could not be found.</p>
|
|
335
|
-
* @public
|
|
336
|
-
*/
|
|
337
|
-
Context?: Record<string, string> | undefined;
|
|
338
|
-
/**
|
|
339
|
-
* @internal
|
|
340
|
-
*/
|
|
341
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
342
|
-
}
|
|
343
|
-
/**
|
|
344
|
-
* <p>The request was denied due to request throttling.</p>
|
|
345
|
-
* @public
|
|
346
|
-
*/
|
|
347
|
-
export declare class ThrottlingException extends __BaseException {
|
|
348
|
-
readonly name: "ThrottlingException";
|
|
349
|
-
readonly $fault: "client";
|
|
350
|
-
Message: string | undefined;
|
|
351
|
-
/**
|
|
352
|
-
* <p>Indicates when to retry the request.</p>
|
|
353
|
-
* @public
|
|
354
|
-
*/
|
|
355
|
-
RetryAfterSeconds?: number | undefined;
|
|
356
|
-
/**
|
|
357
|
-
* @internal
|
|
358
|
-
*/
|
|
359
|
-
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
360
|
-
}
|
|
361
205
|
/**
|
|
362
206
|
* <p>Describes a validation exception for a field.</p>
|
|
363
207
|
* @public
|
|
@@ -374,43 +218,6 @@ export interface ValidationExceptionField {
|
|
|
374
218
|
*/
|
|
375
219
|
Message: string | undefined;
|
|
376
220
|
}
|
|
377
|
-
/**
|
|
378
|
-
* @public
|
|
379
|
-
* @enum
|
|
380
|
-
*/
|
|
381
|
-
export declare const ValidationExceptionReason: {
|
|
382
|
-
readonly CANNOT_PARSE: "CannotParse";
|
|
383
|
-
readonly FIELD_VALIDATION_FAILED: "FieldValidationFailed";
|
|
384
|
-
readonly OTHER: "Other";
|
|
385
|
-
readonly UNKNOWN_OPERATION: "UnknownOperation";
|
|
386
|
-
};
|
|
387
|
-
/**
|
|
388
|
-
* @public
|
|
389
|
-
*/
|
|
390
|
-
export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
391
|
-
/**
|
|
392
|
-
* <p>The input fails to satisfy the constraints.</p>
|
|
393
|
-
* @public
|
|
394
|
-
*/
|
|
395
|
-
export declare class ValidationException extends __BaseException {
|
|
396
|
-
readonly name: "ValidationException";
|
|
397
|
-
readonly $fault: "client";
|
|
398
|
-
Message: string | undefined;
|
|
399
|
-
/**
|
|
400
|
-
* <p>The reason for the error.</p>
|
|
401
|
-
* @public
|
|
402
|
-
*/
|
|
403
|
-
Reason?: ValidationExceptionReason | undefined;
|
|
404
|
-
/**
|
|
405
|
-
* <p>The fields that caused the error, if applicable.</p>
|
|
406
|
-
* @public
|
|
407
|
-
*/
|
|
408
|
-
Fields?: ValidationExceptionField[] | undefined;
|
|
409
|
-
/**
|
|
410
|
-
* @internal
|
|
411
|
-
*/
|
|
412
|
-
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
413
|
-
}
|
|
414
221
|
/**
|
|
415
222
|
* <p>Describes the current status of an account within an Amazon Web Services Organization, including service-linked roles (SLRs).</p>
|
|
416
223
|
* @public
|
|
@@ -452,20 +259,6 @@ export interface AssociateConnectPeerRequest {
|
|
|
452
259
|
*/
|
|
453
260
|
LinkId?: string | undefined;
|
|
454
261
|
}
|
|
455
|
-
/**
|
|
456
|
-
* @public
|
|
457
|
-
* @enum
|
|
458
|
-
*/
|
|
459
|
-
export declare const ConnectPeerAssociationState: {
|
|
460
|
-
readonly available: "AVAILABLE";
|
|
461
|
-
readonly deleted: "DELETED";
|
|
462
|
-
readonly deleting: "DELETING";
|
|
463
|
-
readonly pending: "PENDING";
|
|
464
|
-
};
|
|
465
|
-
/**
|
|
466
|
-
* @public
|
|
467
|
-
*/
|
|
468
|
-
export type ConnectPeerAssociationState = (typeof ConnectPeerAssociationState)[keyof typeof ConnectPeerAssociationState];
|
|
469
262
|
/**
|
|
470
263
|
* <p>Describes a core network Connect peer association.</p>
|
|
471
264
|
* @public
|
|
@@ -507,43 +300,6 @@ export interface AssociateConnectPeerResponse {
|
|
|
507
300
|
*/
|
|
508
301
|
ConnectPeerAssociation?: ConnectPeerAssociation | undefined;
|
|
509
302
|
}
|
|
510
|
-
/**
|
|
511
|
-
* <p>A service limit was exceeded.</p>
|
|
512
|
-
* @public
|
|
513
|
-
*/
|
|
514
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
515
|
-
readonly name: "ServiceQuotaExceededException";
|
|
516
|
-
readonly $fault: "client";
|
|
517
|
-
/**
|
|
518
|
-
* <p>The error message.</p>
|
|
519
|
-
* @public
|
|
520
|
-
*/
|
|
521
|
-
Message: string | undefined;
|
|
522
|
-
/**
|
|
523
|
-
* <p>The ID of the resource.</p>
|
|
524
|
-
* @public
|
|
525
|
-
*/
|
|
526
|
-
ResourceId?: string | undefined;
|
|
527
|
-
/**
|
|
528
|
-
* <p>The resource type.</p>
|
|
529
|
-
* @public
|
|
530
|
-
*/
|
|
531
|
-
ResourceType?: string | undefined;
|
|
532
|
-
/**
|
|
533
|
-
* <p>The limit code.</p>
|
|
534
|
-
* @public
|
|
535
|
-
*/
|
|
536
|
-
LimitCode: string | undefined;
|
|
537
|
-
/**
|
|
538
|
-
* <p>The service code.</p>
|
|
539
|
-
* @public
|
|
540
|
-
*/
|
|
541
|
-
ServiceCode: string | undefined;
|
|
542
|
-
/**
|
|
543
|
-
* @internal
|
|
544
|
-
*/
|
|
545
|
-
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
546
|
-
}
|
|
547
303
|
/**
|
|
548
304
|
* @public
|
|
549
305
|
*/
|
|
@@ -569,20 +325,6 @@ export interface AssociateCustomerGatewayRequest {
|
|
|
569
325
|
*/
|
|
570
326
|
LinkId?: string | undefined;
|
|
571
327
|
}
|
|
572
|
-
/**
|
|
573
|
-
* @public
|
|
574
|
-
* @enum
|
|
575
|
-
*/
|
|
576
|
-
export declare const CustomerGatewayAssociationState: {
|
|
577
|
-
readonly available: "AVAILABLE";
|
|
578
|
-
readonly deleted: "DELETED";
|
|
579
|
-
readonly deleting: "DELETING";
|
|
580
|
-
readonly pending: "PENDING";
|
|
581
|
-
};
|
|
582
|
-
/**
|
|
583
|
-
* @public
|
|
584
|
-
*/
|
|
585
|
-
export type CustomerGatewayAssociationState = (typeof CustomerGatewayAssociationState)[keyof typeof CustomerGatewayAssociationState];
|
|
586
328
|
/**
|
|
587
329
|
* <p>Describes the association between a customer gateway, a device, and a link.</p>
|
|
588
330
|
* @public
|
|
@@ -644,20 +386,6 @@ export interface AssociateLinkRequest {
|
|
|
644
386
|
*/
|
|
645
387
|
LinkId: string | undefined;
|
|
646
388
|
}
|
|
647
|
-
/**
|
|
648
|
-
* @public
|
|
649
|
-
* @enum
|
|
650
|
-
*/
|
|
651
|
-
export declare const LinkAssociationState: {
|
|
652
|
-
readonly available: "AVAILABLE";
|
|
653
|
-
readonly deleted: "DELETED";
|
|
654
|
-
readonly deleting: "DELETING";
|
|
655
|
-
readonly pending: "PENDING";
|
|
656
|
-
};
|
|
657
|
-
/**
|
|
658
|
-
* @public
|
|
659
|
-
*/
|
|
660
|
-
export type LinkAssociationState = (typeof LinkAssociationState)[keyof typeof LinkAssociationState];
|
|
661
389
|
/**
|
|
662
390
|
* <p>Describes the association between a device and a link.</p>
|
|
663
391
|
* @public
|
|
@@ -719,20 +447,6 @@ export interface AssociateTransitGatewayConnectPeerRequest {
|
|
|
719
447
|
*/
|
|
720
448
|
LinkId?: string | undefined;
|
|
721
449
|
}
|
|
722
|
-
/**
|
|
723
|
-
* @public
|
|
724
|
-
* @enum
|
|
725
|
-
*/
|
|
726
|
-
export declare const TransitGatewayConnectPeerAssociationState: {
|
|
727
|
-
readonly available: "AVAILABLE";
|
|
728
|
-
readonly deleted: "DELETED";
|
|
729
|
-
readonly deleting: "DELETING";
|
|
730
|
-
readonly pending: "PENDING";
|
|
731
|
-
};
|
|
732
|
-
/**
|
|
733
|
-
* @public
|
|
734
|
-
*/
|
|
735
|
-
export type TransitGatewayConnectPeerAssociationState = (typeof TransitGatewayConnectPeerAssociationState)[keyof typeof TransitGatewayConnectPeerAssociationState];
|
|
736
450
|
/**
|
|
737
451
|
* <p>Describes a transit gateway Connect peer association.</p>
|
|
738
452
|
* @public
|
|
@@ -818,81 +532,6 @@ export interface BgpOptions {
|
|
|
818
532
|
*/
|
|
819
533
|
PeerAsn?: number | undefined;
|
|
820
534
|
}
|
|
821
|
-
/**
|
|
822
|
-
* @public
|
|
823
|
-
* @enum
|
|
824
|
-
*/
|
|
825
|
-
export declare const ChangeAction: {
|
|
826
|
-
readonly ADD: "ADD";
|
|
827
|
-
readonly MODIFY: "MODIFY";
|
|
828
|
-
readonly REMOVE: "REMOVE";
|
|
829
|
-
};
|
|
830
|
-
/**
|
|
831
|
-
* @public
|
|
832
|
-
*/
|
|
833
|
-
export type ChangeAction = (typeof ChangeAction)[keyof typeof ChangeAction];
|
|
834
|
-
/**
|
|
835
|
-
* @public
|
|
836
|
-
* @enum
|
|
837
|
-
*/
|
|
838
|
-
export declare const ChangeSetState: {
|
|
839
|
-
readonly EXECUTING: "EXECUTING";
|
|
840
|
-
readonly EXECUTION_SUCCEEDED: "EXECUTION_SUCCEEDED";
|
|
841
|
-
readonly FAILED_GENERATION: "FAILED_GENERATION";
|
|
842
|
-
readonly OUT_OF_DATE: "OUT_OF_DATE";
|
|
843
|
-
readonly PENDING_GENERATION: "PENDING_GENERATION";
|
|
844
|
-
readonly READY_TO_EXECUTE: "READY_TO_EXECUTE";
|
|
845
|
-
};
|
|
846
|
-
/**
|
|
847
|
-
* @public
|
|
848
|
-
*/
|
|
849
|
-
export type ChangeSetState = (typeof ChangeSetState)[keyof typeof ChangeSetState];
|
|
850
|
-
/**
|
|
851
|
-
* @public
|
|
852
|
-
* @enum
|
|
853
|
-
*/
|
|
854
|
-
export declare const ChangeStatus: {
|
|
855
|
-
readonly COMPLETE: "COMPLETE";
|
|
856
|
-
readonly FAILED: "FAILED";
|
|
857
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
858
|
-
readonly NOT_STARTED: "NOT_STARTED";
|
|
859
|
-
};
|
|
860
|
-
/**
|
|
861
|
-
* @public
|
|
862
|
-
*/
|
|
863
|
-
export type ChangeStatus = (typeof ChangeStatus)[keyof typeof ChangeStatus];
|
|
864
|
-
/**
|
|
865
|
-
* @public
|
|
866
|
-
* @enum
|
|
867
|
-
*/
|
|
868
|
-
export declare const ChangeType: {
|
|
869
|
-
readonly ATTACHMENT_MAPPING: "ATTACHMENT_MAPPING";
|
|
870
|
-
readonly ATTACHMENT_POLICIES_CONFIGURATION: "ATTACHMENT_POLICIES_CONFIGURATION";
|
|
871
|
-
readonly ATTACHMENT_ROUTE_PROPAGATION: "ATTACHMENT_ROUTE_PROPAGATION";
|
|
872
|
-
readonly ATTACHMENT_ROUTE_STATIC: "ATTACHMENT_ROUTE_STATIC";
|
|
873
|
-
readonly CORE_NETWORK_CONFIGURATION: "CORE_NETWORK_CONFIGURATION";
|
|
874
|
-
readonly CORE_NETWORK_EDGE: "CORE_NETWORK_EDGE";
|
|
875
|
-
readonly CORE_NETWORK_SEGMENT: "CORE_NETWORK_SEGMENT";
|
|
876
|
-
readonly NETWORK_FUNCTION_GROUP: "NETWORK_FUNCTION_GROUP";
|
|
877
|
-
readonly SEGMENTS_CONFIGURATION: "SEGMENTS_CONFIGURATION";
|
|
878
|
-
readonly SEGMENT_ACTIONS_CONFIGURATION: "SEGMENT_ACTIONS_CONFIGURATION";
|
|
879
|
-
};
|
|
880
|
-
/**
|
|
881
|
-
* @public
|
|
882
|
-
*/
|
|
883
|
-
export type ChangeType = (typeof ChangeType)[keyof typeof ChangeType];
|
|
884
|
-
/**
|
|
885
|
-
* @public
|
|
886
|
-
* @enum
|
|
887
|
-
*/
|
|
888
|
-
export declare const TunnelProtocol: {
|
|
889
|
-
readonly GRE: "GRE";
|
|
890
|
-
readonly NO_ENCAP: "NO_ENCAP";
|
|
891
|
-
};
|
|
892
|
-
/**
|
|
893
|
-
* @public
|
|
894
|
-
*/
|
|
895
|
-
export type TunnelProtocol = (typeof TunnelProtocol)[keyof typeof TunnelProtocol];
|
|
896
535
|
/**
|
|
897
536
|
* <p>Describes a core network Connect attachment options.</p>
|
|
898
537
|
* @public
|
|
@@ -925,20 +564,6 @@ export interface ConnectAttachment {
|
|
|
925
564
|
*/
|
|
926
565
|
Options?: ConnectAttachmentOptions | undefined;
|
|
927
566
|
}
|
|
928
|
-
/**
|
|
929
|
-
* @public
|
|
930
|
-
* @enum
|
|
931
|
-
*/
|
|
932
|
-
export declare const ConnectionState: {
|
|
933
|
-
readonly available: "AVAILABLE";
|
|
934
|
-
readonly deleting: "DELETING";
|
|
935
|
-
readonly pending: "PENDING";
|
|
936
|
-
readonly updating: "UPDATING";
|
|
937
|
-
};
|
|
938
|
-
/**
|
|
939
|
-
* @public
|
|
940
|
-
*/
|
|
941
|
-
export type ConnectionState = (typeof ConnectionState)[keyof typeof ConnectionState];
|
|
942
567
|
/**
|
|
943
568
|
* <p>Describes a connection.</p>
|
|
944
569
|
* @public
|
|
@@ -1000,30 +625,6 @@ export interface Connection {
|
|
|
1000
625
|
*/
|
|
1001
626
|
Tags?: Tag[] | undefined;
|
|
1002
627
|
}
|
|
1003
|
-
/**
|
|
1004
|
-
* @public
|
|
1005
|
-
* @enum
|
|
1006
|
-
*/
|
|
1007
|
-
export declare const ConnectionStatus: {
|
|
1008
|
-
readonly DOWN: "DOWN";
|
|
1009
|
-
readonly UP: "UP";
|
|
1010
|
-
};
|
|
1011
|
-
/**
|
|
1012
|
-
* @public
|
|
1013
|
-
*/
|
|
1014
|
-
export type ConnectionStatus = (typeof ConnectionStatus)[keyof typeof ConnectionStatus];
|
|
1015
|
-
/**
|
|
1016
|
-
* @public
|
|
1017
|
-
* @enum
|
|
1018
|
-
*/
|
|
1019
|
-
export declare const ConnectionType: {
|
|
1020
|
-
readonly BGP: "BGP";
|
|
1021
|
-
readonly IPSEC: "IPSEC";
|
|
1022
|
-
};
|
|
1023
|
-
/**
|
|
1024
|
-
* @public
|
|
1025
|
-
*/
|
|
1026
|
-
export type ConnectionType = (typeof ConnectionType)[keyof typeof ConnectionType];
|
|
1027
628
|
/**
|
|
1028
629
|
* <p>Describes connection health.</p>
|
|
1029
630
|
* @public
|
|
@@ -1102,22 +703,6 @@ export interface ConnectPeerConfiguration {
|
|
|
1102
703
|
*/
|
|
1103
704
|
BgpConfigurations?: ConnectPeerBgpConfiguration[] | undefined;
|
|
1104
705
|
}
|
|
1105
|
-
/**
|
|
1106
|
-
* @public
|
|
1107
|
-
* @enum
|
|
1108
|
-
*/
|
|
1109
|
-
export declare const ConnectPeerErrorCode: {
|
|
1110
|
-
readonly EDGE_LOCATION_NO_FREE_IPS: "EDGE_LOCATION_NO_FREE_IPS";
|
|
1111
|
-
readonly EDGE_LOCATION_PEER_DUPLICATE: "EDGE_LOCATION_PEER_DUPLICATE";
|
|
1112
|
-
readonly INVALID_INSIDE_CIDR_BLOCK: "INVALID_INSIDE_CIDR_BLOCK";
|
|
1113
|
-
readonly IP_OUTSIDE_SUBNET_CIDR_RANGE: "IP_OUTSIDE_SUBNET_CIDR_RANGE";
|
|
1114
|
-
readonly NO_ASSOCIATED_CIDR_BLOCK: "NO_ASSOCIATED_CIDR_BLOCK";
|
|
1115
|
-
readonly SUBNET_NOT_FOUND: "SUBNET_NOT_FOUND";
|
|
1116
|
-
};
|
|
1117
|
-
/**
|
|
1118
|
-
* @public
|
|
1119
|
-
*/
|
|
1120
|
-
export type ConnectPeerErrorCode = (typeof ConnectPeerErrorCode)[keyof typeof ConnectPeerErrorCode];
|
|
1121
706
|
/**
|
|
1122
707
|
* <p>Describes an error associated with a Connect peer request</p>
|
|
1123
708
|
* @public
|
|
@@ -1144,20 +729,6 @@ export interface ConnectPeerError {
|
|
|
1144
729
|
*/
|
|
1145
730
|
RequestId?: string | undefined;
|
|
1146
731
|
}
|
|
1147
|
-
/**
|
|
1148
|
-
* @public
|
|
1149
|
-
* @enum
|
|
1150
|
-
*/
|
|
1151
|
-
export declare const ConnectPeerState: {
|
|
1152
|
-
readonly AVAILABLE: "AVAILABLE";
|
|
1153
|
-
readonly CREATING: "CREATING";
|
|
1154
|
-
readonly DELETING: "DELETING";
|
|
1155
|
-
readonly FAILED: "FAILED";
|
|
1156
|
-
};
|
|
1157
|
-
/**
|
|
1158
|
-
* @public
|
|
1159
|
-
*/
|
|
1160
|
-
export type ConnectPeerState = (typeof ConnectPeerState)[keyof typeof ConnectPeerState];
|
|
1161
732
|
/**
|
|
1162
733
|
* <p>Describes a core network Connect peer.</p>
|
|
1163
734
|
* @public
|
|
@@ -1339,20 +910,6 @@ export interface CoreNetworkSegment {
|
|
|
1339
910
|
*/
|
|
1340
911
|
SharedSegments?: string[] | undefined;
|
|
1341
912
|
}
|
|
1342
|
-
/**
|
|
1343
|
-
* @public
|
|
1344
|
-
* @enum
|
|
1345
|
-
*/
|
|
1346
|
-
export declare const CoreNetworkState: {
|
|
1347
|
-
readonly AVAILABLE: "AVAILABLE";
|
|
1348
|
-
readonly CREATING: "CREATING";
|
|
1349
|
-
readonly DELETING: "DELETING";
|
|
1350
|
-
readonly UPDATING: "UPDATING";
|
|
1351
|
-
};
|
|
1352
|
-
/**
|
|
1353
|
-
* @public
|
|
1354
|
-
*/
|
|
1355
|
-
export type CoreNetworkState = (typeof CoreNetworkState)[keyof typeof CoreNetworkState];
|
|
1356
913
|
/**
|
|
1357
914
|
* <p>Describes a core network.</p>
|
|
1358
915
|
* @public
|
|
@@ -1409,30 +966,6 @@ export interface CoreNetwork {
|
|
|
1409
966
|
*/
|
|
1410
967
|
Tags?: Tag[] | undefined;
|
|
1411
968
|
}
|
|
1412
|
-
/**
|
|
1413
|
-
* @public
|
|
1414
|
-
* @enum
|
|
1415
|
-
*/
|
|
1416
|
-
export declare const SegmentActionServiceInsertion: {
|
|
1417
|
-
readonly SEND_TO: "send-to";
|
|
1418
|
-
readonly SEND_VIA: "send-via";
|
|
1419
|
-
};
|
|
1420
|
-
/**
|
|
1421
|
-
* @public
|
|
1422
|
-
*/
|
|
1423
|
-
export type SegmentActionServiceInsertion = (typeof SegmentActionServiceInsertion)[keyof typeof SegmentActionServiceInsertion];
|
|
1424
|
-
/**
|
|
1425
|
-
* @public
|
|
1426
|
-
* @enum
|
|
1427
|
-
*/
|
|
1428
|
-
export declare const SendViaMode: {
|
|
1429
|
-
readonly DUAL_HOP: "dual-hop";
|
|
1430
|
-
readonly SINGLE_HOP: "single-hop";
|
|
1431
|
-
};
|
|
1432
|
-
/**
|
|
1433
|
-
* @public
|
|
1434
|
-
*/
|
|
1435
|
-
export type SendViaMode = (typeof SendViaMode)[keyof typeof SendViaMode];
|
|
1436
969
|
/**
|
|
1437
970
|
* <p>Describes a network function group for service insertion.</p>
|
|
1438
971
|
* @public
|
|
@@ -1711,18 +1244,6 @@ export interface CoreNetworkNetworkFunctionGroupIdentifier {
|
|
|
1711
1244
|
*/
|
|
1712
1245
|
EdgeLocation?: string | undefined;
|
|
1713
1246
|
}
|
|
1714
|
-
/**
|
|
1715
|
-
* @public
|
|
1716
|
-
* @enum
|
|
1717
|
-
*/
|
|
1718
|
-
export declare const CoreNetworkPolicyAlias: {
|
|
1719
|
-
readonly LATEST: "LATEST";
|
|
1720
|
-
readonly LIVE: "LIVE";
|
|
1721
|
-
};
|
|
1722
|
-
/**
|
|
1723
|
-
* @public
|
|
1724
|
-
*/
|
|
1725
|
-
export type CoreNetworkPolicyAlias = (typeof CoreNetworkPolicyAlias)[keyof typeof CoreNetworkPolicyAlias];
|
|
1726
1247
|
/**
|
|
1727
1248
|
* <p>Provides details about an error in a core network policy.</p>
|
|
1728
1249
|
* @public
|
|
@@ -1790,24 +1311,6 @@ export interface CoreNetworkPolicy {
|
|
|
1790
1311
|
*/
|
|
1791
1312
|
PolicyDocument?: __AutomaticJsonStringConversion | string | undefined;
|
|
1792
1313
|
}
|
|
1793
|
-
/**
|
|
1794
|
-
* <p>Describes a core network policy exception.</p>
|
|
1795
|
-
* @public
|
|
1796
|
-
*/
|
|
1797
|
-
export declare class CoreNetworkPolicyException extends __BaseException {
|
|
1798
|
-
readonly name: "CoreNetworkPolicyException";
|
|
1799
|
-
readonly $fault: "client";
|
|
1800
|
-
Message: string | undefined;
|
|
1801
|
-
/**
|
|
1802
|
-
* <p>Describes a core network policy exception.</p>
|
|
1803
|
-
* @public
|
|
1804
|
-
*/
|
|
1805
|
-
Errors?: CoreNetworkPolicyError[] | undefined;
|
|
1806
|
-
/**
|
|
1807
|
-
* @internal
|
|
1808
|
-
*/
|
|
1809
|
-
constructor(opts: __ExceptionOptionType<CoreNetworkPolicyException, __BaseException>);
|
|
1810
|
-
}
|
|
1811
1314
|
/**
|
|
1812
1315
|
* <p>Describes a core network policy version.</p>
|
|
1813
1316
|
* @public
|
|
@@ -2177,20 +1680,6 @@ export interface CreateDeviceRequest {
|
|
|
2177
1680
|
*/
|
|
2178
1681
|
Tags?: Tag[] | undefined;
|
|
2179
1682
|
}
|
|
2180
|
-
/**
|
|
2181
|
-
* @public
|
|
2182
|
-
* @enum
|
|
2183
|
-
*/
|
|
2184
|
-
export declare const DeviceState: {
|
|
2185
|
-
readonly available: "AVAILABLE";
|
|
2186
|
-
readonly deleting: "DELETING";
|
|
2187
|
-
readonly pending: "PENDING";
|
|
2188
|
-
readonly updating: "UPDATING";
|
|
2189
|
-
};
|
|
2190
|
-
/**
|
|
2191
|
-
* @public
|
|
2192
|
-
*/
|
|
2193
|
-
export type DeviceState = (typeof DeviceState)[keyof typeof DeviceState];
|
|
2194
1683
|
/**
|
|
2195
1684
|
* <p>Describes a device.</p>
|
|
2196
1685
|
* @public
|
|
@@ -2349,20 +1838,6 @@ export interface CreateGlobalNetworkRequest {
|
|
|
2349
1838
|
*/
|
|
2350
1839
|
Tags?: Tag[] | undefined;
|
|
2351
1840
|
}
|
|
2352
|
-
/**
|
|
2353
|
-
* @public
|
|
2354
|
-
* @enum
|
|
2355
|
-
*/
|
|
2356
|
-
export declare const GlobalNetworkState: {
|
|
2357
|
-
readonly available: "AVAILABLE";
|
|
2358
|
-
readonly deleting: "DELETING";
|
|
2359
|
-
readonly pending: "PENDING";
|
|
2360
|
-
readonly updating: "UPDATING";
|
|
2361
|
-
};
|
|
2362
|
-
/**
|
|
2363
|
-
* @public
|
|
2364
|
-
*/
|
|
2365
|
-
export type GlobalNetworkState = (typeof GlobalNetworkState)[keyof typeof GlobalNetworkState];
|
|
2366
1841
|
/**
|
|
2367
1842
|
* <p>Describes a global network. This is a single private network acting as a high-level container for your network objects, including an Amazon Web Services-managed Core Network.</p>
|
|
2368
1843
|
* @public
|
|
@@ -2452,20 +1927,6 @@ export interface CreateLinkRequest {
|
|
|
2452
1927
|
*/
|
|
2453
1928
|
Tags?: Tag[] | undefined;
|
|
2454
1929
|
}
|
|
2455
|
-
/**
|
|
2456
|
-
* @public
|
|
2457
|
-
* @enum
|
|
2458
|
-
*/
|
|
2459
|
-
export declare const LinkState: {
|
|
2460
|
-
readonly available: "AVAILABLE";
|
|
2461
|
-
readonly deleting: "DELETING";
|
|
2462
|
-
readonly pending: "PENDING";
|
|
2463
|
-
readonly updating: "UPDATING";
|
|
2464
|
-
};
|
|
2465
|
-
/**
|
|
2466
|
-
* @public
|
|
2467
|
-
*/
|
|
2468
|
-
export type LinkState = (typeof LinkState)[keyof typeof LinkState];
|
|
2469
1930
|
/**
|
|
2470
1931
|
* <p>Describes a link.</p>
|
|
2471
1932
|
* @public
|
|
@@ -2577,20 +2038,6 @@ export interface CreateSiteRequest {
|
|
|
2577
2038
|
*/
|
|
2578
2039
|
Tags?: Tag[] | undefined;
|
|
2579
2040
|
}
|
|
2580
|
-
/**
|
|
2581
|
-
* @public
|
|
2582
|
-
* @enum
|
|
2583
|
-
*/
|
|
2584
|
-
export declare const SiteState: {
|
|
2585
|
-
readonly available: "AVAILABLE";
|
|
2586
|
-
readonly deleting: "DELETING";
|
|
2587
|
-
readonly pending: "PENDING";
|
|
2588
|
-
readonly updating: "UPDATING";
|
|
2589
|
-
};
|
|
2590
|
-
/**
|
|
2591
|
-
* @public
|
|
2592
|
-
*/
|
|
2593
|
-
export type SiteState = (typeof SiteState)[keyof typeof SiteState];
|
|
2594
2041
|
/**
|
|
2595
2042
|
* <p>Describes a site.</p>
|
|
2596
2043
|
* @public
|
|
@@ -2723,22 +2170,6 @@ export interface CreateTransitGatewayPeeringRequest {
|
|
|
2723
2170
|
*/
|
|
2724
2171
|
ClientToken?: string | undefined;
|
|
2725
2172
|
}
|
|
2726
|
-
/**
|
|
2727
|
-
* @public
|
|
2728
|
-
* @enum
|
|
2729
|
-
*/
|
|
2730
|
-
export declare const PeeringErrorCode: {
|
|
2731
|
-
readonly EDGE_LOCATION_PEER_DUPLICATE: "EDGE_LOCATION_PEER_DUPLICATE";
|
|
2732
|
-
readonly INTERNAL_ERROR: "INTERNAL_ERROR";
|
|
2733
|
-
readonly INVALID_TRANSIT_GATEWAY_STATE: "INVALID_TRANSIT_GATEWAY_STATE";
|
|
2734
|
-
readonly MISSING_REQUIRED_PERMISSIONS: "MISSING_PERMISSIONS";
|
|
2735
|
-
readonly TRANSIT_GATEWAY_NOT_FOUND: "TRANSIT_GATEWAY_NOT_FOUND";
|
|
2736
|
-
readonly TRANSIT_GATEWAY_PEERS_LIMIT_EXCEEDED: "TRANSIT_GATEWAY_PEERS_LIMIT_EXCEEDED";
|
|
2737
|
-
};
|
|
2738
|
-
/**
|
|
2739
|
-
* @public
|
|
2740
|
-
*/
|
|
2741
|
-
export type PeeringErrorCode = (typeof PeeringErrorCode)[keyof typeof PeeringErrorCode];
|
|
2742
2173
|
/**
|
|
2743
2174
|
* <p>Describes additional information about missing permissions. </p>
|
|
2744
2175
|
* @public
|
|
@@ -2782,31 +2213,6 @@ export interface PeeringError {
|
|
|
2782
2213
|
*/
|
|
2783
2214
|
MissingPermissionsContext?: PermissionsErrorContext | undefined;
|
|
2784
2215
|
}
|
|
2785
|
-
/**
|
|
2786
|
-
* @public
|
|
2787
|
-
* @enum
|
|
2788
|
-
*/
|
|
2789
|
-
export declare const PeeringType: {
|
|
2790
|
-
readonly TRANSIT_GATEWAY: "TRANSIT_GATEWAY";
|
|
2791
|
-
};
|
|
2792
|
-
/**
|
|
2793
|
-
* @public
|
|
2794
|
-
*/
|
|
2795
|
-
export type PeeringType = (typeof PeeringType)[keyof typeof PeeringType];
|
|
2796
|
-
/**
|
|
2797
|
-
* @public
|
|
2798
|
-
* @enum
|
|
2799
|
-
*/
|
|
2800
|
-
export declare const PeeringState: {
|
|
2801
|
-
readonly AVAILABLE: "AVAILABLE";
|
|
2802
|
-
readonly CREATING: "CREATING";
|
|
2803
|
-
readonly DELETING: "DELETING";
|
|
2804
|
-
readonly FAILED: "FAILED";
|
|
2805
|
-
};
|
|
2806
|
-
/**
|
|
2807
|
-
* @public
|
|
2808
|
-
*/
|
|
2809
|
-
export type PeeringState = (typeof PeeringState)[keyof typeof PeeringState];
|
|
2810
2216
|
/**
|
|
2811
2217
|
* <p>Describes a peering connection.</p>
|
|
2812
2218
|
* @public
|
|
@@ -3302,21 +2708,6 @@ export interface DeregisterTransitGatewayRequest {
|
|
|
3302
2708
|
*/
|
|
3303
2709
|
TransitGatewayArn: string | undefined;
|
|
3304
2710
|
}
|
|
3305
|
-
/**
|
|
3306
|
-
* @public
|
|
3307
|
-
* @enum
|
|
3308
|
-
*/
|
|
3309
|
-
export declare const TransitGatewayRegistrationState: {
|
|
3310
|
-
readonly available: "AVAILABLE";
|
|
3311
|
-
readonly deleted: "DELETED";
|
|
3312
|
-
readonly deleting: "DELETING";
|
|
3313
|
-
readonly failed: "FAILED";
|
|
3314
|
-
readonly pending: "PENDING";
|
|
3315
|
-
};
|
|
3316
|
-
/**
|
|
3317
|
-
* @public
|
|
3318
|
-
*/
|
|
3319
|
-
export type TransitGatewayRegistrationState = (typeof TransitGatewayRegistrationState)[keyof typeof TransitGatewayRegistrationState];
|
|
3320
2711
|
/**
|
|
3321
2712
|
* <p>Describes the status of a transit gateway registration.</p>
|
|
3322
2713
|
* @public
|
|
@@ -4644,30 +4035,6 @@ export interface RouteTableIdentifier {
|
|
|
4644
4035
|
*/
|
|
4645
4036
|
CoreNetworkNetworkFunctionGroup?: CoreNetworkNetworkFunctionGroupIdentifier | undefined;
|
|
4646
4037
|
}
|
|
4647
|
-
/**
|
|
4648
|
-
* @public
|
|
4649
|
-
* @enum
|
|
4650
|
-
*/
|
|
4651
|
-
export declare const RouteState: {
|
|
4652
|
-
readonly ACTIVE: "ACTIVE";
|
|
4653
|
-
readonly BLACKHOLE: "BLACKHOLE";
|
|
4654
|
-
};
|
|
4655
|
-
/**
|
|
4656
|
-
* @public
|
|
4657
|
-
*/
|
|
4658
|
-
export type RouteState = (typeof RouteState)[keyof typeof RouteState];
|
|
4659
|
-
/**
|
|
4660
|
-
* @public
|
|
4661
|
-
* @enum
|
|
4662
|
-
*/
|
|
4663
|
-
export declare const RouteType: {
|
|
4664
|
-
readonly PROPAGATED: "PROPAGATED";
|
|
4665
|
-
readonly STATIC: "STATIC";
|
|
4666
|
-
};
|
|
4667
|
-
/**
|
|
4668
|
-
* @public
|
|
4669
|
-
*/
|
|
4670
|
-
export type RouteType = (typeof RouteType)[keyof typeof RouteType];
|
|
4671
4038
|
/**
|
|
4672
4039
|
* @public
|
|
4673
4040
|
*/
|
|
@@ -4795,19 +4162,6 @@ export interface NetworkRoute {
|
|
|
4795
4162
|
*/
|
|
4796
4163
|
Type?: RouteType | undefined;
|
|
4797
4164
|
}
|
|
4798
|
-
/**
|
|
4799
|
-
* @public
|
|
4800
|
-
* @enum
|
|
4801
|
-
*/
|
|
4802
|
-
export declare const RouteTableType: {
|
|
4803
|
-
readonly CORE_NETWORK_SEGMENT: "CORE_NETWORK_SEGMENT";
|
|
4804
|
-
readonly NETWORK_FUNCTION_GROUP: "NETWORK_FUNCTION_GROUP";
|
|
4805
|
-
readonly TRANSIT_GATEWAY_ROUTE_TABLE: "TRANSIT_GATEWAY_ROUTE_TABLE";
|
|
4806
|
-
};
|
|
4807
|
-
/**
|
|
4808
|
-
* @public
|
|
4809
|
-
*/
|
|
4810
|
-
export type RouteTableType = (typeof RouteTableType)[keyof typeof RouteTableType];
|
|
4811
4165
|
/**
|
|
4812
4166
|
* @public
|
|
4813
4167
|
*/
|
|
@@ -5027,39 +4381,6 @@ export interface RouteAnalysisEndpointOptions {
|
|
|
5027
4381
|
*/
|
|
5028
4382
|
IpAddress?: string | undefined;
|
|
5029
4383
|
}
|
|
5030
|
-
/**
|
|
5031
|
-
* @public
|
|
5032
|
-
* @enum
|
|
5033
|
-
*/
|
|
5034
|
-
export declare const RouteAnalysisCompletionReasonCode: {
|
|
5035
|
-
readonly BLACKHOLE_ROUTE_FOR_DESTINATION_FOUND: "BLACKHOLE_ROUTE_FOR_DESTINATION_FOUND";
|
|
5036
|
-
readonly CYCLIC_PATH_DETECTED: "CYCLIC_PATH_DETECTED";
|
|
5037
|
-
readonly INACTIVE_ROUTE_FOR_DESTINATION_FOUND: "INACTIVE_ROUTE_FOR_DESTINATION_FOUND";
|
|
5038
|
-
readonly MAX_HOPS_EXCEEDED: "MAX_HOPS_EXCEEDED";
|
|
5039
|
-
readonly NO_DESTINATION_ARN_PROVIDED: "NO_DESTINATION_ARN_PROVIDED";
|
|
5040
|
-
readonly POSSIBLE_MIDDLEBOX: "POSSIBLE_MIDDLEBOX";
|
|
5041
|
-
readonly ROUTE_NOT_FOUND: "ROUTE_NOT_FOUND";
|
|
5042
|
-
readonly TRANSIT_GATEWAY_ATTACHMENT: "TRANSIT_GATEWAY_ATTACHMENT_ATTACH_ARN_NO_MATCH";
|
|
5043
|
-
readonly TRANSIT_GATEWAY_ATTACHMENT_NOT_FOUND: "TRANSIT_GATEWAY_ATTACHMENT_NOT_FOUND";
|
|
5044
|
-
readonly TRANSIT_GATEWAY_ATTACHMENT_NOT_IN_TRANSIT_GATEWAY: "TRANSIT_GATEWAY_ATTACHMENT_NOT_IN_TRANSIT_GATEWAY";
|
|
5045
|
-
readonly TRANSIT_GATEWAY_ATTACHMENT_STABLE_ROUTE_TABLE_NOT_FOUND: "TRANSIT_GATEWAY_ATTACHMENT_STABLE_ROUTE_TABLE_NOT_FOUND";
|
|
5046
|
-
};
|
|
5047
|
-
/**
|
|
5048
|
-
* @public
|
|
5049
|
-
*/
|
|
5050
|
-
export type RouteAnalysisCompletionReasonCode = (typeof RouteAnalysisCompletionReasonCode)[keyof typeof RouteAnalysisCompletionReasonCode];
|
|
5051
|
-
/**
|
|
5052
|
-
* @public
|
|
5053
|
-
* @enum
|
|
5054
|
-
*/
|
|
5055
|
-
export declare const RouteAnalysisCompletionResultCode: {
|
|
5056
|
-
readonly CONNECTED: "CONNECTED";
|
|
5057
|
-
readonly NOT_CONNECTED: "NOT_CONNECTED";
|
|
5058
|
-
};
|
|
5059
|
-
/**
|
|
5060
|
-
* @public
|
|
5061
|
-
*/
|
|
5062
|
-
export type RouteAnalysisCompletionResultCode = (typeof RouteAnalysisCompletionResultCode)[keyof typeof RouteAnalysisCompletionResultCode];
|
|
5063
4384
|
/**
|
|
5064
4385
|
* <p>Describes the status of an analysis at completion.</p>
|
|
5065
4386
|
* @public
|
|
@@ -5193,19 +4514,6 @@ export interface RouteAnalysisPath {
|
|
|
5193
4514
|
*/
|
|
5194
4515
|
Path?: PathComponent[] | undefined;
|
|
5195
4516
|
}
|
|
5196
|
-
/**
|
|
5197
|
-
* @public
|
|
5198
|
-
* @enum
|
|
5199
|
-
*/
|
|
5200
|
-
export declare const RouteAnalysisStatus: {
|
|
5201
|
-
readonly completed: "COMPLETED";
|
|
5202
|
-
readonly failed: "FAILED";
|
|
5203
|
-
readonly running: "RUNNING";
|
|
5204
|
-
};
|
|
5205
|
-
/**
|
|
5206
|
-
* @public
|
|
5207
|
-
*/
|
|
5208
|
-
export type RouteAnalysisStatus = (typeof RouteAnalysisStatus)[keyof typeof RouteAnalysisStatus];
|
|
5209
4517
|
/**
|
|
5210
4518
|
* <p>Describes a route analysis.</p>
|
|
5211
4519
|
* @public
|