@aws-sdk/client-networkmanager 3.379.1 → 3.385.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 +717 -0
- package/package.json +5 -5
|
@@ -5,6 +5,7 @@ import { NetworkManagerServiceException as __BaseException } from "./NetworkMana
|
|
|
5
5
|
*/
|
|
6
6
|
export interface AcceptAttachmentRequest {
|
|
7
7
|
/**
|
|
8
|
+
* @public
|
|
8
9
|
* <p>The ID of the attachment. </p>
|
|
9
10
|
*/
|
|
10
11
|
AttachmentId: string | undefined;
|
|
@@ -29,11 +30,13 @@ export type AttachmentType = (typeof AttachmentType)[keyof typeof AttachmentType
|
|
|
29
30
|
*/
|
|
30
31
|
export interface Tag {
|
|
31
32
|
/**
|
|
33
|
+
* @public
|
|
32
34
|
* <p>The tag key.</p>
|
|
33
35
|
* <p>Constraints: Maximum length of 128 characters.</p>
|
|
34
36
|
*/
|
|
35
37
|
Key?: string;
|
|
36
38
|
/**
|
|
39
|
+
* @public
|
|
37
40
|
* <p>The tag value.</p>
|
|
38
41
|
* <p>Constraints: Maximum length of 256 characters.</p>
|
|
39
42
|
*/
|
|
@@ -45,14 +48,17 @@ export interface Tag {
|
|
|
45
48
|
*/
|
|
46
49
|
export interface ProposedSegmentChange {
|
|
47
50
|
/**
|
|
51
|
+
* @public
|
|
48
52
|
* <p>The list of key-value tags that changed for the segment.</p>
|
|
49
53
|
*/
|
|
50
54
|
Tags?: Tag[];
|
|
51
55
|
/**
|
|
56
|
+
* @public
|
|
52
57
|
* <p>The rule number in the policy document that applies to this change.</p>
|
|
53
58
|
*/
|
|
54
59
|
AttachmentPolicyRuleNumber?: number;
|
|
55
60
|
/**
|
|
61
|
+
* @public
|
|
56
62
|
* <p>The name of the segment to change.</p>
|
|
57
63
|
*/
|
|
58
64
|
SegmentName?: string;
|
|
@@ -82,58 +88,72 @@ export type AttachmentState = (typeof AttachmentState)[keyof typeof AttachmentSt
|
|
|
82
88
|
*/
|
|
83
89
|
export interface Attachment {
|
|
84
90
|
/**
|
|
91
|
+
* @public
|
|
85
92
|
* <p>The ID of a core network.</p>
|
|
86
93
|
*/
|
|
87
94
|
CoreNetworkId?: string;
|
|
88
95
|
/**
|
|
96
|
+
* @public
|
|
89
97
|
* <p>The ARN of a core network.</p>
|
|
90
98
|
*/
|
|
91
99
|
CoreNetworkArn?: string;
|
|
92
100
|
/**
|
|
101
|
+
* @public
|
|
93
102
|
* <p>The ID of the attachment.</p>
|
|
94
103
|
*/
|
|
95
104
|
AttachmentId?: string;
|
|
96
105
|
/**
|
|
106
|
+
* @public
|
|
97
107
|
* <p>The ID of the attachment account owner.</p>
|
|
98
108
|
*/
|
|
99
109
|
OwnerAccountId?: string;
|
|
100
110
|
/**
|
|
111
|
+
* @public
|
|
101
112
|
* <p>The type of attachment.</p>
|
|
102
113
|
*/
|
|
103
114
|
AttachmentType?: AttachmentType | string;
|
|
104
115
|
/**
|
|
116
|
+
* @public
|
|
105
117
|
* <p>The state of the attachment.</p>
|
|
106
118
|
*/
|
|
107
119
|
State?: AttachmentState | string;
|
|
108
120
|
/**
|
|
121
|
+
* @public
|
|
109
122
|
* <p>The Region where the edge is located.</p>
|
|
110
123
|
*/
|
|
111
124
|
EdgeLocation?: string;
|
|
112
125
|
/**
|
|
126
|
+
* @public
|
|
113
127
|
* <p>The attachment resource ARN.</p>
|
|
114
128
|
*/
|
|
115
129
|
ResourceArn?: string;
|
|
116
130
|
/**
|
|
131
|
+
* @public
|
|
117
132
|
* <p>The policy rule number associated with the attachment.</p>
|
|
118
133
|
*/
|
|
119
134
|
AttachmentPolicyRuleNumber?: number;
|
|
120
135
|
/**
|
|
136
|
+
* @public
|
|
121
137
|
* <p>The name of the segment attachment.</p>
|
|
122
138
|
*/
|
|
123
139
|
SegmentName?: string;
|
|
124
140
|
/**
|
|
141
|
+
* @public
|
|
125
142
|
* <p>The tags associated with the attachment.</p>
|
|
126
143
|
*/
|
|
127
144
|
Tags?: Tag[];
|
|
128
145
|
/**
|
|
146
|
+
* @public
|
|
129
147
|
* <p>The attachment to move from one segment to another.</p>
|
|
130
148
|
*/
|
|
131
149
|
ProposedSegmentChange?: ProposedSegmentChange;
|
|
132
150
|
/**
|
|
151
|
+
* @public
|
|
133
152
|
* <p>The timestamp when the attachment was created.</p>
|
|
134
153
|
*/
|
|
135
154
|
CreatedAt?: Date;
|
|
136
155
|
/**
|
|
156
|
+
* @public
|
|
137
157
|
* <p>The timestamp when the attachment was last updated.</p>
|
|
138
158
|
*/
|
|
139
159
|
UpdatedAt?: Date;
|
|
@@ -143,6 +163,7 @@ export interface Attachment {
|
|
|
143
163
|
*/
|
|
144
164
|
export interface AcceptAttachmentResponse {
|
|
145
165
|
/**
|
|
166
|
+
* @public
|
|
146
167
|
* <p>The response to the attachment request. </p>
|
|
147
168
|
*/
|
|
148
169
|
Attachment?: Attachment;
|
|
@@ -170,10 +191,12 @@ export declare class ConflictException extends __BaseException {
|
|
|
170
191
|
readonly $fault: "client";
|
|
171
192
|
Message: string | undefined;
|
|
172
193
|
/**
|
|
194
|
+
* @public
|
|
173
195
|
* <p>The ID of the resource.</p>
|
|
174
196
|
*/
|
|
175
197
|
ResourceId: string | undefined;
|
|
176
198
|
/**
|
|
199
|
+
* @public
|
|
177
200
|
* <p>The resource type.</p>
|
|
178
201
|
*/
|
|
179
202
|
ResourceType: string | undefined;
|
|
@@ -191,6 +214,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
191
214
|
readonly $fault: "server";
|
|
192
215
|
Message: string | undefined;
|
|
193
216
|
/**
|
|
217
|
+
* @public
|
|
194
218
|
* <p>Indicates when to retry the request.</p>
|
|
195
219
|
*/
|
|
196
220
|
RetryAfterSeconds?: number;
|
|
@@ -208,14 +232,17 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
208
232
|
readonly $fault: "client";
|
|
209
233
|
Message: string | undefined;
|
|
210
234
|
/**
|
|
235
|
+
* @public
|
|
211
236
|
* <p>The ID of the resource.</p>
|
|
212
237
|
*/
|
|
213
238
|
ResourceId: string | undefined;
|
|
214
239
|
/**
|
|
240
|
+
* @public
|
|
215
241
|
* <p>The resource type.</p>
|
|
216
242
|
*/
|
|
217
243
|
ResourceType: string | undefined;
|
|
218
244
|
/**
|
|
245
|
+
* @public
|
|
219
246
|
* <p>The specified resource could not be found.</p>
|
|
220
247
|
*/
|
|
221
248
|
Context?: Record<string, string>;
|
|
@@ -233,6 +260,7 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
233
260
|
readonly $fault: "client";
|
|
234
261
|
Message: string | undefined;
|
|
235
262
|
/**
|
|
263
|
+
* @public
|
|
236
264
|
* <p>Indicates when to retry the request.</p>
|
|
237
265
|
*/
|
|
238
266
|
RetryAfterSeconds?: number;
|
|
@@ -247,10 +275,12 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
247
275
|
*/
|
|
248
276
|
export interface ValidationExceptionField {
|
|
249
277
|
/**
|
|
278
|
+
* @public
|
|
250
279
|
* <p>The name of the field.</p>
|
|
251
280
|
*/
|
|
252
281
|
Name: string | undefined;
|
|
253
282
|
/**
|
|
283
|
+
* @public
|
|
254
284
|
* <p>The message for the field.</p>
|
|
255
285
|
*/
|
|
256
286
|
Message: string | undefined;
|
|
@@ -278,10 +308,12 @@ export declare class ValidationException extends __BaseException {
|
|
|
278
308
|
readonly $fault: "client";
|
|
279
309
|
Message: string | undefined;
|
|
280
310
|
/**
|
|
311
|
+
* @public
|
|
281
312
|
* <p>The reason for the error.</p>
|
|
282
313
|
*/
|
|
283
314
|
Reason?: ValidationExceptionReason | string;
|
|
284
315
|
/**
|
|
316
|
+
* @public
|
|
285
317
|
* <p>The fields that caused the error, if applicable.</p>
|
|
286
318
|
*/
|
|
287
319
|
Fields?: ValidationExceptionField[];
|
|
@@ -296,10 +328,12 @@ export declare class ValidationException extends __BaseException {
|
|
|
296
328
|
*/
|
|
297
329
|
export interface AccountStatus {
|
|
298
330
|
/**
|
|
331
|
+
* @public
|
|
299
332
|
* <p>The ID of an account within the Amazon Web Services Organization.</p>
|
|
300
333
|
*/
|
|
301
334
|
AccountId?: string;
|
|
302
335
|
/**
|
|
336
|
+
* @public
|
|
303
337
|
* <p>The status of SLR deployment for the account.</p>
|
|
304
338
|
*/
|
|
305
339
|
SLRDeploymentStatus?: string;
|
|
@@ -309,18 +343,22 @@ export interface AccountStatus {
|
|
|
309
343
|
*/
|
|
310
344
|
export interface AssociateConnectPeerRequest {
|
|
311
345
|
/**
|
|
346
|
+
* @public
|
|
312
347
|
* <p>The ID of your global network.</p>
|
|
313
348
|
*/
|
|
314
349
|
GlobalNetworkId: string | undefined;
|
|
315
350
|
/**
|
|
351
|
+
* @public
|
|
316
352
|
* <p>The ID of the Connect peer.</p>
|
|
317
353
|
*/
|
|
318
354
|
ConnectPeerId: string | undefined;
|
|
319
355
|
/**
|
|
356
|
+
* @public
|
|
320
357
|
* <p>The ID of the device.</p>
|
|
321
358
|
*/
|
|
322
359
|
DeviceId: string | undefined;
|
|
323
360
|
/**
|
|
361
|
+
* @public
|
|
324
362
|
* <p>The ID of the link.</p>
|
|
325
363
|
*/
|
|
326
364
|
LinkId?: string;
|
|
@@ -345,22 +383,27 @@ export type ConnectPeerAssociationState = (typeof ConnectPeerAssociationState)[k
|
|
|
345
383
|
*/
|
|
346
384
|
export interface ConnectPeerAssociation {
|
|
347
385
|
/**
|
|
386
|
+
* @public
|
|
348
387
|
* <p>The ID of the Connect peer.</p>
|
|
349
388
|
*/
|
|
350
389
|
ConnectPeerId?: string;
|
|
351
390
|
/**
|
|
391
|
+
* @public
|
|
352
392
|
* <p>The ID of the global network.</p>
|
|
353
393
|
*/
|
|
354
394
|
GlobalNetworkId?: string;
|
|
355
395
|
/**
|
|
396
|
+
* @public
|
|
356
397
|
* <p>The ID of the device to connect to.</p>
|
|
357
398
|
*/
|
|
358
399
|
DeviceId?: string;
|
|
359
400
|
/**
|
|
401
|
+
* @public
|
|
360
402
|
* <p>The ID of the link.</p>
|
|
361
403
|
*/
|
|
362
404
|
LinkId?: string;
|
|
363
405
|
/**
|
|
406
|
+
* @public
|
|
364
407
|
* <p>The state of the Connect peer association.</p>
|
|
365
408
|
*/
|
|
366
409
|
State?: ConnectPeerAssociationState | string;
|
|
@@ -370,6 +413,7 @@ export interface ConnectPeerAssociation {
|
|
|
370
413
|
*/
|
|
371
414
|
export interface AssociateConnectPeerResponse {
|
|
372
415
|
/**
|
|
416
|
+
* @public
|
|
373
417
|
* <p>The response to the Connect peer request.</p>
|
|
374
418
|
*/
|
|
375
419
|
ConnectPeerAssociation?: ConnectPeerAssociation;
|
|
@@ -382,22 +426,27 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
382
426
|
readonly name: "ServiceQuotaExceededException";
|
|
383
427
|
readonly $fault: "client";
|
|
384
428
|
/**
|
|
429
|
+
* @public
|
|
385
430
|
* <p>The error message.</p>
|
|
386
431
|
*/
|
|
387
432
|
Message: string | undefined;
|
|
388
433
|
/**
|
|
434
|
+
* @public
|
|
389
435
|
* <p>The ID of the resource.</p>
|
|
390
436
|
*/
|
|
391
437
|
ResourceId?: string;
|
|
392
438
|
/**
|
|
439
|
+
* @public
|
|
393
440
|
* <p>The resource type.</p>
|
|
394
441
|
*/
|
|
395
442
|
ResourceType?: string;
|
|
396
443
|
/**
|
|
444
|
+
* @public
|
|
397
445
|
* <p>The limit code.</p>
|
|
398
446
|
*/
|
|
399
447
|
LimitCode: string | undefined;
|
|
400
448
|
/**
|
|
449
|
+
* @public
|
|
401
450
|
* <p>The service code.</p>
|
|
402
451
|
*/
|
|
403
452
|
ServiceCode: string | undefined;
|
|
@@ -411,18 +460,22 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
411
460
|
*/
|
|
412
461
|
export interface AssociateCustomerGatewayRequest {
|
|
413
462
|
/**
|
|
463
|
+
* @public
|
|
414
464
|
* <p>The Amazon Resource Name (ARN) of the customer gateway.</p>
|
|
415
465
|
*/
|
|
416
466
|
CustomerGatewayArn: string | undefined;
|
|
417
467
|
/**
|
|
468
|
+
* @public
|
|
418
469
|
* <p>The ID of the global network.</p>
|
|
419
470
|
*/
|
|
420
471
|
GlobalNetworkId: string | undefined;
|
|
421
472
|
/**
|
|
473
|
+
* @public
|
|
422
474
|
* <p>The ID of the device.</p>
|
|
423
475
|
*/
|
|
424
476
|
DeviceId: string | undefined;
|
|
425
477
|
/**
|
|
478
|
+
* @public
|
|
426
479
|
* <p>The ID of the link.</p>
|
|
427
480
|
*/
|
|
428
481
|
LinkId?: string;
|
|
@@ -447,22 +500,27 @@ export type CustomerGatewayAssociationState = (typeof CustomerGatewayAssociation
|
|
|
447
500
|
*/
|
|
448
501
|
export interface CustomerGatewayAssociation {
|
|
449
502
|
/**
|
|
503
|
+
* @public
|
|
450
504
|
* <p>The Amazon Resource Name (ARN) of the customer gateway.</p>
|
|
451
505
|
*/
|
|
452
506
|
CustomerGatewayArn?: string;
|
|
453
507
|
/**
|
|
508
|
+
* @public
|
|
454
509
|
* <p>The ID of the global network.</p>
|
|
455
510
|
*/
|
|
456
511
|
GlobalNetworkId?: string;
|
|
457
512
|
/**
|
|
513
|
+
* @public
|
|
458
514
|
* <p>The ID of the device.</p>
|
|
459
515
|
*/
|
|
460
516
|
DeviceId?: string;
|
|
461
517
|
/**
|
|
518
|
+
* @public
|
|
462
519
|
* <p>The ID of the link.</p>
|
|
463
520
|
*/
|
|
464
521
|
LinkId?: string;
|
|
465
522
|
/**
|
|
523
|
+
* @public
|
|
466
524
|
* <p>The association state.</p>
|
|
467
525
|
*/
|
|
468
526
|
State?: CustomerGatewayAssociationState | string;
|
|
@@ -472,6 +530,7 @@ export interface CustomerGatewayAssociation {
|
|
|
472
530
|
*/
|
|
473
531
|
export interface AssociateCustomerGatewayResponse {
|
|
474
532
|
/**
|
|
533
|
+
* @public
|
|
475
534
|
* <p>The customer gateway association.</p>
|
|
476
535
|
*/
|
|
477
536
|
CustomerGatewayAssociation?: CustomerGatewayAssociation;
|
|
@@ -481,14 +540,17 @@ export interface AssociateCustomerGatewayResponse {
|
|
|
481
540
|
*/
|
|
482
541
|
export interface AssociateLinkRequest {
|
|
483
542
|
/**
|
|
543
|
+
* @public
|
|
484
544
|
* <p>The ID of the global network.</p>
|
|
485
545
|
*/
|
|
486
546
|
GlobalNetworkId: string | undefined;
|
|
487
547
|
/**
|
|
548
|
+
* @public
|
|
488
549
|
* <p>The ID of the device.</p>
|
|
489
550
|
*/
|
|
490
551
|
DeviceId: string | undefined;
|
|
491
552
|
/**
|
|
553
|
+
* @public
|
|
492
554
|
* <p>The ID of the link.</p>
|
|
493
555
|
*/
|
|
494
556
|
LinkId: string | undefined;
|
|
@@ -513,18 +575,22 @@ export type LinkAssociationState = (typeof LinkAssociationState)[keyof typeof Li
|
|
|
513
575
|
*/
|
|
514
576
|
export interface LinkAssociation {
|
|
515
577
|
/**
|
|
578
|
+
* @public
|
|
516
579
|
* <p>The ID of the global network.</p>
|
|
517
580
|
*/
|
|
518
581
|
GlobalNetworkId?: string;
|
|
519
582
|
/**
|
|
583
|
+
* @public
|
|
520
584
|
* <p>The device ID for the link association.</p>
|
|
521
585
|
*/
|
|
522
586
|
DeviceId?: string;
|
|
523
587
|
/**
|
|
588
|
+
* @public
|
|
524
589
|
* <p>The ID of the link.</p>
|
|
525
590
|
*/
|
|
526
591
|
LinkId?: string;
|
|
527
592
|
/**
|
|
593
|
+
* @public
|
|
528
594
|
* <p>The state of the association.</p>
|
|
529
595
|
*/
|
|
530
596
|
LinkAssociationState?: LinkAssociationState | string;
|
|
@@ -534,6 +600,7 @@ export interface LinkAssociation {
|
|
|
534
600
|
*/
|
|
535
601
|
export interface AssociateLinkResponse {
|
|
536
602
|
/**
|
|
603
|
+
* @public
|
|
537
604
|
* <p>The link association.</p>
|
|
538
605
|
*/
|
|
539
606
|
LinkAssociation?: LinkAssociation;
|
|
@@ -543,18 +610,22 @@ export interface AssociateLinkResponse {
|
|
|
543
610
|
*/
|
|
544
611
|
export interface AssociateTransitGatewayConnectPeerRequest {
|
|
545
612
|
/**
|
|
613
|
+
* @public
|
|
546
614
|
* <p>The ID of the global network.</p>
|
|
547
615
|
*/
|
|
548
616
|
GlobalNetworkId: string | undefined;
|
|
549
617
|
/**
|
|
618
|
+
* @public
|
|
550
619
|
* <p>The Amazon Resource Name (ARN) of the Connect peer.</p>
|
|
551
620
|
*/
|
|
552
621
|
TransitGatewayConnectPeerArn: string | undefined;
|
|
553
622
|
/**
|
|
623
|
+
* @public
|
|
554
624
|
* <p>The ID of the device.</p>
|
|
555
625
|
*/
|
|
556
626
|
DeviceId: string | undefined;
|
|
557
627
|
/**
|
|
628
|
+
* @public
|
|
558
629
|
* <p>The ID of the link.</p>
|
|
559
630
|
*/
|
|
560
631
|
LinkId?: string;
|
|
@@ -579,22 +650,27 @@ export type TransitGatewayConnectPeerAssociationState = (typeof TransitGatewayCo
|
|
|
579
650
|
*/
|
|
580
651
|
export interface TransitGatewayConnectPeerAssociation {
|
|
581
652
|
/**
|
|
653
|
+
* @public
|
|
582
654
|
* <p>The Amazon Resource Name (ARN) of the transit gateway Connect peer.</p>
|
|
583
655
|
*/
|
|
584
656
|
TransitGatewayConnectPeerArn?: string;
|
|
585
657
|
/**
|
|
658
|
+
* @public
|
|
586
659
|
* <p>The ID of the global network.</p>
|
|
587
660
|
*/
|
|
588
661
|
GlobalNetworkId?: string;
|
|
589
662
|
/**
|
|
663
|
+
* @public
|
|
590
664
|
* <p>The ID of the device.</p>
|
|
591
665
|
*/
|
|
592
666
|
DeviceId?: string;
|
|
593
667
|
/**
|
|
668
|
+
* @public
|
|
594
669
|
* <p>The ID of the link.</p>
|
|
595
670
|
*/
|
|
596
671
|
LinkId?: string;
|
|
597
672
|
/**
|
|
673
|
+
* @public
|
|
598
674
|
* <p>The state of the association.</p>
|
|
599
675
|
*/
|
|
600
676
|
State?: TransitGatewayConnectPeerAssociationState | string;
|
|
@@ -604,6 +680,7 @@ export interface TransitGatewayConnectPeerAssociation {
|
|
|
604
680
|
*/
|
|
605
681
|
export interface AssociateTransitGatewayConnectPeerResponse {
|
|
606
682
|
/**
|
|
683
|
+
* @public
|
|
607
684
|
* <p>The transit gateway Connect peer association.</p>
|
|
608
685
|
*/
|
|
609
686
|
TransitGatewayConnectPeerAssociation?: TransitGatewayConnectPeerAssociation;
|
|
@@ -614,11 +691,13 @@ export interface AssociateTransitGatewayConnectPeerResponse {
|
|
|
614
691
|
*/
|
|
615
692
|
export interface AWSLocation {
|
|
616
693
|
/**
|
|
694
|
+
* @public
|
|
617
695
|
* <p>The Zone that the device is located in. Specify the ID of an Availability Zone, Local
|
|
618
696
|
* Zone, Wavelength Zone, or an Outpost.</p>
|
|
619
697
|
*/
|
|
620
698
|
Zone?: string;
|
|
621
699
|
/**
|
|
700
|
+
* @public
|
|
622
701
|
* <p>The Amazon Resource Name (ARN) of the subnet that the device is located in.</p>
|
|
623
702
|
*/
|
|
624
703
|
SubnetArn?: string;
|
|
@@ -629,10 +708,12 @@ export interface AWSLocation {
|
|
|
629
708
|
*/
|
|
630
709
|
export interface Bandwidth {
|
|
631
710
|
/**
|
|
711
|
+
* @public
|
|
632
712
|
* <p>Upload speed in Mbps.</p>
|
|
633
713
|
*/
|
|
634
714
|
UploadSpeed?: number;
|
|
635
715
|
/**
|
|
716
|
+
* @public
|
|
636
717
|
* <p>Download speed in Mbps.</p>
|
|
637
718
|
*/
|
|
638
719
|
DownloadSpeed?: number;
|
|
@@ -643,6 +724,7 @@ export interface Bandwidth {
|
|
|
643
724
|
*/
|
|
644
725
|
export interface BgpOptions {
|
|
645
726
|
/**
|
|
727
|
+
* @public
|
|
646
728
|
* <p>The Peer ASN of the BGP.</p>
|
|
647
729
|
*/
|
|
648
730
|
PeerAsn?: number;
|
|
@@ -726,6 +808,7 @@ export type TunnelProtocol = (typeof TunnelProtocol)[keyof typeof TunnelProtocol
|
|
|
726
808
|
*/
|
|
727
809
|
export interface ConnectAttachmentOptions {
|
|
728
810
|
/**
|
|
811
|
+
* @public
|
|
729
812
|
* <p>The protocol used for the attachment connection.</p>
|
|
730
813
|
*/
|
|
731
814
|
Protocol?: TunnelProtocol | string;
|
|
@@ -736,14 +819,17 @@ export interface ConnectAttachmentOptions {
|
|
|
736
819
|
*/
|
|
737
820
|
export interface ConnectAttachment {
|
|
738
821
|
/**
|
|
822
|
+
* @public
|
|
739
823
|
* <p>The attachment details.</p>
|
|
740
824
|
*/
|
|
741
825
|
Attachment?: Attachment;
|
|
742
826
|
/**
|
|
827
|
+
* @public
|
|
743
828
|
* <p>The ID of the transport attachment.</p>
|
|
744
829
|
*/
|
|
745
830
|
TransportAttachmentId?: string;
|
|
746
831
|
/**
|
|
832
|
+
* @public
|
|
747
833
|
* <p>Options for connecting an attachment.</p>
|
|
748
834
|
*/
|
|
749
835
|
Options?: ConnectAttachmentOptions;
|
|
@@ -768,46 +854,57 @@ export type ConnectionState = (typeof ConnectionState)[keyof typeof ConnectionSt
|
|
|
768
854
|
*/
|
|
769
855
|
export interface Connection {
|
|
770
856
|
/**
|
|
857
|
+
* @public
|
|
771
858
|
* <p>The ID of the connection.</p>
|
|
772
859
|
*/
|
|
773
860
|
ConnectionId?: string;
|
|
774
861
|
/**
|
|
862
|
+
* @public
|
|
775
863
|
* <p>The Amazon Resource Name (ARN) of the connection.</p>
|
|
776
864
|
*/
|
|
777
865
|
ConnectionArn?: string;
|
|
778
866
|
/**
|
|
867
|
+
* @public
|
|
779
868
|
* <p>The ID of the global network.</p>
|
|
780
869
|
*/
|
|
781
870
|
GlobalNetworkId?: string;
|
|
782
871
|
/**
|
|
872
|
+
* @public
|
|
783
873
|
* <p>The ID of the first device in the connection.</p>
|
|
784
874
|
*/
|
|
785
875
|
DeviceId?: string;
|
|
786
876
|
/**
|
|
877
|
+
* @public
|
|
787
878
|
* <p>The ID of the second device in the connection.</p>
|
|
788
879
|
*/
|
|
789
880
|
ConnectedDeviceId?: string;
|
|
790
881
|
/**
|
|
882
|
+
* @public
|
|
791
883
|
* <p>The ID of the link for the first device in the connection.</p>
|
|
792
884
|
*/
|
|
793
885
|
LinkId?: string;
|
|
794
886
|
/**
|
|
887
|
+
* @public
|
|
795
888
|
* <p>The ID of the link for the second device in the connection.</p>
|
|
796
889
|
*/
|
|
797
890
|
ConnectedLinkId?: string;
|
|
798
891
|
/**
|
|
892
|
+
* @public
|
|
799
893
|
* <p>The description of the connection.</p>
|
|
800
894
|
*/
|
|
801
895
|
Description?: string;
|
|
802
896
|
/**
|
|
897
|
+
* @public
|
|
803
898
|
* <p>The date and time that the connection was created.</p>
|
|
804
899
|
*/
|
|
805
900
|
CreatedAt?: Date;
|
|
806
901
|
/**
|
|
902
|
+
* @public
|
|
807
903
|
* <p>The state of the connection.</p>
|
|
808
904
|
*/
|
|
809
905
|
State?: ConnectionState | string;
|
|
810
906
|
/**
|
|
907
|
+
* @public
|
|
811
908
|
* <p>The tags for the connection.</p>
|
|
812
909
|
*/
|
|
813
910
|
Tags?: Tag[];
|
|
@@ -842,14 +939,17 @@ export type ConnectionType = (typeof ConnectionType)[keyof typeof ConnectionType
|
|
|
842
939
|
*/
|
|
843
940
|
export interface ConnectionHealth {
|
|
844
941
|
/**
|
|
942
|
+
* @public
|
|
845
943
|
* <p>The connection type.</p>
|
|
846
944
|
*/
|
|
847
945
|
Type?: ConnectionType | string;
|
|
848
946
|
/**
|
|
947
|
+
* @public
|
|
849
948
|
* <p>The connection status.</p>
|
|
850
949
|
*/
|
|
851
950
|
Status?: ConnectionStatus | string;
|
|
852
951
|
/**
|
|
952
|
+
* @public
|
|
853
953
|
* <p>The time the status was last updated.</p>
|
|
854
954
|
*/
|
|
855
955
|
Timestamp?: Date;
|
|
@@ -860,18 +960,22 @@ export interface ConnectionHealth {
|
|
|
860
960
|
*/
|
|
861
961
|
export interface ConnectPeerBgpConfiguration {
|
|
862
962
|
/**
|
|
963
|
+
* @public
|
|
863
964
|
* <p>The ASN of the Coret Network.</p>
|
|
864
965
|
*/
|
|
865
966
|
CoreNetworkAsn?: number;
|
|
866
967
|
/**
|
|
968
|
+
* @public
|
|
867
969
|
* <p>The ASN of the Connect peer.</p>
|
|
868
970
|
*/
|
|
869
971
|
PeerAsn?: number;
|
|
870
972
|
/**
|
|
973
|
+
* @public
|
|
871
974
|
* <p>The address of a core network.</p>
|
|
872
975
|
*/
|
|
873
976
|
CoreNetworkAddress?: string;
|
|
874
977
|
/**
|
|
978
|
+
* @public
|
|
875
979
|
* <p>The address of a core network Connect peer.</p>
|
|
876
980
|
*/
|
|
877
981
|
PeerAddress?: string;
|
|
@@ -882,22 +986,27 @@ export interface ConnectPeerBgpConfiguration {
|
|
|
882
986
|
*/
|
|
883
987
|
export interface ConnectPeerConfiguration {
|
|
884
988
|
/**
|
|
989
|
+
* @public
|
|
885
990
|
* <p>The IP address of a core network.</p>
|
|
886
991
|
*/
|
|
887
992
|
CoreNetworkAddress?: string;
|
|
888
993
|
/**
|
|
994
|
+
* @public
|
|
889
995
|
* <p>The IP address of the Connect peer.</p>
|
|
890
996
|
*/
|
|
891
997
|
PeerAddress?: string;
|
|
892
998
|
/**
|
|
999
|
+
* @public
|
|
893
1000
|
* <p>The inside IP addresses used for a Connect peer configuration.</p>
|
|
894
1001
|
*/
|
|
895
1002
|
InsideCidrBlocks?: string[];
|
|
896
1003
|
/**
|
|
1004
|
+
* @public
|
|
897
1005
|
* <p>The protocol used for a Connect peer configuration.</p>
|
|
898
1006
|
*/
|
|
899
1007
|
Protocol?: TunnelProtocol | string;
|
|
900
1008
|
/**
|
|
1009
|
+
* @public
|
|
901
1010
|
* <p>The Connect peer BGP configurations.</p>
|
|
902
1011
|
*/
|
|
903
1012
|
BgpConfigurations?: ConnectPeerBgpConfiguration[];
|
|
@@ -922,34 +1031,42 @@ export type ConnectPeerState = (typeof ConnectPeerState)[keyof typeof ConnectPee
|
|
|
922
1031
|
*/
|
|
923
1032
|
export interface ConnectPeer {
|
|
924
1033
|
/**
|
|
1034
|
+
* @public
|
|
925
1035
|
* <p>The ID of a core network.</p>
|
|
926
1036
|
*/
|
|
927
1037
|
CoreNetworkId?: string;
|
|
928
1038
|
/**
|
|
1039
|
+
* @public
|
|
929
1040
|
* <p>The ID of the attachment to connect.</p>
|
|
930
1041
|
*/
|
|
931
1042
|
ConnectAttachmentId?: string;
|
|
932
1043
|
/**
|
|
1044
|
+
* @public
|
|
933
1045
|
* <p>The ID of the Connect peer.</p>
|
|
934
1046
|
*/
|
|
935
1047
|
ConnectPeerId?: string;
|
|
936
1048
|
/**
|
|
1049
|
+
* @public
|
|
937
1050
|
* <p>The Connect peer Regions where edges are located.</p>
|
|
938
1051
|
*/
|
|
939
1052
|
EdgeLocation?: string;
|
|
940
1053
|
/**
|
|
1054
|
+
* @public
|
|
941
1055
|
* <p>The state of the Connect peer.</p>
|
|
942
1056
|
*/
|
|
943
1057
|
State?: ConnectPeerState | string;
|
|
944
1058
|
/**
|
|
1059
|
+
* @public
|
|
945
1060
|
* <p>The timestamp when the Connect peer was created.</p>
|
|
946
1061
|
*/
|
|
947
1062
|
CreatedAt?: Date;
|
|
948
1063
|
/**
|
|
1064
|
+
* @public
|
|
949
1065
|
* <p>The configuration of the Connect peer.</p>
|
|
950
1066
|
*/
|
|
951
1067
|
Configuration?: ConnectPeerConfiguration;
|
|
952
1068
|
/**
|
|
1069
|
+
* @public
|
|
953
1070
|
* <p>The list of key-value tags associated with the Connect peer.</p>
|
|
954
1071
|
*/
|
|
955
1072
|
Tags?: Tag[];
|
|
@@ -960,30 +1077,37 @@ export interface ConnectPeer {
|
|
|
960
1077
|
*/
|
|
961
1078
|
export interface ConnectPeerSummary {
|
|
962
1079
|
/**
|
|
1080
|
+
* @public
|
|
963
1081
|
* <p>The ID of a core network.</p>
|
|
964
1082
|
*/
|
|
965
1083
|
CoreNetworkId?: string;
|
|
966
1084
|
/**
|
|
1085
|
+
* @public
|
|
967
1086
|
* <p>The ID of a Connect peer attachment.</p>
|
|
968
1087
|
*/
|
|
969
1088
|
ConnectAttachmentId?: string;
|
|
970
1089
|
/**
|
|
1090
|
+
* @public
|
|
971
1091
|
* <p>The ID of a Connect peer.</p>
|
|
972
1092
|
*/
|
|
973
1093
|
ConnectPeerId?: string;
|
|
974
1094
|
/**
|
|
1095
|
+
* @public
|
|
975
1096
|
* <p>The Region where the edge is located.</p>
|
|
976
1097
|
*/
|
|
977
1098
|
EdgeLocation?: string;
|
|
978
1099
|
/**
|
|
1100
|
+
* @public
|
|
979
1101
|
* <p>The state of a Connect peer.</p>
|
|
980
1102
|
*/
|
|
981
1103
|
ConnectPeerState?: ConnectPeerState | string;
|
|
982
1104
|
/**
|
|
1105
|
+
* @public
|
|
983
1106
|
* <p>The timestamp when a Connect peer was created.</p>
|
|
984
1107
|
*/
|
|
985
1108
|
CreatedAt?: Date;
|
|
986
1109
|
/**
|
|
1110
|
+
* @public
|
|
987
1111
|
* <p>The list of key-value tags associated with the Connect peer summary.</p>
|
|
988
1112
|
*/
|
|
989
1113
|
Tags?: Tag[];
|
|
@@ -994,14 +1118,17 @@ export interface ConnectPeerSummary {
|
|
|
994
1118
|
*/
|
|
995
1119
|
export interface CoreNetworkEdge {
|
|
996
1120
|
/**
|
|
1121
|
+
* @public
|
|
997
1122
|
* <p>The Region where a core network edge is located.</p>
|
|
998
1123
|
*/
|
|
999
1124
|
EdgeLocation?: string;
|
|
1000
1125
|
/**
|
|
1126
|
+
* @public
|
|
1001
1127
|
* <p>The ASN of a core network edge.</p>
|
|
1002
1128
|
*/
|
|
1003
1129
|
Asn?: number;
|
|
1004
1130
|
/**
|
|
1131
|
+
* @public
|
|
1005
1132
|
* <p>The inside IP addresses used for core network edges.</p>
|
|
1006
1133
|
*/
|
|
1007
1134
|
InsideCidrBlocks?: string[];
|
|
@@ -1012,14 +1139,17 @@ export interface CoreNetworkEdge {
|
|
|
1012
1139
|
*/
|
|
1013
1140
|
export interface CoreNetworkSegment {
|
|
1014
1141
|
/**
|
|
1142
|
+
* @public
|
|
1015
1143
|
* <p>The name of a core network segment.</p>
|
|
1016
1144
|
*/
|
|
1017
1145
|
Name?: string;
|
|
1018
1146
|
/**
|
|
1147
|
+
* @public
|
|
1019
1148
|
* <p>The Regions where the edges are located.</p>
|
|
1020
1149
|
*/
|
|
1021
1150
|
EdgeLocations?: string[];
|
|
1022
1151
|
/**
|
|
1152
|
+
* @public
|
|
1023
1153
|
* <p>The shared segments of a core network.</p>
|
|
1024
1154
|
*/
|
|
1025
1155
|
SharedSegments?: string[];
|
|
@@ -1044,38 +1174,47 @@ export type CoreNetworkState = (typeof CoreNetworkState)[keyof typeof CoreNetwor
|
|
|
1044
1174
|
*/
|
|
1045
1175
|
export interface CoreNetwork {
|
|
1046
1176
|
/**
|
|
1177
|
+
* @public
|
|
1047
1178
|
* <p>The ID of the global network that your core network is a part of. </p>
|
|
1048
1179
|
*/
|
|
1049
1180
|
GlobalNetworkId?: string;
|
|
1050
1181
|
/**
|
|
1182
|
+
* @public
|
|
1051
1183
|
* <p>The ID of a core network.</p>
|
|
1052
1184
|
*/
|
|
1053
1185
|
CoreNetworkId?: string;
|
|
1054
1186
|
/**
|
|
1187
|
+
* @public
|
|
1055
1188
|
* <p>The ARN of a core network.</p>
|
|
1056
1189
|
*/
|
|
1057
1190
|
CoreNetworkArn?: string;
|
|
1058
1191
|
/**
|
|
1192
|
+
* @public
|
|
1059
1193
|
* <p>The description of a core network.</p>
|
|
1060
1194
|
*/
|
|
1061
1195
|
Description?: string;
|
|
1062
1196
|
/**
|
|
1197
|
+
* @public
|
|
1063
1198
|
* <p>The timestamp when a core network was created.</p>
|
|
1064
1199
|
*/
|
|
1065
1200
|
CreatedAt?: Date;
|
|
1066
1201
|
/**
|
|
1202
|
+
* @public
|
|
1067
1203
|
* <p>The current state of a core network.</p>
|
|
1068
1204
|
*/
|
|
1069
1205
|
State?: CoreNetworkState | string;
|
|
1070
1206
|
/**
|
|
1207
|
+
* @public
|
|
1071
1208
|
* <p>The segments within a core network.</p>
|
|
1072
1209
|
*/
|
|
1073
1210
|
Segments?: CoreNetworkSegment[];
|
|
1074
1211
|
/**
|
|
1212
|
+
* @public
|
|
1075
1213
|
* <p>The edges within a core network.</p>
|
|
1076
1214
|
*/
|
|
1077
1215
|
Edges?: CoreNetworkEdge[];
|
|
1078
1216
|
/**
|
|
1217
|
+
* @public
|
|
1079
1218
|
* <p>The list of key-value tags associated with a core network.</p>
|
|
1080
1219
|
*/
|
|
1081
1220
|
Tags?: Tag[];
|
|
@@ -1086,30 +1225,37 @@ export interface CoreNetwork {
|
|
|
1086
1225
|
*/
|
|
1087
1226
|
export interface CoreNetworkChangeValues {
|
|
1088
1227
|
/**
|
|
1228
|
+
* @public
|
|
1089
1229
|
* <p>The names of the segments in a core network.</p>
|
|
1090
1230
|
*/
|
|
1091
1231
|
SegmentName?: string;
|
|
1092
1232
|
/**
|
|
1233
|
+
* @public
|
|
1093
1234
|
* <p>The Regions where edges are located in a core network. </p>
|
|
1094
1235
|
*/
|
|
1095
1236
|
EdgeLocations?: string[];
|
|
1096
1237
|
/**
|
|
1238
|
+
* @public
|
|
1097
1239
|
* <p>The ASN of a core network.</p>
|
|
1098
1240
|
*/
|
|
1099
1241
|
Asn?: number;
|
|
1100
1242
|
/**
|
|
1243
|
+
* @public
|
|
1101
1244
|
* <p>The IP addresses used for a core network.</p>
|
|
1102
1245
|
*/
|
|
1103
1246
|
Cidr?: string;
|
|
1104
1247
|
/**
|
|
1248
|
+
* @public
|
|
1105
1249
|
* <p>The ID of the destination.</p>
|
|
1106
1250
|
*/
|
|
1107
1251
|
DestinationIdentifier?: string;
|
|
1108
1252
|
/**
|
|
1253
|
+
* @public
|
|
1109
1254
|
* <p>The inside IP addresses used for core network change values.</p>
|
|
1110
1255
|
*/
|
|
1111
1256
|
InsideCidrBlocks?: string[];
|
|
1112
1257
|
/**
|
|
1258
|
+
* @public
|
|
1113
1259
|
* <p>The shared segments for a core network change value. </p>
|
|
1114
1260
|
*/
|
|
1115
1261
|
SharedSegments?: string[];
|
|
@@ -1120,26 +1266,32 @@ export interface CoreNetworkChangeValues {
|
|
|
1120
1266
|
*/
|
|
1121
1267
|
export interface CoreNetworkChange {
|
|
1122
1268
|
/**
|
|
1269
|
+
* @public
|
|
1123
1270
|
* <p>The type of change.</p>
|
|
1124
1271
|
*/
|
|
1125
1272
|
Type?: ChangeType | string;
|
|
1126
1273
|
/**
|
|
1274
|
+
* @public
|
|
1127
1275
|
* <p>The action to take for a core network.</p>
|
|
1128
1276
|
*/
|
|
1129
1277
|
Action?: ChangeAction | string;
|
|
1130
1278
|
/**
|
|
1279
|
+
* @public
|
|
1131
1280
|
* <p>The resource identifier.</p>
|
|
1132
1281
|
*/
|
|
1133
1282
|
Identifier?: string;
|
|
1134
1283
|
/**
|
|
1284
|
+
* @public
|
|
1135
1285
|
* <p>The previous values for a core network.</p>
|
|
1136
1286
|
*/
|
|
1137
1287
|
PreviousValues?: CoreNetworkChangeValues;
|
|
1138
1288
|
/**
|
|
1289
|
+
* @public
|
|
1139
1290
|
* <p>The new value for a core network</p>
|
|
1140
1291
|
*/
|
|
1141
1292
|
NewValues?: CoreNetworkChangeValues;
|
|
1142
1293
|
/**
|
|
1294
|
+
* @public
|
|
1143
1295
|
* <p>Uniquely identifies the path for a change within the changeset. For example, the <code>IdentifierPath</code> for a core network segment change might be <code>"CORE_NETWORK_SEGMENT/us-east-1/devsegment"</code>.</p>
|
|
1144
1296
|
*/
|
|
1145
1297
|
IdentifierPath?: string;
|
|
@@ -1150,18 +1302,22 @@ export interface CoreNetworkChange {
|
|
|
1150
1302
|
*/
|
|
1151
1303
|
export interface CoreNetworkChangeEventValues {
|
|
1152
1304
|
/**
|
|
1305
|
+
* @public
|
|
1153
1306
|
* <p>The edge location for the core network change event.</p>
|
|
1154
1307
|
*/
|
|
1155
1308
|
EdgeLocation?: string;
|
|
1156
1309
|
/**
|
|
1310
|
+
* @public
|
|
1157
1311
|
* <p>The segment name if the change event is associated with a segment.</p>
|
|
1158
1312
|
*/
|
|
1159
1313
|
SegmentName?: string;
|
|
1160
1314
|
/**
|
|
1315
|
+
* @public
|
|
1161
1316
|
* <p>The ID of the attachment if the change event is associated with an attachment. </p>
|
|
1162
1317
|
*/
|
|
1163
1318
|
AttachmentId?: string;
|
|
1164
1319
|
/**
|
|
1320
|
+
* @public
|
|
1165
1321
|
* <p>For a <code>STATIC_ROUTE</code> event, this is the IP address.</p>
|
|
1166
1322
|
*/
|
|
1167
1323
|
Cidr?: string;
|
|
@@ -1172,26 +1328,32 @@ export interface CoreNetworkChangeEventValues {
|
|
|
1172
1328
|
*/
|
|
1173
1329
|
export interface CoreNetworkChangeEvent {
|
|
1174
1330
|
/**
|
|
1331
|
+
* @public
|
|
1175
1332
|
* <p>Describes the type of change event. </p>
|
|
1176
1333
|
*/
|
|
1177
1334
|
Type?: ChangeType | string;
|
|
1178
1335
|
/**
|
|
1336
|
+
* @public
|
|
1179
1337
|
* <p>The action taken for the change event.</p>
|
|
1180
1338
|
*/
|
|
1181
1339
|
Action?: ChangeAction | string;
|
|
1182
1340
|
/**
|
|
1341
|
+
* @public
|
|
1183
1342
|
* <p>Uniquely identifies the path for a change within the changeset. For example, the <code>IdentifierPath</code> for a core network segment change might be <code>"CORE_NETWORK_SEGMENT/us-east-1/devsegment"</code>.</p>
|
|
1184
1343
|
*/
|
|
1185
1344
|
IdentifierPath?: string;
|
|
1186
1345
|
/**
|
|
1346
|
+
* @public
|
|
1187
1347
|
* <p>The timestamp for an event change in status.</p>
|
|
1188
1348
|
*/
|
|
1189
1349
|
EventTime?: Date;
|
|
1190
1350
|
/**
|
|
1351
|
+
* @public
|
|
1191
1352
|
* <p>The status of the core network change event.</p>
|
|
1192
1353
|
*/
|
|
1193
1354
|
Status?: ChangeStatus | string;
|
|
1194
1355
|
/**
|
|
1356
|
+
* @public
|
|
1195
1357
|
* <p>Details of the change event.</p>
|
|
1196
1358
|
*/
|
|
1197
1359
|
Values?: CoreNetworkChangeEventValues;
|
|
@@ -1214,14 +1376,17 @@ export type CoreNetworkPolicyAlias = (typeof CoreNetworkPolicyAlias)[keyof typeo
|
|
|
1214
1376
|
*/
|
|
1215
1377
|
export interface CoreNetworkPolicyError {
|
|
1216
1378
|
/**
|
|
1379
|
+
* @public
|
|
1217
1380
|
* <p>The error code associated with a core network policy error.</p>
|
|
1218
1381
|
*/
|
|
1219
1382
|
ErrorCode: string | undefined;
|
|
1220
1383
|
/**
|
|
1384
|
+
* @public
|
|
1221
1385
|
* <p>The message associated with a core network policy error code.</p>
|
|
1222
1386
|
*/
|
|
1223
1387
|
Message: string | undefined;
|
|
1224
1388
|
/**
|
|
1389
|
+
* @public
|
|
1225
1390
|
* <p>The JSON path where the error was discovered in the policy document.</p>
|
|
1226
1391
|
*/
|
|
1227
1392
|
Path?: string;
|
|
@@ -1232,34 +1397,42 @@ export interface CoreNetworkPolicyError {
|
|
|
1232
1397
|
*/
|
|
1233
1398
|
export interface CoreNetworkPolicy {
|
|
1234
1399
|
/**
|
|
1400
|
+
* @public
|
|
1235
1401
|
* <p>The ID of a core network.</p>
|
|
1236
1402
|
*/
|
|
1237
1403
|
CoreNetworkId?: string;
|
|
1238
1404
|
/**
|
|
1405
|
+
* @public
|
|
1239
1406
|
* <p>The ID of the policy version.</p>
|
|
1240
1407
|
*/
|
|
1241
1408
|
PolicyVersionId?: number;
|
|
1242
1409
|
/**
|
|
1410
|
+
* @public
|
|
1243
1411
|
* <p>Whether a core network policy is the current LIVE policy or the most recently submitted policy.</p>
|
|
1244
1412
|
*/
|
|
1245
1413
|
Alias?: CoreNetworkPolicyAlias | string;
|
|
1246
1414
|
/**
|
|
1415
|
+
* @public
|
|
1247
1416
|
* <p>The description of a core network policy.</p>
|
|
1248
1417
|
*/
|
|
1249
1418
|
Description?: string;
|
|
1250
1419
|
/**
|
|
1420
|
+
* @public
|
|
1251
1421
|
* <p>The timestamp when a core network policy was created.</p>
|
|
1252
1422
|
*/
|
|
1253
1423
|
CreatedAt?: Date;
|
|
1254
1424
|
/**
|
|
1425
|
+
* @public
|
|
1255
1426
|
* <p>The state of a core network policy.</p>
|
|
1256
1427
|
*/
|
|
1257
1428
|
ChangeSetState?: ChangeSetState | string;
|
|
1258
1429
|
/**
|
|
1430
|
+
* @public
|
|
1259
1431
|
* <p>Describes any errors in a core network policy.</p>
|
|
1260
1432
|
*/
|
|
1261
1433
|
PolicyErrors?: CoreNetworkPolicyError[];
|
|
1262
1434
|
/**
|
|
1435
|
+
* @public
|
|
1263
1436
|
* <p>Describes a core network policy.</p>
|
|
1264
1437
|
*/
|
|
1265
1438
|
PolicyDocument?: __LazyJsonString | string;
|
|
@@ -1273,6 +1446,7 @@ export declare class CoreNetworkPolicyException extends __BaseException {
|
|
|
1273
1446
|
readonly $fault: "client";
|
|
1274
1447
|
Message: string | undefined;
|
|
1275
1448
|
/**
|
|
1449
|
+
* @public
|
|
1276
1450
|
* <p>Describes a core network policy exception.</p>
|
|
1277
1451
|
*/
|
|
1278
1452
|
Errors?: CoreNetworkPolicyError[];
|
|
@@ -1287,26 +1461,32 @@ export declare class CoreNetworkPolicyException extends __BaseException {
|
|
|
1287
1461
|
*/
|
|
1288
1462
|
export interface CoreNetworkPolicyVersion {
|
|
1289
1463
|
/**
|
|
1464
|
+
* @public
|
|
1290
1465
|
* <p>The ID of a core network.</p>
|
|
1291
1466
|
*/
|
|
1292
1467
|
CoreNetworkId?: string;
|
|
1293
1468
|
/**
|
|
1469
|
+
* @public
|
|
1294
1470
|
* <p>The ID of the policy version.</p>
|
|
1295
1471
|
*/
|
|
1296
1472
|
PolicyVersionId?: number;
|
|
1297
1473
|
/**
|
|
1474
|
+
* @public
|
|
1298
1475
|
* <p>Whether a core network policy is the current policy or the most recently submitted policy.</p>
|
|
1299
1476
|
*/
|
|
1300
1477
|
Alias?: CoreNetworkPolicyAlias | string;
|
|
1301
1478
|
/**
|
|
1479
|
+
* @public
|
|
1302
1480
|
* <p>The description of a core network policy version.</p>
|
|
1303
1481
|
*/
|
|
1304
1482
|
Description?: string;
|
|
1305
1483
|
/**
|
|
1484
|
+
* @public
|
|
1306
1485
|
* <p>The timestamp when a core network policy version was created.</p>
|
|
1307
1486
|
*/
|
|
1308
1487
|
CreatedAt?: Date;
|
|
1309
1488
|
/**
|
|
1489
|
+
* @public
|
|
1310
1490
|
* <p>The status of the policy version change set.</p>
|
|
1311
1491
|
*/
|
|
1312
1492
|
ChangeSetState?: ChangeSetState | string;
|
|
@@ -1317,14 +1497,17 @@ export interface CoreNetworkPolicyVersion {
|
|
|
1317
1497
|
*/
|
|
1318
1498
|
export interface CoreNetworkSegmentEdgeIdentifier {
|
|
1319
1499
|
/**
|
|
1500
|
+
* @public
|
|
1320
1501
|
* <p>The ID of a core network.</p>
|
|
1321
1502
|
*/
|
|
1322
1503
|
CoreNetworkId?: string;
|
|
1323
1504
|
/**
|
|
1505
|
+
* @public
|
|
1324
1506
|
* <p>The name of the segment edge.</p>
|
|
1325
1507
|
*/
|
|
1326
1508
|
SegmentName?: string;
|
|
1327
1509
|
/**
|
|
1510
|
+
* @public
|
|
1328
1511
|
* <p>The Region where the segment edge is located.</p>
|
|
1329
1512
|
*/
|
|
1330
1513
|
EdgeLocation?: string;
|
|
@@ -1335,30 +1518,37 @@ export interface CoreNetworkSegmentEdgeIdentifier {
|
|
|
1335
1518
|
*/
|
|
1336
1519
|
export interface CoreNetworkSummary {
|
|
1337
1520
|
/**
|
|
1521
|
+
* @public
|
|
1338
1522
|
* <p>The ID of a core network.</p>
|
|
1339
1523
|
*/
|
|
1340
1524
|
CoreNetworkId?: string;
|
|
1341
1525
|
/**
|
|
1526
|
+
* @public
|
|
1342
1527
|
* <p>a core network ARN.</p>
|
|
1343
1528
|
*/
|
|
1344
1529
|
CoreNetworkArn?: string;
|
|
1345
1530
|
/**
|
|
1531
|
+
* @public
|
|
1346
1532
|
* <p>The global network ID.</p>
|
|
1347
1533
|
*/
|
|
1348
1534
|
GlobalNetworkId?: string;
|
|
1349
1535
|
/**
|
|
1536
|
+
* @public
|
|
1350
1537
|
* <p>The ID of the account owner.</p>
|
|
1351
1538
|
*/
|
|
1352
1539
|
OwnerAccountId?: string;
|
|
1353
1540
|
/**
|
|
1541
|
+
* @public
|
|
1354
1542
|
* <p>The state of a core network.</p>
|
|
1355
1543
|
*/
|
|
1356
1544
|
State?: CoreNetworkState | string;
|
|
1357
1545
|
/**
|
|
1546
|
+
* @public
|
|
1358
1547
|
* <p>The description of a core network.</p>
|
|
1359
1548
|
*/
|
|
1360
1549
|
Description?: string;
|
|
1361
1550
|
/**
|
|
1551
|
+
* @public
|
|
1362
1552
|
* <p>The key-value tags associated with a core network summary.</p>
|
|
1363
1553
|
*/
|
|
1364
1554
|
Tags?: Tag[];
|
|
@@ -1368,26 +1558,32 @@ export interface CoreNetworkSummary {
|
|
|
1368
1558
|
*/
|
|
1369
1559
|
export interface CreateConnectAttachmentRequest {
|
|
1370
1560
|
/**
|
|
1561
|
+
* @public
|
|
1371
1562
|
* <p>The ID of a core network where you want to create the attachment. </p>
|
|
1372
1563
|
*/
|
|
1373
1564
|
CoreNetworkId: string | undefined;
|
|
1374
1565
|
/**
|
|
1566
|
+
* @public
|
|
1375
1567
|
* <p>The Region where the edge is located.</p>
|
|
1376
1568
|
*/
|
|
1377
1569
|
EdgeLocation: string | undefined;
|
|
1378
1570
|
/**
|
|
1571
|
+
* @public
|
|
1379
1572
|
* <p>The ID of the attachment between the two connections.</p>
|
|
1380
1573
|
*/
|
|
1381
1574
|
TransportAttachmentId: string | undefined;
|
|
1382
1575
|
/**
|
|
1576
|
+
* @public
|
|
1383
1577
|
* <p>Options for creating an attachment.</p>
|
|
1384
1578
|
*/
|
|
1385
1579
|
Options: ConnectAttachmentOptions | undefined;
|
|
1386
1580
|
/**
|
|
1581
|
+
* @public
|
|
1387
1582
|
* <p>The list of key-value tags associated with the request.</p>
|
|
1388
1583
|
*/
|
|
1389
1584
|
Tags?: Tag[];
|
|
1390
1585
|
/**
|
|
1586
|
+
* @public
|
|
1391
1587
|
* <p>The client token associated with the request.</p>
|
|
1392
1588
|
*/
|
|
1393
1589
|
ClientToken?: string;
|
|
@@ -1397,6 +1593,7 @@ export interface CreateConnectAttachmentRequest {
|
|
|
1397
1593
|
*/
|
|
1398
1594
|
export interface CreateConnectAttachmentResponse {
|
|
1399
1595
|
/**
|
|
1596
|
+
* @public
|
|
1400
1597
|
* <p>The response to a Connect attachment request.</p>
|
|
1401
1598
|
*/
|
|
1402
1599
|
ConnectAttachment?: ConnectAttachment;
|
|
@@ -1406,31 +1603,38 @@ export interface CreateConnectAttachmentResponse {
|
|
|
1406
1603
|
*/
|
|
1407
1604
|
export interface CreateConnectionRequest {
|
|
1408
1605
|
/**
|
|
1606
|
+
* @public
|
|
1409
1607
|
* <p>The ID of the global network.</p>
|
|
1410
1608
|
*/
|
|
1411
1609
|
GlobalNetworkId: string | undefined;
|
|
1412
1610
|
/**
|
|
1611
|
+
* @public
|
|
1413
1612
|
* <p>The ID of the first device in the connection.</p>
|
|
1414
1613
|
*/
|
|
1415
1614
|
DeviceId: string | undefined;
|
|
1416
1615
|
/**
|
|
1616
|
+
* @public
|
|
1417
1617
|
* <p>The ID of the second device in the connection.</p>
|
|
1418
1618
|
*/
|
|
1419
1619
|
ConnectedDeviceId: string | undefined;
|
|
1420
1620
|
/**
|
|
1621
|
+
* @public
|
|
1421
1622
|
* <p>The ID of the link for the first device.</p>
|
|
1422
1623
|
*/
|
|
1423
1624
|
LinkId?: string;
|
|
1424
1625
|
/**
|
|
1626
|
+
* @public
|
|
1425
1627
|
* <p>The ID of the link for the second device.</p>
|
|
1426
1628
|
*/
|
|
1427
1629
|
ConnectedLinkId?: string;
|
|
1428
1630
|
/**
|
|
1631
|
+
* @public
|
|
1429
1632
|
* <p>A description of the connection.</p>
|
|
1430
1633
|
* <p>Length Constraints: Maximum length of 256 characters.</p>
|
|
1431
1634
|
*/
|
|
1432
1635
|
Description?: string;
|
|
1433
1636
|
/**
|
|
1637
|
+
* @public
|
|
1434
1638
|
* <p>The tags to apply to the resource during creation.</p>
|
|
1435
1639
|
*/
|
|
1436
1640
|
Tags?: Tag[];
|
|
@@ -1440,6 +1644,7 @@ export interface CreateConnectionRequest {
|
|
|
1440
1644
|
*/
|
|
1441
1645
|
export interface CreateConnectionResponse {
|
|
1442
1646
|
/**
|
|
1647
|
+
* @public
|
|
1443
1648
|
* <p>Information about the connection.</p>
|
|
1444
1649
|
*/
|
|
1445
1650
|
Connection?: Connection;
|
|
@@ -1449,30 +1654,37 @@ export interface CreateConnectionResponse {
|
|
|
1449
1654
|
*/
|
|
1450
1655
|
export interface CreateConnectPeerRequest {
|
|
1451
1656
|
/**
|
|
1657
|
+
* @public
|
|
1452
1658
|
* <p>The ID of the connection attachment.</p>
|
|
1453
1659
|
*/
|
|
1454
1660
|
ConnectAttachmentId: string | undefined;
|
|
1455
1661
|
/**
|
|
1662
|
+
* @public
|
|
1456
1663
|
* <p>A Connect peer core network address.</p>
|
|
1457
1664
|
*/
|
|
1458
1665
|
CoreNetworkAddress?: string;
|
|
1459
1666
|
/**
|
|
1667
|
+
* @public
|
|
1460
1668
|
* <p>The Connect peer address.</p>
|
|
1461
1669
|
*/
|
|
1462
1670
|
PeerAddress: string | undefined;
|
|
1463
1671
|
/**
|
|
1672
|
+
* @public
|
|
1464
1673
|
* <p>The Connect peer BGP options.</p>
|
|
1465
1674
|
*/
|
|
1466
1675
|
BgpOptions?: BgpOptions;
|
|
1467
1676
|
/**
|
|
1677
|
+
* @public
|
|
1468
1678
|
* <p>The inside IP addresses used for BGP peering.</p>
|
|
1469
1679
|
*/
|
|
1470
1680
|
InsideCidrBlocks: string[] | undefined;
|
|
1471
1681
|
/**
|
|
1682
|
+
* @public
|
|
1472
1683
|
* <p>The tags associated with the peer request.</p>
|
|
1473
1684
|
*/
|
|
1474
1685
|
Tags?: Tag[];
|
|
1475
1686
|
/**
|
|
1687
|
+
* @public
|
|
1476
1688
|
* <p>The client token associated with the request.</p>
|
|
1477
1689
|
*/
|
|
1478
1690
|
ClientToken?: string;
|
|
@@ -1482,6 +1694,7 @@ export interface CreateConnectPeerRequest {
|
|
|
1482
1694
|
*/
|
|
1483
1695
|
export interface CreateConnectPeerResponse {
|
|
1484
1696
|
/**
|
|
1697
|
+
* @public
|
|
1485
1698
|
* <p>The response to the request.</p>
|
|
1486
1699
|
*/
|
|
1487
1700
|
ConnectPeer?: ConnectPeer;
|
|
@@ -1491,22 +1704,27 @@ export interface CreateConnectPeerResponse {
|
|
|
1491
1704
|
*/
|
|
1492
1705
|
export interface CreateCoreNetworkRequest {
|
|
1493
1706
|
/**
|
|
1707
|
+
* @public
|
|
1494
1708
|
* <p>The ID of the global network that a core network will be a part of. </p>
|
|
1495
1709
|
*/
|
|
1496
1710
|
GlobalNetworkId: string | undefined;
|
|
1497
1711
|
/**
|
|
1712
|
+
* @public
|
|
1498
1713
|
* <p>The description of a core network.</p>
|
|
1499
1714
|
*/
|
|
1500
1715
|
Description?: string;
|
|
1501
1716
|
/**
|
|
1717
|
+
* @public
|
|
1502
1718
|
* <p>Key-value tags associated with a core network request.</p>
|
|
1503
1719
|
*/
|
|
1504
1720
|
Tags?: Tag[];
|
|
1505
1721
|
/**
|
|
1722
|
+
* @public
|
|
1506
1723
|
* <p>The policy document for creating a core network.</p>
|
|
1507
1724
|
*/
|
|
1508
1725
|
PolicyDocument?: string;
|
|
1509
1726
|
/**
|
|
1727
|
+
* @public
|
|
1510
1728
|
* <p>The client token associated with a core network request.</p>
|
|
1511
1729
|
*/
|
|
1512
1730
|
ClientToken?: string;
|
|
@@ -1516,6 +1734,7 @@ export interface CreateCoreNetworkRequest {
|
|
|
1516
1734
|
*/
|
|
1517
1735
|
export interface CreateCoreNetworkResponse {
|
|
1518
1736
|
/**
|
|
1737
|
+
* @public
|
|
1519
1738
|
* <p>Returns details about a core network.</p>
|
|
1520
1739
|
*/
|
|
1521
1740
|
CoreNetwork?: CoreNetwork;
|
|
@@ -1526,14 +1745,17 @@ export interface CreateCoreNetworkResponse {
|
|
|
1526
1745
|
*/
|
|
1527
1746
|
export interface Location {
|
|
1528
1747
|
/**
|
|
1748
|
+
* @public
|
|
1529
1749
|
* <p>The physical address.</p>
|
|
1530
1750
|
*/
|
|
1531
1751
|
Address?: string;
|
|
1532
1752
|
/**
|
|
1753
|
+
* @public
|
|
1533
1754
|
* <p>The latitude.</p>
|
|
1534
1755
|
*/
|
|
1535
1756
|
Latitude?: string;
|
|
1536
1757
|
/**
|
|
1758
|
+
* @public
|
|
1537
1759
|
* <p>The longitude.</p>
|
|
1538
1760
|
*/
|
|
1539
1761
|
Longitude?: string;
|
|
@@ -1543,46 +1765,56 @@ export interface Location {
|
|
|
1543
1765
|
*/
|
|
1544
1766
|
export interface CreateDeviceRequest {
|
|
1545
1767
|
/**
|
|
1768
|
+
* @public
|
|
1546
1769
|
* <p>The ID of the global network.</p>
|
|
1547
1770
|
*/
|
|
1548
1771
|
GlobalNetworkId: string | undefined;
|
|
1549
1772
|
/**
|
|
1773
|
+
* @public
|
|
1550
1774
|
* <p>The Amazon Web Services location of the device, if applicable. For an on-premises device, you can omit this parameter.</p>
|
|
1551
1775
|
*/
|
|
1552
1776
|
AWSLocation?: AWSLocation;
|
|
1553
1777
|
/**
|
|
1778
|
+
* @public
|
|
1554
1779
|
* <p>A description of the device.</p>
|
|
1555
1780
|
* <p>Constraints: Maximum length of 256 characters.</p>
|
|
1556
1781
|
*/
|
|
1557
1782
|
Description?: string;
|
|
1558
1783
|
/**
|
|
1784
|
+
* @public
|
|
1559
1785
|
* <p>The type of the device.</p>
|
|
1560
1786
|
*/
|
|
1561
1787
|
Type?: string;
|
|
1562
1788
|
/**
|
|
1789
|
+
* @public
|
|
1563
1790
|
* <p>The vendor of the device.</p>
|
|
1564
1791
|
* <p>Constraints: Maximum length of 128 characters.</p>
|
|
1565
1792
|
*/
|
|
1566
1793
|
Vendor?: string;
|
|
1567
1794
|
/**
|
|
1795
|
+
* @public
|
|
1568
1796
|
* <p>The model of the device.</p>
|
|
1569
1797
|
* <p>Constraints: Maximum length of 128 characters.</p>
|
|
1570
1798
|
*/
|
|
1571
1799
|
Model?: string;
|
|
1572
1800
|
/**
|
|
1801
|
+
* @public
|
|
1573
1802
|
* <p>The serial number of the device.</p>
|
|
1574
1803
|
* <p>Constraints: Maximum length of 128 characters.</p>
|
|
1575
1804
|
*/
|
|
1576
1805
|
SerialNumber?: string;
|
|
1577
1806
|
/**
|
|
1807
|
+
* @public
|
|
1578
1808
|
* <p>The location of the device.</p>
|
|
1579
1809
|
*/
|
|
1580
1810
|
Location?: Location;
|
|
1581
1811
|
/**
|
|
1812
|
+
* @public
|
|
1582
1813
|
* <p>The ID of the site.</p>
|
|
1583
1814
|
*/
|
|
1584
1815
|
SiteId?: string;
|
|
1585
1816
|
/**
|
|
1817
|
+
* @public
|
|
1586
1818
|
* <p>The tags to apply to the resource during creation.</p>
|
|
1587
1819
|
*/
|
|
1588
1820
|
Tags?: Tag[];
|
|
@@ -1607,58 +1839,72 @@ export type DeviceState = (typeof DeviceState)[keyof typeof DeviceState];
|
|
|
1607
1839
|
*/
|
|
1608
1840
|
export interface Device {
|
|
1609
1841
|
/**
|
|
1842
|
+
* @public
|
|
1610
1843
|
* <p>The ID of the device.</p>
|
|
1611
1844
|
*/
|
|
1612
1845
|
DeviceId?: string;
|
|
1613
1846
|
/**
|
|
1847
|
+
* @public
|
|
1614
1848
|
* <p>The Amazon Resource Name (ARN) of the device.</p>
|
|
1615
1849
|
*/
|
|
1616
1850
|
DeviceArn?: string;
|
|
1617
1851
|
/**
|
|
1852
|
+
* @public
|
|
1618
1853
|
* <p>The ID of the global network.</p>
|
|
1619
1854
|
*/
|
|
1620
1855
|
GlobalNetworkId?: string;
|
|
1621
1856
|
/**
|
|
1857
|
+
* @public
|
|
1622
1858
|
* <p>The Amazon Web Services location of the device.</p>
|
|
1623
1859
|
*/
|
|
1624
1860
|
AWSLocation?: AWSLocation;
|
|
1625
1861
|
/**
|
|
1862
|
+
* @public
|
|
1626
1863
|
* <p>The description of the device.</p>
|
|
1627
1864
|
*/
|
|
1628
1865
|
Description?: string;
|
|
1629
1866
|
/**
|
|
1867
|
+
* @public
|
|
1630
1868
|
* <p>The device type.</p>
|
|
1631
1869
|
*/
|
|
1632
1870
|
Type?: string;
|
|
1633
1871
|
/**
|
|
1872
|
+
* @public
|
|
1634
1873
|
* <p>The device vendor.</p>
|
|
1635
1874
|
*/
|
|
1636
1875
|
Vendor?: string;
|
|
1637
1876
|
/**
|
|
1877
|
+
* @public
|
|
1638
1878
|
* <p>The device model.</p>
|
|
1639
1879
|
*/
|
|
1640
1880
|
Model?: string;
|
|
1641
1881
|
/**
|
|
1882
|
+
* @public
|
|
1642
1883
|
* <p>The device serial number.</p>
|
|
1643
1884
|
*/
|
|
1644
1885
|
SerialNumber?: string;
|
|
1645
1886
|
/**
|
|
1887
|
+
* @public
|
|
1646
1888
|
* <p>The site location.</p>
|
|
1647
1889
|
*/
|
|
1648
1890
|
Location?: Location;
|
|
1649
1891
|
/**
|
|
1892
|
+
* @public
|
|
1650
1893
|
* <p>The site ID.</p>
|
|
1651
1894
|
*/
|
|
1652
1895
|
SiteId?: string;
|
|
1653
1896
|
/**
|
|
1897
|
+
* @public
|
|
1654
1898
|
* <p>The date and time that the site was created.</p>
|
|
1655
1899
|
*/
|
|
1656
1900
|
CreatedAt?: Date;
|
|
1657
1901
|
/**
|
|
1902
|
+
* @public
|
|
1658
1903
|
* <p>The device state.</p>
|
|
1659
1904
|
*/
|
|
1660
1905
|
State?: DeviceState | string;
|
|
1661
1906
|
/**
|
|
1907
|
+
* @public
|
|
1662
1908
|
* <p>The tags for the device.</p>
|
|
1663
1909
|
*/
|
|
1664
1910
|
Tags?: Tag[];
|
|
@@ -1668,6 +1914,7 @@ export interface Device {
|
|
|
1668
1914
|
*/
|
|
1669
1915
|
export interface CreateDeviceResponse {
|
|
1670
1916
|
/**
|
|
1917
|
+
* @public
|
|
1671
1918
|
* <p>Information about the device.</p>
|
|
1672
1919
|
*/
|
|
1673
1920
|
Device?: Device;
|
|
@@ -1677,11 +1924,13 @@ export interface CreateDeviceResponse {
|
|
|
1677
1924
|
*/
|
|
1678
1925
|
export interface CreateGlobalNetworkRequest {
|
|
1679
1926
|
/**
|
|
1927
|
+
* @public
|
|
1680
1928
|
* <p>A description of the global network.</p>
|
|
1681
1929
|
* <p>Constraints: Maximum length of 256 characters.</p>
|
|
1682
1930
|
*/
|
|
1683
1931
|
Description?: string;
|
|
1684
1932
|
/**
|
|
1933
|
+
* @public
|
|
1685
1934
|
* <p>The tags to apply to the resource during creation.</p>
|
|
1686
1935
|
*/
|
|
1687
1936
|
Tags?: Tag[];
|
|
@@ -1706,26 +1955,32 @@ export type GlobalNetworkState = (typeof GlobalNetworkState)[keyof typeof Global
|
|
|
1706
1955
|
*/
|
|
1707
1956
|
export interface GlobalNetwork {
|
|
1708
1957
|
/**
|
|
1958
|
+
* @public
|
|
1709
1959
|
* <p>The ID of the global network.</p>
|
|
1710
1960
|
*/
|
|
1711
1961
|
GlobalNetworkId?: string;
|
|
1712
1962
|
/**
|
|
1963
|
+
* @public
|
|
1713
1964
|
* <p>The Amazon Resource Name (ARN) of the global network.</p>
|
|
1714
1965
|
*/
|
|
1715
1966
|
GlobalNetworkArn?: string;
|
|
1716
1967
|
/**
|
|
1968
|
+
* @public
|
|
1717
1969
|
* <p>The description of the global network.</p>
|
|
1718
1970
|
*/
|
|
1719
1971
|
Description?: string;
|
|
1720
1972
|
/**
|
|
1973
|
+
* @public
|
|
1721
1974
|
* <p>The date and time that the global network was created.</p>
|
|
1722
1975
|
*/
|
|
1723
1976
|
CreatedAt?: Date;
|
|
1724
1977
|
/**
|
|
1978
|
+
* @public
|
|
1725
1979
|
* <p>The state of the global network.</p>
|
|
1726
1980
|
*/
|
|
1727
1981
|
State?: GlobalNetworkState | string;
|
|
1728
1982
|
/**
|
|
1983
|
+
* @public
|
|
1729
1984
|
* <p>The tags for the global network.</p>
|
|
1730
1985
|
*/
|
|
1731
1986
|
Tags?: Tag[];
|
|
@@ -1735,6 +1990,7 @@ export interface GlobalNetwork {
|
|
|
1735
1990
|
*/
|
|
1736
1991
|
export interface CreateGlobalNetworkResponse {
|
|
1737
1992
|
/**
|
|
1993
|
+
* @public
|
|
1738
1994
|
* <p>Information about the global network object.</p>
|
|
1739
1995
|
*/
|
|
1740
1996
|
GlobalNetwork?: GlobalNetwork;
|
|
@@ -1744,33 +2000,40 @@ export interface CreateGlobalNetworkResponse {
|
|
|
1744
2000
|
*/
|
|
1745
2001
|
export interface CreateLinkRequest {
|
|
1746
2002
|
/**
|
|
2003
|
+
* @public
|
|
1747
2004
|
* <p>The ID of the global network.</p>
|
|
1748
2005
|
*/
|
|
1749
2006
|
GlobalNetworkId: string | undefined;
|
|
1750
2007
|
/**
|
|
2008
|
+
* @public
|
|
1751
2009
|
* <p>A description of the link.</p>
|
|
1752
2010
|
* <p>Constraints: Maximum length of 256 characters.</p>
|
|
1753
2011
|
*/
|
|
1754
2012
|
Description?: string;
|
|
1755
2013
|
/**
|
|
2014
|
+
* @public
|
|
1756
2015
|
* <p>The type of the link.</p>
|
|
1757
2016
|
* <p>Constraints: Maximum length of 128 characters. Cannot include the following characters: | \ ^</p>
|
|
1758
2017
|
*/
|
|
1759
2018
|
Type?: string;
|
|
1760
2019
|
/**
|
|
2020
|
+
* @public
|
|
1761
2021
|
* <p> The upload speed and download speed in Mbps. </p>
|
|
1762
2022
|
*/
|
|
1763
2023
|
Bandwidth: Bandwidth | undefined;
|
|
1764
2024
|
/**
|
|
2025
|
+
* @public
|
|
1765
2026
|
* <p>The provider of the link.</p>
|
|
1766
2027
|
* <p>Constraints: Maximum length of 128 characters. Cannot include the following characters: | \ ^</p>
|
|
1767
2028
|
*/
|
|
1768
2029
|
Provider?: string;
|
|
1769
2030
|
/**
|
|
2031
|
+
* @public
|
|
1770
2032
|
* <p>The ID of the site.</p>
|
|
1771
2033
|
*/
|
|
1772
2034
|
SiteId: string | undefined;
|
|
1773
2035
|
/**
|
|
2036
|
+
* @public
|
|
1774
2037
|
* <p>The tags to apply to the resource during creation.</p>
|
|
1775
2038
|
*/
|
|
1776
2039
|
Tags?: Tag[];
|
|
@@ -1795,46 +2058,57 @@ export type LinkState = (typeof LinkState)[keyof typeof LinkState];
|
|
|
1795
2058
|
*/
|
|
1796
2059
|
export interface Link {
|
|
1797
2060
|
/**
|
|
2061
|
+
* @public
|
|
1798
2062
|
* <p>The ID of the link.</p>
|
|
1799
2063
|
*/
|
|
1800
2064
|
LinkId?: string;
|
|
1801
2065
|
/**
|
|
2066
|
+
* @public
|
|
1802
2067
|
* <p>The Amazon Resource Name (ARN) of the link.</p>
|
|
1803
2068
|
*/
|
|
1804
2069
|
LinkArn?: string;
|
|
1805
2070
|
/**
|
|
2071
|
+
* @public
|
|
1806
2072
|
* <p>The ID of the global network.</p>
|
|
1807
2073
|
*/
|
|
1808
2074
|
GlobalNetworkId?: string;
|
|
1809
2075
|
/**
|
|
2076
|
+
* @public
|
|
1810
2077
|
* <p>The ID of the site.</p>
|
|
1811
2078
|
*/
|
|
1812
2079
|
SiteId?: string;
|
|
1813
2080
|
/**
|
|
2081
|
+
* @public
|
|
1814
2082
|
* <p>The description of the link.</p>
|
|
1815
2083
|
*/
|
|
1816
2084
|
Description?: string;
|
|
1817
2085
|
/**
|
|
2086
|
+
* @public
|
|
1818
2087
|
* <p>The type of the link.</p>
|
|
1819
2088
|
*/
|
|
1820
2089
|
Type?: string;
|
|
1821
2090
|
/**
|
|
2091
|
+
* @public
|
|
1822
2092
|
* <p>The bandwidth for the link.</p>
|
|
1823
2093
|
*/
|
|
1824
2094
|
Bandwidth?: Bandwidth;
|
|
1825
2095
|
/**
|
|
2096
|
+
* @public
|
|
1826
2097
|
* <p>The provider of the link.</p>
|
|
1827
2098
|
*/
|
|
1828
2099
|
Provider?: string;
|
|
1829
2100
|
/**
|
|
2101
|
+
* @public
|
|
1830
2102
|
* <p>The date and time that the link was created.</p>
|
|
1831
2103
|
*/
|
|
1832
2104
|
CreatedAt?: Date;
|
|
1833
2105
|
/**
|
|
2106
|
+
* @public
|
|
1834
2107
|
* <p>The state of the link.</p>
|
|
1835
2108
|
*/
|
|
1836
2109
|
State?: LinkState | string;
|
|
1837
2110
|
/**
|
|
2111
|
+
* @public
|
|
1838
2112
|
* <p>The tags for the link.</p>
|
|
1839
2113
|
*/
|
|
1840
2114
|
Tags?: Tag[];
|
|
@@ -1844,6 +2118,7 @@ export interface Link {
|
|
|
1844
2118
|
*/
|
|
1845
2119
|
export interface CreateLinkResponse {
|
|
1846
2120
|
/**
|
|
2121
|
+
* @public
|
|
1847
2122
|
* <p>Information about the link.</p>
|
|
1848
2123
|
*/
|
|
1849
2124
|
Link?: Link;
|
|
@@ -1853,15 +2128,18 @@ export interface CreateLinkResponse {
|
|
|
1853
2128
|
*/
|
|
1854
2129
|
export interface CreateSiteRequest {
|
|
1855
2130
|
/**
|
|
2131
|
+
* @public
|
|
1856
2132
|
* <p>The ID of the global network.</p>
|
|
1857
2133
|
*/
|
|
1858
2134
|
GlobalNetworkId: string | undefined;
|
|
1859
2135
|
/**
|
|
2136
|
+
* @public
|
|
1860
2137
|
* <p>A description of your site.</p>
|
|
1861
2138
|
* <p>Constraints: Maximum length of 256 characters.</p>
|
|
1862
2139
|
*/
|
|
1863
2140
|
Description?: string;
|
|
1864
2141
|
/**
|
|
2142
|
+
* @public
|
|
1865
2143
|
* <p>The site location. This information is used for visualization in the Network Manager console. If you specify the address, the latitude and longitude are automatically calculated.</p>
|
|
1866
2144
|
* <ul>
|
|
1867
2145
|
* <li>
|
|
@@ -1880,6 +2158,7 @@ export interface CreateSiteRequest {
|
|
|
1880
2158
|
*/
|
|
1881
2159
|
Location?: Location;
|
|
1882
2160
|
/**
|
|
2161
|
+
* @public
|
|
1883
2162
|
* <p>The tags to apply to the resource during creation.</p>
|
|
1884
2163
|
*/
|
|
1885
2164
|
Tags?: Tag[];
|
|
@@ -1904,34 +2183,42 @@ export type SiteState = (typeof SiteState)[keyof typeof SiteState];
|
|
|
1904
2183
|
*/
|
|
1905
2184
|
export interface Site {
|
|
1906
2185
|
/**
|
|
2186
|
+
* @public
|
|
1907
2187
|
* <p>The ID of the site.</p>
|
|
1908
2188
|
*/
|
|
1909
2189
|
SiteId?: string;
|
|
1910
2190
|
/**
|
|
2191
|
+
* @public
|
|
1911
2192
|
* <p>The Amazon Resource Name (ARN) of the site.</p>
|
|
1912
2193
|
*/
|
|
1913
2194
|
SiteArn?: string;
|
|
1914
2195
|
/**
|
|
2196
|
+
* @public
|
|
1915
2197
|
* <p>The ID of the global network.</p>
|
|
1916
2198
|
*/
|
|
1917
2199
|
GlobalNetworkId?: string;
|
|
1918
2200
|
/**
|
|
2201
|
+
* @public
|
|
1919
2202
|
* <p>The description of the site.</p>
|
|
1920
2203
|
*/
|
|
1921
2204
|
Description?: string;
|
|
1922
2205
|
/**
|
|
2206
|
+
* @public
|
|
1923
2207
|
* <p>The location of the site.</p>
|
|
1924
2208
|
*/
|
|
1925
2209
|
Location?: Location;
|
|
1926
2210
|
/**
|
|
2211
|
+
* @public
|
|
1927
2212
|
* <p>The date and time that the site was created.</p>
|
|
1928
2213
|
*/
|
|
1929
2214
|
CreatedAt?: Date;
|
|
1930
2215
|
/**
|
|
2216
|
+
* @public
|
|
1931
2217
|
* <p>The state of the site.</p>
|
|
1932
2218
|
*/
|
|
1933
2219
|
State?: SiteState | string;
|
|
1934
2220
|
/**
|
|
2221
|
+
* @public
|
|
1935
2222
|
* <p>The tags for the site.</p>
|
|
1936
2223
|
*/
|
|
1937
2224
|
Tags?: Tag[];
|
|
@@ -1941,6 +2228,7 @@ export interface Site {
|
|
|
1941
2228
|
*/
|
|
1942
2229
|
export interface CreateSiteResponse {
|
|
1943
2230
|
/**
|
|
2231
|
+
* @public
|
|
1944
2232
|
* <p>Information about the site.</p>
|
|
1945
2233
|
*/
|
|
1946
2234
|
Site?: Site;
|
|
@@ -1950,18 +2238,22 @@ export interface CreateSiteResponse {
|
|
|
1950
2238
|
*/
|
|
1951
2239
|
export interface CreateSiteToSiteVpnAttachmentRequest {
|
|
1952
2240
|
/**
|
|
2241
|
+
* @public
|
|
1953
2242
|
* <p>The ID of a core network where you're creating a site-to-site VPN attachment.</p>
|
|
1954
2243
|
*/
|
|
1955
2244
|
CoreNetworkId: string | undefined;
|
|
1956
2245
|
/**
|
|
2246
|
+
* @public
|
|
1957
2247
|
* <p>The ARN identifying the VPN attachment.</p>
|
|
1958
2248
|
*/
|
|
1959
2249
|
VpnConnectionArn: string | undefined;
|
|
1960
2250
|
/**
|
|
2251
|
+
* @public
|
|
1961
2252
|
* <p>The tags associated with the request.</p>
|
|
1962
2253
|
*/
|
|
1963
2254
|
Tags?: Tag[];
|
|
1964
2255
|
/**
|
|
2256
|
+
* @public
|
|
1965
2257
|
* <p>The client token associated with the request.</p>
|
|
1966
2258
|
*/
|
|
1967
2259
|
ClientToken?: string;
|
|
@@ -1972,10 +2264,12 @@ export interface CreateSiteToSiteVpnAttachmentRequest {
|
|
|
1972
2264
|
*/
|
|
1973
2265
|
export interface SiteToSiteVpnAttachment {
|
|
1974
2266
|
/**
|
|
2267
|
+
* @public
|
|
1975
2268
|
* <p>Provides details about a site-to-site VPN attachment.</p>
|
|
1976
2269
|
*/
|
|
1977
2270
|
Attachment?: Attachment;
|
|
1978
2271
|
/**
|
|
2272
|
+
* @public
|
|
1979
2273
|
* <p>The ARN of the site-to-site VPN attachment. </p>
|
|
1980
2274
|
*/
|
|
1981
2275
|
VpnConnectionArn?: string;
|
|
@@ -1985,6 +2279,7 @@ export interface SiteToSiteVpnAttachment {
|
|
|
1985
2279
|
*/
|
|
1986
2280
|
export interface CreateSiteToSiteVpnAttachmentResponse {
|
|
1987
2281
|
/**
|
|
2282
|
+
* @public
|
|
1988
2283
|
* <p>Details about a site-to-site VPN attachment.</p>
|
|
1989
2284
|
*/
|
|
1990
2285
|
SiteToSiteVpnAttachment?: SiteToSiteVpnAttachment;
|
|
@@ -1994,18 +2289,22 @@ export interface CreateSiteToSiteVpnAttachmentResponse {
|
|
|
1994
2289
|
*/
|
|
1995
2290
|
export interface CreateTransitGatewayPeeringRequest {
|
|
1996
2291
|
/**
|
|
2292
|
+
* @public
|
|
1997
2293
|
* <p>The ID of a core network.</p>
|
|
1998
2294
|
*/
|
|
1999
2295
|
CoreNetworkId: string | undefined;
|
|
2000
2296
|
/**
|
|
2297
|
+
* @public
|
|
2001
2298
|
* <p>The ARN of the transit gateway for the peering request.</p>
|
|
2002
2299
|
*/
|
|
2003
2300
|
TransitGatewayArn: string | undefined;
|
|
2004
2301
|
/**
|
|
2302
|
+
* @public
|
|
2005
2303
|
* <p>The list of key-value tags associated with the request.</p>
|
|
2006
2304
|
*/
|
|
2007
2305
|
Tags?: Tag[];
|
|
2008
2306
|
/**
|
|
2307
|
+
* @public
|
|
2009
2308
|
* <p>The client token associated with the request.</p>
|
|
2010
2309
|
*/
|
|
2011
2310
|
ClientToken?: string;
|
|
@@ -2041,42 +2340,52 @@ export type PeeringState = (typeof PeeringState)[keyof typeof PeeringState];
|
|
|
2041
2340
|
*/
|
|
2042
2341
|
export interface Peering {
|
|
2043
2342
|
/**
|
|
2343
|
+
* @public
|
|
2044
2344
|
* <p>The ID of the core network for the peering request.</p>
|
|
2045
2345
|
*/
|
|
2046
2346
|
CoreNetworkId?: string;
|
|
2047
2347
|
/**
|
|
2348
|
+
* @public
|
|
2048
2349
|
* <p>The ARN of a core network.</p>
|
|
2049
2350
|
*/
|
|
2050
2351
|
CoreNetworkArn?: string;
|
|
2051
2352
|
/**
|
|
2353
|
+
* @public
|
|
2052
2354
|
* <p>The ID of the peering attachment. </p>
|
|
2053
2355
|
*/
|
|
2054
2356
|
PeeringId?: string;
|
|
2055
2357
|
/**
|
|
2358
|
+
* @public
|
|
2056
2359
|
* <p>The ID of the account owner.</p>
|
|
2057
2360
|
*/
|
|
2058
2361
|
OwnerAccountId?: string;
|
|
2059
2362
|
/**
|
|
2363
|
+
* @public
|
|
2060
2364
|
* <p>The type of peering. This will be <code>TRANSIT_GATEWAY</code>.</p>
|
|
2061
2365
|
*/
|
|
2062
2366
|
PeeringType?: PeeringType | string;
|
|
2063
2367
|
/**
|
|
2368
|
+
* @public
|
|
2064
2369
|
* <p>The current state of the peering connection. </p>
|
|
2065
2370
|
*/
|
|
2066
2371
|
State?: PeeringState | string;
|
|
2067
2372
|
/**
|
|
2373
|
+
* @public
|
|
2068
2374
|
* <p>The edge location for the peer.</p>
|
|
2069
2375
|
*/
|
|
2070
2376
|
EdgeLocation?: string;
|
|
2071
2377
|
/**
|
|
2378
|
+
* @public
|
|
2072
2379
|
* <p>The resource ARN of the peer.</p>
|
|
2073
2380
|
*/
|
|
2074
2381
|
ResourceArn?: string;
|
|
2075
2382
|
/**
|
|
2383
|
+
* @public
|
|
2076
2384
|
* <p>The list of key-value tags associated with the peering.</p>
|
|
2077
2385
|
*/
|
|
2078
2386
|
Tags?: Tag[];
|
|
2079
2387
|
/**
|
|
2388
|
+
* @public
|
|
2080
2389
|
* <p>The timestamp when the attachment peer was created.</p>
|
|
2081
2390
|
*/
|
|
2082
2391
|
CreatedAt?: Date;
|
|
@@ -2087,14 +2396,17 @@ export interface Peering {
|
|
|
2087
2396
|
*/
|
|
2088
2397
|
export interface TransitGatewayPeering {
|
|
2089
2398
|
/**
|
|
2399
|
+
* @public
|
|
2090
2400
|
* <p>Describes a transit gateway peer connection.</p>
|
|
2091
2401
|
*/
|
|
2092
2402
|
Peering?: Peering;
|
|
2093
2403
|
/**
|
|
2404
|
+
* @public
|
|
2094
2405
|
* <p>The ARN of the transit gateway.</p>
|
|
2095
2406
|
*/
|
|
2096
2407
|
TransitGatewayArn?: string;
|
|
2097
2408
|
/**
|
|
2409
|
+
* @public
|
|
2098
2410
|
* <p>The ID of the transit gateway peering attachment.</p>
|
|
2099
2411
|
*/
|
|
2100
2412
|
TransitGatewayPeeringAttachmentId?: string;
|
|
@@ -2104,6 +2416,7 @@ export interface TransitGatewayPeering {
|
|
|
2104
2416
|
*/
|
|
2105
2417
|
export interface CreateTransitGatewayPeeringResponse {
|
|
2106
2418
|
/**
|
|
2419
|
+
* @public
|
|
2107
2420
|
* <p>Returns information about the transit gateway peering connection request.</p>
|
|
2108
2421
|
*/
|
|
2109
2422
|
TransitGatewayPeering?: TransitGatewayPeering;
|
|
@@ -2113,18 +2426,22 @@ export interface CreateTransitGatewayPeeringResponse {
|
|
|
2113
2426
|
*/
|
|
2114
2427
|
export interface CreateTransitGatewayRouteTableAttachmentRequest {
|
|
2115
2428
|
/**
|
|
2429
|
+
* @public
|
|
2116
2430
|
* <p>The ID of the peer for the </p>
|
|
2117
2431
|
*/
|
|
2118
2432
|
PeeringId: string | undefined;
|
|
2119
2433
|
/**
|
|
2434
|
+
* @public
|
|
2120
2435
|
* <p>The ARN of the transit gateway route table for the attachment request. For example, <code>"TransitGatewayRouteTableArn": "arn:aws:ec2:us-west-2:123456789012:transit-gateway-route-table/tgw-rtb-9876543210123456"</code>.</p>
|
|
2121
2436
|
*/
|
|
2122
2437
|
TransitGatewayRouteTableArn: string | undefined;
|
|
2123
2438
|
/**
|
|
2439
|
+
* @public
|
|
2124
2440
|
* <p>The list of key-value tags associated with the request.</p>
|
|
2125
2441
|
*/
|
|
2126
2442
|
Tags?: Tag[];
|
|
2127
2443
|
/**
|
|
2444
|
+
* @public
|
|
2128
2445
|
* <p>The client token associated with the request.</p>
|
|
2129
2446
|
*/
|
|
2130
2447
|
ClientToken?: string;
|
|
@@ -2135,14 +2452,17 @@ export interface CreateTransitGatewayRouteTableAttachmentRequest {
|
|
|
2135
2452
|
*/
|
|
2136
2453
|
export interface TransitGatewayRouteTableAttachment {
|
|
2137
2454
|
/**
|
|
2455
|
+
* @public
|
|
2138
2456
|
* <p>Describes a core network attachment.</p>
|
|
2139
2457
|
*/
|
|
2140
2458
|
Attachment?: Attachment;
|
|
2141
2459
|
/**
|
|
2460
|
+
* @public
|
|
2142
2461
|
* <p>The ID of the peering attachment.</p>
|
|
2143
2462
|
*/
|
|
2144
2463
|
PeeringId?: string;
|
|
2145
2464
|
/**
|
|
2465
|
+
* @public
|
|
2146
2466
|
* <p>The ARN of the transit gateway attachment route table. For example, <code>"TransitGatewayRouteTableArn": "arn:aws:ec2:us-west-2:123456789012:transit-gateway-route-table/tgw-rtb-9876543210123456"</code>.</p>
|
|
2147
2467
|
*/
|
|
2148
2468
|
TransitGatewayRouteTableArn?: string;
|
|
@@ -2152,6 +2472,7 @@ export interface TransitGatewayRouteTableAttachment {
|
|
|
2152
2472
|
*/
|
|
2153
2473
|
export interface CreateTransitGatewayRouteTableAttachmentResponse {
|
|
2154
2474
|
/**
|
|
2475
|
+
* @public
|
|
2155
2476
|
* <p>The route table associated with the create transit gateway route table attachment request.</p>
|
|
2156
2477
|
*/
|
|
2157
2478
|
TransitGatewayRouteTableAttachment?: TransitGatewayRouteTableAttachment;
|
|
@@ -2162,10 +2483,12 @@ export interface CreateTransitGatewayRouteTableAttachmentResponse {
|
|
|
2162
2483
|
*/
|
|
2163
2484
|
export interface VpcOptions {
|
|
2164
2485
|
/**
|
|
2486
|
+
* @public
|
|
2165
2487
|
* <p>Indicates whether IPv6 is supported.</p>
|
|
2166
2488
|
*/
|
|
2167
2489
|
Ipv6Support?: boolean;
|
|
2168
2490
|
/**
|
|
2491
|
+
* @public
|
|
2169
2492
|
* <p>Indicates whether appliance mode is supported. If enabled, traffic flow between a source and destination use the same Availability Zone for the VPC attachment for the lifetime of that flow. The default value is <code>false</code>.</p>
|
|
2170
2493
|
*/
|
|
2171
2494
|
ApplianceModeSupport?: boolean;
|
|
@@ -2175,26 +2498,32 @@ export interface VpcOptions {
|
|
|
2175
2498
|
*/
|
|
2176
2499
|
export interface CreateVpcAttachmentRequest {
|
|
2177
2500
|
/**
|
|
2501
|
+
* @public
|
|
2178
2502
|
* <p>The ID of a core network for the VPC attachment.</p>
|
|
2179
2503
|
*/
|
|
2180
2504
|
CoreNetworkId: string | undefined;
|
|
2181
2505
|
/**
|
|
2506
|
+
* @public
|
|
2182
2507
|
* <p>The ARN of the VPC.</p>
|
|
2183
2508
|
*/
|
|
2184
2509
|
VpcArn: string | undefined;
|
|
2185
2510
|
/**
|
|
2511
|
+
* @public
|
|
2186
2512
|
* <p>The subnet ARN of the VPC attachment.</p>
|
|
2187
2513
|
*/
|
|
2188
2514
|
SubnetArns: string[] | undefined;
|
|
2189
2515
|
/**
|
|
2516
|
+
* @public
|
|
2190
2517
|
* <p>Options for the VPC attachment.</p>
|
|
2191
2518
|
*/
|
|
2192
2519
|
Options?: VpcOptions;
|
|
2193
2520
|
/**
|
|
2521
|
+
* @public
|
|
2194
2522
|
* <p>The key-value tags associated with the request.</p>
|
|
2195
2523
|
*/
|
|
2196
2524
|
Tags?: Tag[];
|
|
2197
2525
|
/**
|
|
2526
|
+
* @public
|
|
2198
2527
|
* <p>The client token associated with the request.</p>
|
|
2199
2528
|
*/
|
|
2200
2529
|
ClientToken?: string;
|
|
@@ -2205,14 +2534,17 @@ export interface CreateVpcAttachmentRequest {
|
|
|
2205
2534
|
*/
|
|
2206
2535
|
export interface VpcAttachment {
|
|
2207
2536
|
/**
|
|
2537
|
+
* @public
|
|
2208
2538
|
* <p>Provides details about the VPC attachment.</p>
|
|
2209
2539
|
*/
|
|
2210
2540
|
Attachment?: Attachment;
|
|
2211
2541
|
/**
|
|
2542
|
+
* @public
|
|
2212
2543
|
* <p>The subnet ARNs.</p>
|
|
2213
2544
|
*/
|
|
2214
2545
|
SubnetArns?: string[];
|
|
2215
2546
|
/**
|
|
2547
|
+
* @public
|
|
2216
2548
|
* <p>Provides details about the VPC attachment.</p>
|
|
2217
2549
|
*/
|
|
2218
2550
|
Options?: VpcOptions;
|
|
@@ -2222,6 +2554,7 @@ export interface VpcAttachment {
|
|
|
2222
2554
|
*/
|
|
2223
2555
|
export interface CreateVpcAttachmentResponse {
|
|
2224
2556
|
/**
|
|
2557
|
+
* @public
|
|
2225
2558
|
* <p>Provides details about the VPC attachment.</p>
|
|
2226
2559
|
*/
|
|
2227
2560
|
VpcAttachment?: VpcAttachment;
|
|
@@ -2231,6 +2564,7 @@ export interface CreateVpcAttachmentResponse {
|
|
|
2231
2564
|
*/
|
|
2232
2565
|
export interface DeleteAttachmentRequest {
|
|
2233
2566
|
/**
|
|
2567
|
+
* @public
|
|
2234
2568
|
* <p>The ID of the attachment to delete.</p>
|
|
2235
2569
|
*/
|
|
2236
2570
|
AttachmentId: string | undefined;
|
|
@@ -2240,6 +2574,7 @@ export interface DeleteAttachmentRequest {
|
|
|
2240
2574
|
*/
|
|
2241
2575
|
export interface DeleteAttachmentResponse {
|
|
2242
2576
|
/**
|
|
2577
|
+
* @public
|
|
2243
2578
|
* <p>Information about the deleted attachment.</p>
|
|
2244
2579
|
*/
|
|
2245
2580
|
Attachment?: Attachment;
|
|
@@ -2249,10 +2584,12 @@ export interface DeleteAttachmentResponse {
|
|
|
2249
2584
|
*/
|
|
2250
2585
|
export interface DeleteConnectionRequest {
|
|
2251
2586
|
/**
|
|
2587
|
+
* @public
|
|
2252
2588
|
* <p>The ID of the global network.</p>
|
|
2253
2589
|
*/
|
|
2254
2590
|
GlobalNetworkId: string | undefined;
|
|
2255
2591
|
/**
|
|
2592
|
+
* @public
|
|
2256
2593
|
* <p>The ID of the connection.</p>
|
|
2257
2594
|
*/
|
|
2258
2595
|
ConnectionId: string | undefined;
|
|
@@ -2262,6 +2599,7 @@ export interface DeleteConnectionRequest {
|
|
|
2262
2599
|
*/
|
|
2263
2600
|
export interface DeleteConnectionResponse {
|
|
2264
2601
|
/**
|
|
2602
|
+
* @public
|
|
2265
2603
|
* <p>Information about the connection.</p>
|
|
2266
2604
|
*/
|
|
2267
2605
|
Connection?: Connection;
|
|
@@ -2271,6 +2609,7 @@ export interface DeleteConnectionResponse {
|
|
|
2271
2609
|
*/
|
|
2272
2610
|
export interface DeleteConnectPeerRequest {
|
|
2273
2611
|
/**
|
|
2612
|
+
* @public
|
|
2274
2613
|
* <p>The ID of the deleted Connect peer.</p>
|
|
2275
2614
|
*/
|
|
2276
2615
|
ConnectPeerId: string | undefined;
|
|
@@ -2280,6 +2619,7 @@ export interface DeleteConnectPeerRequest {
|
|
|
2280
2619
|
*/
|
|
2281
2620
|
export interface DeleteConnectPeerResponse {
|
|
2282
2621
|
/**
|
|
2622
|
+
* @public
|
|
2283
2623
|
* <p>Information about the deleted Connect peer.</p>
|
|
2284
2624
|
*/
|
|
2285
2625
|
ConnectPeer?: ConnectPeer;
|
|
@@ -2289,6 +2629,7 @@ export interface DeleteConnectPeerResponse {
|
|
|
2289
2629
|
*/
|
|
2290
2630
|
export interface DeleteCoreNetworkRequest {
|
|
2291
2631
|
/**
|
|
2632
|
+
* @public
|
|
2292
2633
|
* <p>The network ID of the deleted core network.</p>
|
|
2293
2634
|
*/
|
|
2294
2635
|
CoreNetworkId: string | undefined;
|
|
@@ -2298,6 +2639,7 @@ export interface DeleteCoreNetworkRequest {
|
|
|
2298
2639
|
*/
|
|
2299
2640
|
export interface DeleteCoreNetworkResponse {
|
|
2300
2641
|
/**
|
|
2642
|
+
* @public
|
|
2301
2643
|
* <p>Information about the deleted core network.</p>
|
|
2302
2644
|
*/
|
|
2303
2645
|
CoreNetwork?: CoreNetwork;
|
|
@@ -2307,10 +2649,12 @@ export interface DeleteCoreNetworkResponse {
|
|
|
2307
2649
|
*/
|
|
2308
2650
|
export interface DeleteCoreNetworkPolicyVersionRequest {
|
|
2309
2651
|
/**
|
|
2652
|
+
* @public
|
|
2310
2653
|
* <p>The ID of a core network for the deleted policy.</p>
|
|
2311
2654
|
*/
|
|
2312
2655
|
CoreNetworkId: string | undefined;
|
|
2313
2656
|
/**
|
|
2657
|
+
* @public
|
|
2314
2658
|
* <p>The version ID of the deleted policy.</p>
|
|
2315
2659
|
*/
|
|
2316
2660
|
PolicyVersionId: number | undefined;
|
|
@@ -2320,6 +2664,7 @@ export interface DeleteCoreNetworkPolicyVersionRequest {
|
|
|
2320
2664
|
*/
|
|
2321
2665
|
export interface DeleteCoreNetworkPolicyVersionResponse {
|
|
2322
2666
|
/**
|
|
2667
|
+
* @public
|
|
2323
2668
|
* <p>Returns information about the deleted policy version. </p>
|
|
2324
2669
|
*/
|
|
2325
2670
|
CoreNetworkPolicy?: CoreNetworkPolicy;
|
|
@@ -2329,10 +2674,12 @@ export interface DeleteCoreNetworkPolicyVersionResponse {
|
|
|
2329
2674
|
*/
|
|
2330
2675
|
export interface DeleteDeviceRequest {
|
|
2331
2676
|
/**
|
|
2677
|
+
* @public
|
|
2332
2678
|
* <p>The ID of the global network.</p>
|
|
2333
2679
|
*/
|
|
2334
2680
|
GlobalNetworkId: string | undefined;
|
|
2335
2681
|
/**
|
|
2682
|
+
* @public
|
|
2336
2683
|
* <p>The ID of the device.</p>
|
|
2337
2684
|
*/
|
|
2338
2685
|
DeviceId: string | undefined;
|
|
@@ -2342,6 +2689,7 @@ export interface DeleteDeviceRequest {
|
|
|
2342
2689
|
*/
|
|
2343
2690
|
export interface DeleteDeviceResponse {
|
|
2344
2691
|
/**
|
|
2692
|
+
* @public
|
|
2345
2693
|
* <p>Information about the device.</p>
|
|
2346
2694
|
*/
|
|
2347
2695
|
Device?: Device;
|
|
@@ -2351,6 +2699,7 @@ export interface DeleteDeviceResponse {
|
|
|
2351
2699
|
*/
|
|
2352
2700
|
export interface DeleteGlobalNetworkRequest {
|
|
2353
2701
|
/**
|
|
2702
|
+
* @public
|
|
2354
2703
|
* <p>The ID of the global network.</p>
|
|
2355
2704
|
*/
|
|
2356
2705
|
GlobalNetworkId: string | undefined;
|
|
@@ -2360,6 +2709,7 @@ export interface DeleteGlobalNetworkRequest {
|
|
|
2360
2709
|
*/
|
|
2361
2710
|
export interface DeleteGlobalNetworkResponse {
|
|
2362
2711
|
/**
|
|
2712
|
+
* @public
|
|
2363
2713
|
* <p>Information about the global network.</p>
|
|
2364
2714
|
*/
|
|
2365
2715
|
GlobalNetwork?: GlobalNetwork;
|
|
@@ -2369,10 +2719,12 @@ export interface DeleteGlobalNetworkResponse {
|
|
|
2369
2719
|
*/
|
|
2370
2720
|
export interface DeleteLinkRequest {
|
|
2371
2721
|
/**
|
|
2722
|
+
* @public
|
|
2372
2723
|
* <p>The ID of the global network.</p>
|
|
2373
2724
|
*/
|
|
2374
2725
|
GlobalNetworkId: string | undefined;
|
|
2375
2726
|
/**
|
|
2727
|
+
* @public
|
|
2376
2728
|
* <p>The ID of the link.</p>
|
|
2377
2729
|
*/
|
|
2378
2730
|
LinkId: string | undefined;
|
|
@@ -2382,6 +2734,7 @@ export interface DeleteLinkRequest {
|
|
|
2382
2734
|
*/
|
|
2383
2735
|
export interface DeleteLinkResponse {
|
|
2384
2736
|
/**
|
|
2737
|
+
* @public
|
|
2385
2738
|
* <p>Information about the link.</p>
|
|
2386
2739
|
*/
|
|
2387
2740
|
Link?: Link;
|
|
@@ -2391,6 +2744,7 @@ export interface DeleteLinkResponse {
|
|
|
2391
2744
|
*/
|
|
2392
2745
|
export interface DeletePeeringRequest {
|
|
2393
2746
|
/**
|
|
2747
|
+
* @public
|
|
2394
2748
|
* <p>The ID of the peering connection to delete.</p>
|
|
2395
2749
|
*/
|
|
2396
2750
|
PeeringId: string | undefined;
|
|
@@ -2400,6 +2754,7 @@ export interface DeletePeeringRequest {
|
|
|
2400
2754
|
*/
|
|
2401
2755
|
export interface DeletePeeringResponse {
|
|
2402
2756
|
/**
|
|
2757
|
+
* @public
|
|
2403
2758
|
* <p>Information about a deleted peering connection.</p>
|
|
2404
2759
|
*/
|
|
2405
2760
|
Peering?: Peering;
|
|
@@ -2409,6 +2764,7 @@ export interface DeletePeeringResponse {
|
|
|
2409
2764
|
*/
|
|
2410
2765
|
export interface DeleteResourcePolicyRequest {
|
|
2411
2766
|
/**
|
|
2767
|
+
* @public
|
|
2412
2768
|
* <p>The ARN of the policy to delete.</p>
|
|
2413
2769
|
*/
|
|
2414
2770
|
ResourceArn: string | undefined;
|
|
@@ -2423,10 +2779,12 @@ export interface DeleteResourcePolicyResponse {
|
|
|
2423
2779
|
*/
|
|
2424
2780
|
export interface DeleteSiteRequest {
|
|
2425
2781
|
/**
|
|
2782
|
+
* @public
|
|
2426
2783
|
* <p>The ID of the global network.</p>
|
|
2427
2784
|
*/
|
|
2428
2785
|
GlobalNetworkId: string | undefined;
|
|
2429
2786
|
/**
|
|
2787
|
+
* @public
|
|
2430
2788
|
* <p>The ID of the site.</p>
|
|
2431
2789
|
*/
|
|
2432
2790
|
SiteId: string | undefined;
|
|
@@ -2436,6 +2794,7 @@ export interface DeleteSiteRequest {
|
|
|
2436
2794
|
*/
|
|
2437
2795
|
export interface DeleteSiteResponse {
|
|
2438
2796
|
/**
|
|
2797
|
+
* @public
|
|
2439
2798
|
* <p>Information about the site.</p>
|
|
2440
2799
|
*/
|
|
2441
2800
|
Site?: Site;
|
|
@@ -2445,10 +2804,12 @@ export interface DeleteSiteResponse {
|
|
|
2445
2804
|
*/
|
|
2446
2805
|
export interface DeregisterTransitGatewayRequest {
|
|
2447
2806
|
/**
|
|
2807
|
+
* @public
|
|
2448
2808
|
* <p>The ID of the global network.</p>
|
|
2449
2809
|
*/
|
|
2450
2810
|
GlobalNetworkId: string | undefined;
|
|
2451
2811
|
/**
|
|
2812
|
+
* @public
|
|
2452
2813
|
* <p>The Amazon Resource Name (ARN) of the transit gateway.</p>
|
|
2453
2814
|
*/
|
|
2454
2815
|
TransitGatewayArn: string | undefined;
|
|
@@ -2474,10 +2835,12 @@ export type TransitGatewayRegistrationState = (typeof TransitGatewayRegistration
|
|
|
2474
2835
|
*/
|
|
2475
2836
|
export interface TransitGatewayRegistrationStateReason {
|
|
2476
2837
|
/**
|
|
2838
|
+
* @public
|
|
2477
2839
|
* <p>The code for the state reason.</p>
|
|
2478
2840
|
*/
|
|
2479
2841
|
Code?: TransitGatewayRegistrationState | string;
|
|
2480
2842
|
/**
|
|
2843
|
+
* @public
|
|
2481
2844
|
* <p>The message for the state reason.</p>
|
|
2482
2845
|
*/
|
|
2483
2846
|
Message?: string;
|
|
@@ -2488,14 +2851,17 @@ export interface TransitGatewayRegistrationStateReason {
|
|
|
2488
2851
|
*/
|
|
2489
2852
|
export interface TransitGatewayRegistration {
|
|
2490
2853
|
/**
|
|
2854
|
+
* @public
|
|
2491
2855
|
* <p>The ID of the global network.</p>
|
|
2492
2856
|
*/
|
|
2493
2857
|
GlobalNetworkId?: string;
|
|
2494
2858
|
/**
|
|
2859
|
+
* @public
|
|
2495
2860
|
* <p>The Amazon Resource Name (ARN) of the transit gateway.</p>
|
|
2496
2861
|
*/
|
|
2497
2862
|
TransitGatewayArn?: string;
|
|
2498
2863
|
/**
|
|
2864
|
+
* @public
|
|
2499
2865
|
* <p>The state of the transit gateway registration.</p>
|
|
2500
2866
|
*/
|
|
2501
2867
|
State?: TransitGatewayRegistrationStateReason;
|
|
@@ -2505,6 +2871,7 @@ export interface TransitGatewayRegistration {
|
|
|
2505
2871
|
*/
|
|
2506
2872
|
export interface DeregisterTransitGatewayResponse {
|
|
2507
2873
|
/**
|
|
2874
|
+
* @public
|
|
2508
2875
|
* <p>The transit gateway registration information.</p>
|
|
2509
2876
|
*/
|
|
2510
2877
|
TransitGatewayRegistration?: TransitGatewayRegistration;
|
|
@@ -2514,14 +2881,17 @@ export interface DeregisterTransitGatewayResponse {
|
|
|
2514
2881
|
*/
|
|
2515
2882
|
export interface DescribeGlobalNetworksRequest {
|
|
2516
2883
|
/**
|
|
2884
|
+
* @public
|
|
2517
2885
|
* <p>The IDs of one or more global networks. The maximum is 10.</p>
|
|
2518
2886
|
*/
|
|
2519
2887
|
GlobalNetworkIds?: string[];
|
|
2520
2888
|
/**
|
|
2889
|
+
* @public
|
|
2521
2890
|
* <p>The maximum number of results to return.</p>
|
|
2522
2891
|
*/
|
|
2523
2892
|
MaxResults?: number;
|
|
2524
2893
|
/**
|
|
2894
|
+
* @public
|
|
2525
2895
|
* <p>The token for the next page of results.</p>
|
|
2526
2896
|
*/
|
|
2527
2897
|
NextToken?: string;
|
|
@@ -2531,10 +2901,12 @@ export interface DescribeGlobalNetworksRequest {
|
|
|
2531
2901
|
*/
|
|
2532
2902
|
export interface DescribeGlobalNetworksResponse {
|
|
2533
2903
|
/**
|
|
2904
|
+
* @public
|
|
2534
2905
|
* <p>Information about the global networks.</p>
|
|
2535
2906
|
*/
|
|
2536
2907
|
GlobalNetworks?: GlobalNetwork[];
|
|
2537
2908
|
/**
|
|
2909
|
+
* @public
|
|
2538
2910
|
* <p>The token for the next page of results.</p>
|
|
2539
2911
|
*/
|
|
2540
2912
|
NextToken?: string;
|
|
@@ -2544,10 +2916,12 @@ export interface DescribeGlobalNetworksResponse {
|
|
|
2544
2916
|
*/
|
|
2545
2917
|
export interface DisassociateConnectPeerRequest {
|
|
2546
2918
|
/**
|
|
2919
|
+
* @public
|
|
2547
2920
|
* <p>The ID of the global network.</p>
|
|
2548
2921
|
*/
|
|
2549
2922
|
GlobalNetworkId: string | undefined;
|
|
2550
2923
|
/**
|
|
2924
|
+
* @public
|
|
2551
2925
|
* <p>The ID of the Connect peer to disassociate from a device.</p>
|
|
2552
2926
|
*/
|
|
2553
2927
|
ConnectPeerId: string | undefined;
|
|
@@ -2557,6 +2931,7 @@ export interface DisassociateConnectPeerRequest {
|
|
|
2557
2931
|
*/
|
|
2558
2932
|
export interface DisassociateConnectPeerResponse {
|
|
2559
2933
|
/**
|
|
2934
|
+
* @public
|
|
2560
2935
|
* <p>Describes the Connect peer association.</p>
|
|
2561
2936
|
*/
|
|
2562
2937
|
ConnectPeerAssociation?: ConnectPeerAssociation;
|
|
@@ -2566,10 +2941,12 @@ export interface DisassociateConnectPeerResponse {
|
|
|
2566
2941
|
*/
|
|
2567
2942
|
export interface DisassociateCustomerGatewayRequest {
|
|
2568
2943
|
/**
|
|
2944
|
+
* @public
|
|
2569
2945
|
* <p>The ID of the global network.</p>
|
|
2570
2946
|
*/
|
|
2571
2947
|
GlobalNetworkId: string | undefined;
|
|
2572
2948
|
/**
|
|
2949
|
+
* @public
|
|
2573
2950
|
* <p>The Amazon Resource Name (ARN) of the customer gateway.</p>
|
|
2574
2951
|
*/
|
|
2575
2952
|
CustomerGatewayArn: string | undefined;
|
|
@@ -2579,6 +2956,7 @@ export interface DisassociateCustomerGatewayRequest {
|
|
|
2579
2956
|
*/
|
|
2580
2957
|
export interface DisassociateCustomerGatewayResponse {
|
|
2581
2958
|
/**
|
|
2959
|
+
* @public
|
|
2582
2960
|
* <p>Information about the customer gateway association.</p>
|
|
2583
2961
|
*/
|
|
2584
2962
|
CustomerGatewayAssociation?: CustomerGatewayAssociation;
|
|
@@ -2588,14 +2966,17 @@ export interface DisassociateCustomerGatewayResponse {
|
|
|
2588
2966
|
*/
|
|
2589
2967
|
export interface DisassociateLinkRequest {
|
|
2590
2968
|
/**
|
|
2969
|
+
* @public
|
|
2591
2970
|
* <p>The ID of the global network.</p>
|
|
2592
2971
|
*/
|
|
2593
2972
|
GlobalNetworkId: string | undefined;
|
|
2594
2973
|
/**
|
|
2974
|
+
* @public
|
|
2595
2975
|
* <p>The ID of the device.</p>
|
|
2596
2976
|
*/
|
|
2597
2977
|
DeviceId: string | undefined;
|
|
2598
2978
|
/**
|
|
2979
|
+
* @public
|
|
2599
2980
|
* <p>The ID of the link.</p>
|
|
2600
2981
|
*/
|
|
2601
2982
|
LinkId: string | undefined;
|
|
@@ -2605,6 +2986,7 @@ export interface DisassociateLinkRequest {
|
|
|
2605
2986
|
*/
|
|
2606
2987
|
export interface DisassociateLinkResponse {
|
|
2607
2988
|
/**
|
|
2989
|
+
* @public
|
|
2608
2990
|
* <p>Information about the link association.</p>
|
|
2609
2991
|
*/
|
|
2610
2992
|
LinkAssociation?: LinkAssociation;
|
|
@@ -2614,10 +2996,12 @@ export interface DisassociateLinkResponse {
|
|
|
2614
2996
|
*/
|
|
2615
2997
|
export interface DisassociateTransitGatewayConnectPeerRequest {
|
|
2616
2998
|
/**
|
|
2999
|
+
* @public
|
|
2617
3000
|
* <p>The ID of the global network.</p>
|
|
2618
3001
|
*/
|
|
2619
3002
|
GlobalNetworkId: string | undefined;
|
|
2620
3003
|
/**
|
|
3004
|
+
* @public
|
|
2621
3005
|
* <p>The Amazon Resource Name (ARN) of the transit gateway Connect peer.</p>
|
|
2622
3006
|
*/
|
|
2623
3007
|
TransitGatewayConnectPeerArn: string | undefined;
|
|
@@ -2627,6 +3011,7 @@ export interface DisassociateTransitGatewayConnectPeerRequest {
|
|
|
2627
3011
|
*/
|
|
2628
3012
|
export interface DisassociateTransitGatewayConnectPeerResponse {
|
|
2629
3013
|
/**
|
|
3014
|
+
* @public
|
|
2630
3015
|
* <p>The transit gateway Connect peer association.</p>
|
|
2631
3016
|
*/
|
|
2632
3017
|
TransitGatewayConnectPeerAssociation?: TransitGatewayConnectPeerAssociation;
|
|
@@ -2636,10 +3021,12 @@ export interface DisassociateTransitGatewayConnectPeerResponse {
|
|
|
2636
3021
|
*/
|
|
2637
3022
|
export interface ExecuteCoreNetworkChangeSetRequest {
|
|
2638
3023
|
/**
|
|
3024
|
+
* @public
|
|
2639
3025
|
* <p>The ID of a core network.</p>
|
|
2640
3026
|
*/
|
|
2641
3027
|
CoreNetworkId: string | undefined;
|
|
2642
3028
|
/**
|
|
3029
|
+
* @public
|
|
2643
3030
|
* <p>The ID of the policy version.</p>
|
|
2644
3031
|
*/
|
|
2645
3032
|
PolicyVersionId: number | undefined;
|
|
@@ -2654,6 +3041,7 @@ export interface ExecuteCoreNetworkChangeSetResponse {
|
|
|
2654
3041
|
*/
|
|
2655
3042
|
export interface GetConnectAttachmentRequest {
|
|
2656
3043
|
/**
|
|
3044
|
+
* @public
|
|
2657
3045
|
* <p>The ID of the attachment.</p>
|
|
2658
3046
|
*/
|
|
2659
3047
|
AttachmentId: string | undefined;
|
|
@@ -2663,6 +3051,7 @@ export interface GetConnectAttachmentRequest {
|
|
|
2663
3051
|
*/
|
|
2664
3052
|
export interface GetConnectAttachmentResponse {
|
|
2665
3053
|
/**
|
|
3054
|
+
* @public
|
|
2666
3055
|
* <p>Details about the Connect attachment.</p>
|
|
2667
3056
|
*/
|
|
2668
3057
|
ConnectAttachment?: ConnectAttachment;
|
|
@@ -2672,22 +3061,27 @@ export interface GetConnectAttachmentResponse {
|
|
|
2672
3061
|
*/
|
|
2673
3062
|
export interface GetConnectionsRequest {
|
|
2674
3063
|
/**
|
|
3064
|
+
* @public
|
|
2675
3065
|
* <p>The ID of the global network.</p>
|
|
2676
3066
|
*/
|
|
2677
3067
|
GlobalNetworkId: string | undefined;
|
|
2678
3068
|
/**
|
|
3069
|
+
* @public
|
|
2679
3070
|
* <p>One or more connection IDs.</p>
|
|
2680
3071
|
*/
|
|
2681
3072
|
ConnectionIds?: string[];
|
|
2682
3073
|
/**
|
|
3074
|
+
* @public
|
|
2683
3075
|
* <p>The ID of the device.</p>
|
|
2684
3076
|
*/
|
|
2685
3077
|
DeviceId?: string;
|
|
2686
3078
|
/**
|
|
3079
|
+
* @public
|
|
2687
3080
|
* <p>The maximum number of results to return.</p>
|
|
2688
3081
|
*/
|
|
2689
3082
|
MaxResults?: number;
|
|
2690
3083
|
/**
|
|
3084
|
+
* @public
|
|
2691
3085
|
* <p>The token for the next page of results.</p>
|
|
2692
3086
|
*/
|
|
2693
3087
|
NextToken?: string;
|
|
@@ -2697,10 +3091,12 @@ export interface GetConnectionsRequest {
|
|
|
2697
3091
|
*/
|
|
2698
3092
|
export interface GetConnectionsResponse {
|
|
2699
3093
|
/**
|
|
3094
|
+
* @public
|
|
2700
3095
|
* <p>Information about the connections.</p>
|
|
2701
3096
|
*/
|
|
2702
3097
|
Connections?: Connection[];
|
|
2703
3098
|
/**
|
|
3099
|
+
* @public
|
|
2704
3100
|
* <p>The token to use for the next page of results.</p>
|
|
2705
3101
|
*/
|
|
2706
3102
|
NextToken?: string;
|
|
@@ -2710,6 +3106,7 @@ export interface GetConnectionsResponse {
|
|
|
2710
3106
|
*/
|
|
2711
3107
|
export interface GetConnectPeerRequest {
|
|
2712
3108
|
/**
|
|
3109
|
+
* @public
|
|
2713
3110
|
* <p>The ID of the Connect peer.</p>
|
|
2714
3111
|
*/
|
|
2715
3112
|
ConnectPeerId: string | undefined;
|
|
@@ -2719,6 +3116,7 @@ export interface GetConnectPeerRequest {
|
|
|
2719
3116
|
*/
|
|
2720
3117
|
export interface GetConnectPeerResponse {
|
|
2721
3118
|
/**
|
|
3119
|
+
* @public
|
|
2722
3120
|
* <p>Returns information about a core network Connect peer.</p>
|
|
2723
3121
|
*/
|
|
2724
3122
|
ConnectPeer?: ConnectPeer;
|
|
@@ -2728,18 +3126,22 @@ export interface GetConnectPeerResponse {
|
|
|
2728
3126
|
*/
|
|
2729
3127
|
export interface GetConnectPeerAssociationsRequest {
|
|
2730
3128
|
/**
|
|
3129
|
+
* @public
|
|
2731
3130
|
* <p>The ID of the global network.</p>
|
|
2732
3131
|
*/
|
|
2733
3132
|
GlobalNetworkId: string | undefined;
|
|
2734
3133
|
/**
|
|
3134
|
+
* @public
|
|
2735
3135
|
* <p>The IDs of the Connect peers.</p>
|
|
2736
3136
|
*/
|
|
2737
3137
|
ConnectPeerIds?: string[];
|
|
2738
3138
|
/**
|
|
3139
|
+
* @public
|
|
2739
3140
|
* <p>The maximum number of results to return.</p>
|
|
2740
3141
|
*/
|
|
2741
3142
|
MaxResults?: number;
|
|
2742
3143
|
/**
|
|
3144
|
+
* @public
|
|
2743
3145
|
* <p>The token for the next page of results.</p>
|
|
2744
3146
|
*/
|
|
2745
3147
|
NextToken?: string;
|
|
@@ -2749,10 +3151,12 @@ export interface GetConnectPeerAssociationsRequest {
|
|
|
2749
3151
|
*/
|
|
2750
3152
|
export interface GetConnectPeerAssociationsResponse {
|
|
2751
3153
|
/**
|
|
3154
|
+
* @public
|
|
2752
3155
|
* <p>Displays a list of Connect peer associations.</p>
|
|
2753
3156
|
*/
|
|
2754
3157
|
ConnectPeerAssociations?: ConnectPeerAssociation[];
|
|
2755
3158
|
/**
|
|
3159
|
+
* @public
|
|
2756
3160
|
* <p>The token for the next page of results.</p>
|
|
2757
3161
|
*/
|
|
2758
3162
|
NextToken?: string;
|
|
@@ -2762,6 +3166,7 @@ export interface GetConnectPeerAssociationsResponse {
|
|
|
2762
3166
|
*/
|
|
2763
3167
|
export interface GetCoreNetworkRequest {
|
|
2764
3168
|
/**
|
|
3169
|
+
* @public
|
|
2765
3170
|
* <p>The ID of a core network.</p>
|
|
2766
3171
|
*/
|
|
2767
3172
|
CoreNetworkId: string | undefined;
|
|
@@ -2771,6 +3176,7 @@ export interface GetCoreNetworkRequest {
|
|
|
2771
3176
|
*/
|
|
2772
3177
|
export interface GetCoreNetworkResponse {
|
|
2773
3178
|
/**
|
|
3179
|
+
* @public
|
|
2774
3180
|
* <p>Details about a core network.</p>
|
|
2775
3181
|
*/
|
|
2776
3182
|
CoreNetwork?: CoreNetwork;
|
|
@@ -2780,18 +3186,22 @@ export interface GetCoreNetworkResponse {
|
|
|
2780
3186
|
*/
|
|
2781
3187
|
export interface GetCoreNetworkChangeEventsRequest {
|
|
2782
3188
|
/**
|
|
3189
|
+
* @public
|
|
2783
3190
|
* <p>The ID of a core network.</p>
|
|
2784
3191
|
*/
|
|
2785
3192
|
CoreNetworkId: string | undefined;
|
|
2786
3193
|
/**
|
|
3194
|
+
* @public
|
|
2787
3195
|
* <p>The ID of the policy version.</p>
|
|
2788
3196
|
*/
|
|
2789
3197
|
PolicyVersionId: number | undefined;
|
|
2790
3198
|
/**
|
|
3199
|
+
* @public
|
|
2791
3200
|
* <p>The maximum number of results to return.</p>
|
|
2792
3201
|
*/
|
|
2793
3202
|
MaxResults?: number;
|
|
2794
3203
|
/**
|
|
3204
|
+
* @public
|
|
2795
3205
|
* <p>The token for the next page of results.</p>
|
|
2796
3206
|
*/
|
|
2797
3207
|
NextToken?: string;
|
|
@@ -2801,10 +3211,12 @@ export interface GetCoreNetworkChangeEventsRequest {
|
|
|
2801
3211
|
*/
|
|
2802
3212
|
export interface GetCoreNetworkChangeEventsResponse {
|
|
2803
3213
|
/**
|
|
3214
|
+
* @public
|
|
2804
3215
|
* <p>The response to <code>GetCoreNetworkChangeEventsRequest</code>.</p>
|
|
2805
3216
|
*/
|
|
2806
3217
|
CoreNetworkChangeEvents?: CoreNetworkChangeEvent[];
|
|
2807
3218
|
/**
|
|
3219
|
+
* @public
|
|
2808
3220
|
* <p>The token for the next page of results.</p>
|
|
2809
3221
|
*/
|
|
2810
3222
|
NextToken?: string;
|
|
@@ -2814,18 +3226,22 @@ export interface GetCoreNetworkChangeEventsResponse {
|
|
|
2814
3226
|
*/
|
|
2815
3227
|
export interface GetCoreNetworkChangeSetRequest {
|
|
2816
3228
|
/**
|
|
3229
|
+
* @public
|
|
2817
3230
|
* <p>The ID of a core network.</p>
|
|
2818
3231
|
*/
|
|
2819
3232
|
CoreNetworkId: string | undefined;
|
|
2820
3233
|
/**
|
|
3234
|
+
* @public
|
|
2821
3235
|
* <p>The ID of the policy version.</p>
|
|
2822
3236
|
*/
|
|
2823
3237
|
PolicyVersionId: number | undefined;
|
|
2824
3238
|
/**
|
|
3239
|
+
* @public
|
|
2825
3240
|
* <p>The maximum number of results to return.</p>
|
|
2826
3241
|
*/
|
|
2827
3242
|
MaxResults?: number;
|
|
2828
3243
|
/**
|
|
3244
|
+
* @public
|
|
2829
3245
|
* <p>The token for the next page of results.</p>
|
|
2830
3246
|
*/
|
|
2831
3247
|
NextToken?: string;
|
|
@@ -2835,10 +3251,12 @@ export interface GetCoreNetworkChangeSetRequest {
|
|
|
2835
3251
|
*/
|
|
2836
3252
|
export interface GetCoreNetworkChangeSetResponse {
|
|
2837
3253
|
/**
|
|
3254
|
+
* @public
|
|
2838
3255
|
* <p>Describes a core network changes.</p>
|
|
2839
3256
|
*/
|
|
2840
3257
|
CoreNetworkChanges?: CoreNetworkChange[];
|
|
2841
3258
|
/**
|
|
3259
|
+
* @public
|
|
2842
3260
|
* <p>The token for the next page of results.</p>
|
|
2843
3261
|
*/
|
|
2844
3262
|
NextToken?: string;
|
|
@@ -2848,14 +3266,17 @@ export interface GetCoreNetworkChangeSetResponse {
|
|
|
2848
3266
|
*/
|
|
2849
3267
|
export interface GetCoreNetworkPolicyRequest {
|
|
2850
3268
|
/**
|
|
3269
|
+
* @public
|
|
2851
3270
|
* <p>The ID of a core network.</p>
|
|
2852
3271
|
*/
|
|
2853
3272
|
CoreNetworkId: string | undefined;
|
|
2854
3273
|
/**
|
|
3274
|
+
* @public
|
|
2855
3275
|
* <p>The ID of a core network policy version.</p>
|
|
2856
3276
|
*/
|
|
2857
3277
|
PolicyVersionId?: number;
|
|
2858
3278
|
/**
|
|
3279
|
+
* @public
|
|
2859
3280
|
* <p>The alias of a core network policy </p>
|
|
2860
3281
|
*/
|
|
2861
3282
|
Alias?: CoreNetworkPolicyAlias | string;
|
|
@@ -2865,6 +3286,7 @@ export interface GetCoreNetworkPolicyRequest {
|
|
|
2865
3286
|
*/
|
|
2866
3287
|
export interface GetCoreNetworkPolicyResponse {
|
|
2867
3288
|
/**
|
|
3289
|
+
* @public
|
|
2868
3290
|
* <p>The details about a core network policy.</p>
|
|
2869
3291
|
*/
|
|
2870
3292
|
CoreNetworkPolicy?: CoreNetworkPolicy;
|
|
@@ -2874,18 +3296,22 @@ export interface GetCoreNetworkPolicyResponse {
|
|
|
2874
3296
|
*/
|
|
2875
3297
|
export interface GetCustomerGatewayAssociationsRequest {
|
|
2876
3298
|
/**
|
|
3299
|
+
* @public
|
|
2877
3300
|
* <p>The ID of the global network.</p>
|
|
2878
3301
|
*/
|
|
2879
3302
|
GlobalNetworkId: string | undefined;
|
|
2880
3303
|
/**
|
|
3304
|
+
* @public
|
|
2881
3305
|
* <p>One or more customer gateway Amazon Resource Names (ARNs). The maximum is 10.</p>
|
|
2882
3306
|
*/
|
|
2883
3307
|
CustomerGatewayArns?: string[];
|
|
2884
3308
|
/**
|
|
3309
|
+
* @public
|
|
2885
3310
|
* <p>The maximum number of results to return.</p>
|
|
2886
3311
|
*/
|
|
2887
3312
|
MaxResults?: number;
|
|
2888
3313
|
/**
|
|
3314
|
+
* @public
|
|
2889
3315
|
* <p>The token for the next page of results.</p>
|
|
2890
3316
|
*/
|
|
2891
3317
|
NextToken?: string;
|
|
@@ -2895,10 +3321,12 @@ export interface GetCustomerGatewayAssociationsRequest {
|
|
|
2895
3321
|
*/
|
|
2896
3322
|
export interface GetCustomerGatewayAssociationsResponse {
|
|
2897
3323
|
/**
|
|
3324
|
+
* @public
|
|
2898
3325
|
* <p>The customer gateway associations.</p>
|
|
2899
3326
|
*/
|
|
2900
3327
|
CustomerGatewayAssociations?: CustomerGatewayAssociation[];
|
|
2901
3328
|
/**
|
|
3329
|
+
* @public
|
|
2902
3330
|
* <p>The token for the next page of results.</p>
|
|
2903
3331
|
*/
|
|
2904
3332
|
NextToken?: string;
|
|
@@ -2908,22 +3336,27 @@ export interface GetCustomerGatewayAssociationsResponse {
|
|
|
2908
3336
|
*/
|
|
2909
3337
|
export interface GetDevicesRequest {
|
|
2910
3338
|
/**
|
|
3339
|
+
* @public
|
|
2911
3340
|
* <p>The ID of the global network.</p>
|
|
2912
3341
|
*/
|
|
2913
3342
|
GlobalNetworkId: string | undefined;
|
|
2914
3343
|
/**
|
|
3344
|
+
* @public
|
|
2915
3345
|
* <p>One or more device IDs. The maximum is 10.</p>
|
|
2916
3346
|
*/
|
|
2917
3347
|
DeviceIds?: string[];
|
|
2918
3348
|
/**
|
|
3349
|
+
* @public
|
|
2919
3350
|
* <p>The ID of the site.</p>
|
|
2920
3351
|
*/
|
|
2921
3352
|
SiteId?: string;
|
|
2922
3353
|
/**
|
|
3354
|
+
* @public
|
|
2923
3355
|
* <p>The maximum number of results to return.</p>
|
|
2924
3356
|
*/
|
|
2925
3357
|
MaxResults?: number;
|
|
2926
3358
|
/**
|
|
3359
|
+
* @public
|
|
2927
3360
|
* <p>The token for the next page of results.</p>
|
|
2928
3361
|
*/
|
|
2929
3362
|
NextToken?: string;
|
|
@@ -2933,10 +3366,12 @@ export interface GetDevicesRequest {
|
|
|
2933
3366
|
*/
|
|
2934
3367
|
export interface GetDevicesResponse {
|
|
2935
3368
|
/**
|
|
3369
|
+
* @public
|
|
2936
3370
|
* <p>The devices.</p>
|
|
2937
3371
|
*/
|
|
2938
3372
|
Devices?: Device[];
|
|
2939
3373
|
/**
|
|
3374
|
+
* @public
|
|
2940
3375
|
* <p>The token for the next page of results.</p>
|
|
2941
3376
|
*/
|
|
2942
3377
|
NextToken?: string;
|
|
@@ -2946,22 +3381,27 @@ export interface GetDevicesResponse {
|
|
|
2946
3381
|
*/
|
|
2947
3382
|
export interface GetLinkAssociationsRequest {
|
|
2948
3383
|
/**
|
|
3384
|
+
* @public
|
|
2949
3385
|
* <p>The ID of the global network.</p>
|
|
2950
3386
|
*/
|
|
2951
3387
|
GlobalNetworkId: string | undefined;
|
|
2952
3388
|
/**
|
|
3389
|
+
* @public
|
|
2953
3390
|
* <p>The ID of the device.</p>
|
|
2954
3391
|
*/
|
|
2955
3392
|
DeviceId?: string;
|
|
2956
3393
|
/**
|
|
3394
|
+
* @public
|
|
2957
3395
|
* <p>The ID of the link.</p>
|
|
2958
3396
|
*/
|
|
2959
3397
|
LinkId?: string;
|
|
2960
3398
|
/**
|
|
3399
|
+
* @public
|
|
2961
3400
|
* <p>The maximum number of results to return.</p>
|
|
2962
3401
|
*/
|
|
2963
3402
|
MaxResults?: number;
|
|
2964
3403
|
/**
|
|
3404
|
+
* @public
|
|
2965
3405
|
* <p>The token for the next page of results.</p>
|
|
2966
3406
|
*/
|
|
2967
3407
|
NextToken?: string;
|
|
@@ -2971,10 +3411,12 @@ export interface GetLinkAssociationsRequest {
|
|
|
2971
3411
|
*/
|
|
2972
3412
|
export interface GetLinkAssociationsResponse {
|
|
2973
3413
|
/**
|
|
3414
|
+
* @public
|
|
2974
3415
|
* <p>The link associations.</p>
|
|
2975
3416
|
*/
|
|
2976
3417
|
LinkAssociations?: LinkAssociation[];
|
|
2977
3418
|
/**
|
|
3419
|
+
* @public
|
|
2978
3420
|
* <p>The token for the next page of results.</p>
|
|
2979
3421
|
*/
|
|
2980
3422
|
NextToken?: string;
|
|
@@ -2984,30 +3426,37 @@ export interface GetLinkAssociationsResponse {
|
|
|
2984
3426
|
*/
|
|
2985
3427
|
export interface GetLinksRequest {
|
|
2986
3428
|
/**
|
|
3429
|
+
* @public
|
|
2987
3430
|
* <p>The ID of the global network.</p>
|
|
2988
3431
|
*/
|
|
2989
3432
|
GlobalNetworkId: string | undefined;
|
|
2990
3433
|
/**
|
|
3434
|
+
* @public
|
|
2991
3435
|
* <p>One or more link IDs. The maximum is 10.</p>
|
|
2992
3436
|
*/
|
|
2993
3437
|
LinkIds?: string[];
|
|
2994
3438
|
/**
|
|
3439
|
+
* @public
|
|
2995
3440
|
* <p>The ID of the site.</p>
|
|
2996
3441
|
*/
|
|
2997
3442
|
SiteId?: string;
|
|
2998
3443
|
/**
|
|
3444
|
+
* @public
|
|
2999
3445
|
* <p>The link type.</p>
|
|
3000
3446
|
*/
|
|
3001
3447
|
Type?: string;
|
|
3002
3448
|
/**
|
|
3449
|
+
* @public
|
|
3003
3450
|
* <p>The link provider.</p>
|
|
3004
3451
|
*/
|
|
3005
3452
|
Provider?: string;
|
|
3006
3453
|
/**
|
|
3454
|
+
* @public
|
|
3007
3455
|
* <p>The maximum number of results to return.</p>
|
|
3008
3456
|
*/
|
|
3009
3457
|
MaxResults?: number;
|
|
3010
3458
|
/**
|
|
3459
|
+
* @public
|
|
3011
3460
|
* <p>The token for the next page of results.</p>
|
|
3012
3461
|
*/
|
|
3013
3462
|
NextToken?: string;
|
|
@@ -3017,10 +3466,12 @@ export interface GetLinksRequest {
|
|
|
3017
3466
|
*/
|
|
3018
3467
|
export interface GetLinksResponse {
|
|
3019
3468
|
/**
|
|
3469
|
+
* @public
|
|
3020
3470
|
* <p>The links.</p>
|
|
3021
3471
|
*/
|
|
3022
3472
|
Links?: Link[];
|
|
3023
3473
|
/**
|
|
3474
|
+
* @public
|
|
3024
3475
|
* <p>The token for the next page of results.</p>
|
|
3025
3476
|
*/
|
|
3026
3477
|
NextToken?: string;
|
|
@@ -3030,10 +3481,12 @@ export interface GetLinksResponse {
|
|
|
3030
3481
|
*/
|
|
3031
3482
|
export interface GetNetworkResourceCountsRequest {
|
|
3032
3483
|
/**
|
|
3484
|
+
* @public
|
|
3033
3485
|
* <p>The ID of the global network.</p>
|
|
3034
3486
|
*/
|
|
3035
3487
|
GlobalNetworkId: string | undefined;
|
|
3036
3488
|
/**
|
|
3489
|
+
* @public
|
|
3037
3490
|
* <p>The resource type.</p>
|
|
3038
3491
|
* <p>The following are the supported resource types for Direct Connect:</p>
|
|
3039
3492
|
* <ul>
|
|
@@ -3112,10 +3565,12 @@ export interface GetNetworkResourceCountsRequest {
|
|
|
3112
3565
|
*/
|
|
3113
3566
|
ResourceType?: string;
|
|
3114
3567
|
/**
|
|
3568
|
+
* @public
|
|
3115
3569
|
* <p>The maximum number of results to return.</p>
|
|
3116
3570
|
*/
|
|
3117
3571
|
MaxResults?: number;
|
|
3118
3572
|
/**
|
|
3573
|
+
* @public
|
|
3119
3574
|
* <p>The token for the next page of results.</p>
|
|
3120
3575
|
*/
|
|
3121
3576
|
NextToken?: string;
|
|
@@ -3126,10 +3581,12 @@ export interface GetNetworkResourceCountsRequest {
|
|
|
3126
3581
|
*/
|
|
3127
3582
|
export interface NetworkResourceCount {
|
|
3128
3583
|
/**
|
|
3584
|
+
* @public
|
|
3129
3585
|
* <p>The resource type.</p>
|
|
3130
3586
|
*/
|
|
3131
3587
|
ResourceType?: string;
|
|
3132
3588
|
/**
|
|
3589
|
+
* @public
|
|
3133
3590
|
* <p>The resource count.</p>
|
|
3134
3591
|
*/
|
|
3135
3592
|
Count?: number;
|
|
@@ -3139,10 +3596,12 @@ export interface NetworkResourceCount {
|
|
|
3139
3596
|
*/
|
|
3140
3597
|
export interface GetNetworkResourceCountsResponse {
|
|
3141
3598
|
/**
|
|
3599
|
+
* @public
|
|
3142
3600
|
* <p>The count of resources.</p>
|
|
3143
3601
|
*/
|
|
3144
3602
|
NetworkResourceCounts?: NetworkResourceCount[];
|
|
3145
3603
|
/**
|
|
3604
|
+
* @public
|
|
3146
3605
|
* <p>The token for the next page of results.</p>
|
|
3147
3606
|
*/
|
|
3148
3607
|
NextToken?: string;
|
|
@@ -3152,26 +3611,32 @@ export interface GetNetworkResourceCountsResponse {
|
|
|
3152
3611
|
*/
|
|
3153
3612
|
export interface GetNetworkResourceRelationshipsRequest {
|
|
3154
3613
|
/**
|
|
3614
|
+
* @public
|
|
3155
3615
|
* <p>The ID of the global network.</p>
|
|
3156
3616
|
*/
|
|
3157
3617
|
GlobalNetworkId: string | undefined;
|
|
3158
3618
|
/**
|
|
3619
|
+
* @public
|
|
3159
3620
|
* <p>The ID of a core network.</p>
|
|
3160
3621
|
*/
|
|
3161
3622
|
CoreNetworkId?: string;
|
|
3162
3623
|
/**
|
|
3624
|
+
* @public
|
|
3163
3625
|
* <p>The ARN of the registered gateway.</p>
|
|
3164
3626
|
*/
|
|
3165
3627
|
RegisteredGatewayArn?: string;
|
|
3166
3628
|
/**
|
|
3629
|
+
* @public
|
|
3167
3630
|
* <p>The Amazon Web Services Region.</p>
|
|
3168
3631
|
*/
|
|
3169
3632
|
AwsRegion?: string;
|
|
3170
3633
|
/**
|
|
3634
|
+
* @public
|
|
3171
3635
|
* <p>The Amazon Web Services account ID.</p>
|
|
3172
3636
|
*/
|
|
3173
3637
|
AccountId?: string;
|
|
3174
3638
|
/**
|
|
3639
|
+
* @public
|
|
3175
3640
|
* <p>The resource type.</p>
|
|
3176
3641
|
* <p>The following are the supported resource types for Direct Connect:</p>
|
|
3177
3642
|
* <ul>
|
|
@@ -3250,14 +3715,17 @@ export interface GetNetworkResourceRelationshipsRequest {
|
|
|
3250
3715
|
*/
|
|
3251
3716
|
ResourceType?: string;
|
|
3252
3717
|
/**
|
|
3718
|
+
* @public
|
|
3253
3719
|
* <p>The ARN of the gateway.</p>
|
|
3254
3720
|
*/
|
|
3255
3721
|
ResourceArn?: string;
|
|
3256
3722
|
/**
|
|
3723
|
+
* @public
|
|
3257
3724
|
* <p>The maximum number of results to return.</p>
|
|
3258
3725
|
*/
|
|
3259
3726
|
MaxResults?: number;
|
|
3260
3727
|
/**
|
|
3728
|
+
* @public
|
|
3261
3729
|
* <p>The token for the next page of results.</p>
|
|
3262
3730
|
*/
|
|
3263
3731
|
NextToken?: string;
|
|
@@ -3268,10 +3736,12 @@ export interface GetNetworkResourceRelationshipsRequest {
|
|
|
3268
3736
|
*/
|
|
3269
3737
|
export interface Relationship {
|
|
3270
3738
|
/**
|
|
3739
|
+
* @public
|
|
3271
3740
|
* <p>The ARN of the resource.</p>
|
|
3272
3741
|
*/
|
|
3273
3742
|
From?: string;
|
|
3274
3743
|
/**
|
|
3744
|
+
* @public
|
|
3275
3745
|
* <p>The ARN of the resource.</p>
|
|
3276
3746
|
*/
|
|
3277
3747
|
To?: string;
|
|
@@ -3281,10 +3751,12 @@ export interface Relationship {
|
|
|
3281
3751
|
*/
|
|
3282
3752
|
export interface GetNetworkResourceRelationshipsResponse {
|
|
3283
3753
|
/**
|
|
3754
|
+
* @public
|
|
3284
3755
|
* <p>The resource relationships.</p>
|
|
3285
3756
|
*/
|
|
3286
3757
|
Relationships?: Relationship[];
|
|
3287
3758
|
/**
|
|
3759
|
+
* @public
|
|
3288
3760
|
* <p>The token for the next page of results.</p>
|
|
3289
3761
|
*/
|
|
3290
3762
|
NextToken?: string;
|
|
@@ -3294,26 +3766,32 @@ export interface GetNetworkResourceRelationshipsResponse {
|
|
|
3294
3766
|
*/
|
|
3295
3767
|
export interface GetNetworkResourcesRequest {
|
|
3296
3768
|
/**
|
|
3769
|
+
* @public
|
|
3297
3770
|
* <p>The ID of the global network.</p>
|
|
3298
3771
|
*/
|
|
3299
3772
|
GlobalNetworkId: string | undefined;
|
|
3300
3773
|
/**
|
|
3774
|
+
* @public
|
|
3301
3775
|
* <p>The ID of a core network.</p>
|
|
3302
3776
|
*/
|
|
3303
3777
|
CoreNetworkId?: string;
|
|
3304
3778
|
/**
|
|
3779
|
+
* @public
|
|
3305
3780
|
* <p>The ARN of the gateway.</p>
|
|
3306
3781
|
*/
|
|
3307
3782
|
RegisteredGatewayArn?: string;
|
|
3308
3783
|
/**
|
|
3784
|
+
* @public
|
|
3309
3785
|
* <p>The Amazon Web Services Region.</p>
|
|
3310
3786
|
*/
|
|
3311
3787
|
AwsRegion?: string;
|
|
3312
3788
|
/**
|
|
3789
|
+
* @public
|
|
3313
3790
|
* <p>The Amazon Web Services account ID.</p>
|
|
3314
3791
|
*/
|
|
3315
3792
|
AccountId?: string;
|
|
3316
3793
|
/**
|
|
3794
|
+
* @public
|
|
3317
3795
|
* <p>The resource type.</p>
|
|
3318
3796
|
* <p>The following are the supported resource types for Direct Connect:</p>
|
|
3319
3797
|
* <ul>
|
|
@@ -3392,14 +3870,17 @@ export interface GetNetworkResourcesRequest {
|
|
|
3392
3870
|
*/
|
|
3393
3871
|
ResourceType?: string;
|
|
3394
3872
|
/**
|
|
3873
|
+
* @public
|
|
3395
3874
|
* <p>The ARN of the resource.</p>
|
|
3396
3875
|
*/
|
|
3397
3876
|
ResourceArn?: string;
|
|
3398
3877
|
/**
|
|
3878
|
+
* @public
|
|
3399
3879
|
* <p>The maximum number of results to return.</p>
|
|
3400
3880
|
*/
|
|
3401
3881
|
MaxResults?: number;
|
|
3402
3882
|
/**
|
|
3883
|
+
* @public
|
|
3403
3884
|
* <p>The token for the next page of results.</p>
|
|
3404
3885
|
*/
|
|
3405
3886
|
NextToken?: string;
|
|
@@ -3410,22 +3891,27 @@ export interface GetNetworkResourcesRequest {
|
|
|
3410
3891
|
*/
|
|
3411
3892
|
export interface NetworkResource {
|
|
3412
3893
|
/**
|
|
3894
|
+
* @public
|
|
3413
3895
|
* <p>The ARN of the gateway.</p>
|
|
3414
3896
|
*/
|
|
3415
3897
|
RegisteredGatewayArn?: string;
|
|
3416
3898
|
/**
|
|
3899
|
+
* @public
|
|
3417
3900
|
* <p>The ID of a core network.</p>
|
|
3418
3901
|
*/
|
|
3419
3902
|
CoreNetworkId?: string;
|
|
3420
3903
|
/**
|
|
3904
|
+
* @public
|
|
3421
3905
|
* <p>The Amazon Web Services Region.</p>
|
|
3422
3906
|
*/
|
|
3423
3907
|
AwsRegion?: string;
|
|
3424
3908
|
/**
|
|
3909
|
+
* @public
|
|
3425
3910
|
* <p>The Amazon Web Services account ID.</p>
|
|
3426
3911
|
*/
|
|
3427
3912
|
AccountId?: string;
|
|
3428
3913
|
/**
|
|
3914
|
+
* @public
|
|
3429
3915
|
* <p>The resource type.</p>
|
|
3430
3916
|
* <p>The following are the supported resource types for Direct Connect:</p>
|
|
3431
3917
|
* <ul>
|
|
@@ -3504,26 +3990,32 @@ export interface NetworkResource {
|
|
|
3504
3990
|
*/
|
|
3505
3991
|
ResourceType?: string;
|
|
3506
3992
|
/**
|
|
3993
|
+
* @public
|
|
3507
3994
|
* <p>The ID of the resource.</p>
|
|
3508
3995
|
*/
|
|
3509
3996
|
ResourceId?: string;
|
|
3510
3997
|
/**
|
|
3998
|
+
* @public
|
|
3511
3999
|
* <p>The ARN of the resource.</p>
|
|
3512
4000
|
*/
|
|
3513
4001
|
ResourceArn?: string;
|
|
3514
4002
|
/**
|
|
4003
|
+
* @public
|
|
3515
4004
|
* <p>Information about the resource, in JSON format. Network Manager gets this information by describing the resource using its Describe API call.</p>
|
|
3516
4005
|
*/
|
|
3517
4006
|
Definition?: string;
|
|
3518
4007
|
/**
|
|
4008
|
+
* @public
|
|
3519
4009
|
* <p>The time that the resource definition was retrieved.</p>
|
|
3520
4010
|
*/
|
|
3521
4011
|
DefinitionTimestamp?: Date;
|
|
3522
4012
|
/**
|
|
4013
|
+
* @public
|
|
3523
4014
|
* <p>The tags.</p>
|
|
3524
4015
|
*/
|
|
3525
4016
|
Tags?: Tag[];
|
|
3526
4017
|
/**
|
|
4018
|
+
* @public
|
|
3527
4019
|
* <p>The resource metadata.</p>
|
|
3528
4020
|
*/
|
|
3529
4021
|
Metadata?: Record<string, string>;
|
|
@@ -3533,10 +4025,12 @@ export interface NetworkResource {
|
|
|
3533
4025
|
*/
|
|
3534
4026
|
export interface GetNetworkResourcesResponse {
|
|
3535
4027
|
/**
|
|
4028
|
+
* @public
|
|
3536
4029
|
* <p>The network resources.</p>
|
|
3537
4030
|
*/
|
|
3538
4031
|
NetworkResources?: NetworkResource[];
|
|
3539
4032
|
/**
|
|
4033
|
+
* @public
|
|
3540
4034
|
* <p>The token for the next page of results.</p>
|
|
3541
4035
|
*/
|
|
3542
4036
|
NextToken?: string;
|
|
@@ -3547,10 +4041,12 @@ export interface GetNetworkResourcesResponse {
|
|
|
3547
4041
|
*/
|
|
3548
4042
|
export interface RouteTableIdentifier {
|
|
3549
4043
|
/**
|
|
4044
|
+
* @public
|
|
3550
4045
|
* <p>The ARN of the transit gateway route table.</p>
|
|
3551
4046
|
*/
|
|
3552
4047
|
TransitGatewayRouteTableArn?: string;
|
|
3553
4048
|
/**
|
|
4049
|
+
* @public
|
|
3554
4050
|
* <p>The segment edge in a core network.</p>
|
|
3555
4051
|
*/
|
|
3556
4052
|
CoreNetworkSegmentEdge?: CoreNetworkSegmentEdgeIdentifier;
|
|
@@ -3584,42 +4080,52 @@ export type RouteType = (typeof RouteType)[keyof typeof RouteType];
|
|
|
3584
4080
|
*/
|
|
3585
4081
|
export interface GetNetworkRoutesRequest {
|
|
3586
4082
|
/**
|
|
4083
|
+
* @public
|
|
3587
4084
|
* <p>The ID of the global network.</p>
|
|
3588
4085
|
*/
|
|
3589
4086
|
GlobalNetworkId: string | undefined;
|
|
3590
4087
|
/**
|
|
4088
|
+
* @public
|
|
3591
4089
|
* <p>The ID of the route table.</p>
|
|
3592
4090
|
*/
|
|
3593
4091
|
RouteTableIdentifier: RouteTableIdentifier | undefined;
|
|
3594
4092
|
/**
|
|
4093
|
+
* @public
|
|
3595
4094
|
* <p>An exact CIDR block.</p>
|
|
3596
4095
|
*/
|
|
3597
4096
|
ExactCidrMatches?: string[];
|
|
3598
4097
|
/**
|
|
4098
|
+
* @public
|
|
3599
4099
|
* <p>The most specific route that matches the traffic (longest prefix match).</p>
|
|
3600
4100
|
*/
|
|
3601
4101
|
LongestPrefixMatches?: string[];
|
|
3602
4102
|
/**
|
|
4103
|
+
* @public
|
|
3603
4104
|
* <p>The routes with a subnet that match the specified CIDR filter.</p>
|
|
3604
4105
|
*/
|
|
3605
4106
|
SubnetOfMatches?: string[];
|
|
3606
4107
|
/**
|
|
4108
|
+
* @public
|
|
3607
4109
|
* <p>The routes with a CIDR that encompasses the CIDR filter. Example: If you specify 10.0.1.0/30, then the result returns 10.0.1.0/29.</p>
|
|
3608
4110
|
*/
|
|
3609
4111
|
SupernetOfMatches?: string[];
|
|
3610
4112
|
/**
|
|
4113
|
+
* @public
|
|
3611
4114
|
* <p>The IDs of the prefix lists.</p>
|
|
3612
4115
|
*/
|
|
3613
4116
|
PrefixListIds?: string[];
|
|
3614
4117
|
/**
|
|
4118
|
+
* @public
|
|
3615
4119
|
* <p>The route states.</p>
|
|
3616
4120
|
*/
|
|
3617
4121
|
States?: (RouteState | string)[];
|
|
3618
4122
|
/**
|
|
4123
|
+
* @public
|
|
3619
4124
|
* <p>The route types.</p>
|
|
3620
4125
|
*/
|
|
3621
4126
|
Types?: (RouteType | string)[];
|
|
3622
4127
|
/**
|
|
4128
|
+
* @public
|
|
3623
4129
|
* <p>Filter by route table destination. Possible Values: TRANSIT_GATEWAY_ATTACHMENT_ID, RESOURCE_ID, or RESOURCE_TYPE.</p>
|
|
3624
4130
|
*/
|
|
3625
4131
|
DestinationFilters?: Record<string, string[]>;
|
|
@@ -3630,26 +4136,32 @@ export interface GetNetworkRoutesRequest {
|
|
|
3630
4136
|
*/
|
|
3631
4137
|
export interface NetworkRouteDestination {
|
|
3632
4138
|
/**
|
|
4139
|
+
* @public
|
|
3633
4140
|
* <p>The ID of a core network attachment.</p>
|
|
3634
4141
|
*/
|
|
3635
4142
|
CoreNetworkAttachmentId?: string;
|
|
3636
4143
|
/**
|
|
4144
|
+
* @public
|
|
3637
4145
|
* <p>The ID of the transit gateway attachment.</p>
|
|
3638
4146
|
*/
|
|
3639
4147
|
TransitGatewayAttachmentId?: string;
|
|
3640
4148
|
/**
|
|
4149
|
+
* @public
|
|
3641
4150
|
* <p>The name of the segment.</p>
|
|
3642
4151
|
*/
|
|
3643
4152
|
SegmentName?: string;
|
|
3644
4153
|
/**
|
|
4154
|
+
* @public
|
|
3645
4155
|
* <p>The edge location for the network destination.</p>
|
|
3646
4156
|
*/
|
|
3647
4157
|
EdgeLocation?: string;
|
|
3648
4158
|
/**
|
|
4159
|
+
* @public
|
|
3649
4160
|
* <p>The resource type.</p>
|
|
3650
4161
|
*/
|
|
3651
4162
|
ResourceType?: string;
|
|
3652
4163
|
/**
|
|
4164
|
+
* @public
|
|
3653
4165
|
* <p>The ID of the resource.</p>
|
|
3654
4166
|
*/
|
|
3655
4167
|
ResourceId?: string;
|
|
@@ -3660,22 +4172,27 @@ export interface NetworkRouteDestination {
|
|
|
3660
4172
|
*/
|
|
3661
4173
|
export interface NetworkRoute {
|
|
3662
4174
|
/**
|
|
4175
|
+
* @public
|
|
3663
4176
|
* <p>A unique identifier for the route, such as a CIDR block.</p>
|
|
3664
4177
|
*/
|
|
3665
4178
|
DestinationCidrBlock?: string;
|
|
3666
4179
|
/**
|
|
4180
|
+
* @public
|
|
3667
4181
|
* <p>The destinations.</p>
|
|
3668
4182
|
*/
|
|
3669
4183
|
Destinations?: NetworkRouteDestination[];
|
|
3670
4184
|
/**
|
|
4185
|
+
* @public
|
|
3671
4186
|
* <p>The ID of the prefix list.</p>
|
|
3672
4187
|
*/
|
|
3673
4188
|
PrefixListId?: string;
|
|
3674
4189
|
/**
|
|
4190
|
+
* @public
|
|
3675
4191
|
* <p>The route state. The possible values are <code>active</code> and <code>blackhole</code>.</p>
|
|
3676
4192
|
*/
|
|
3677
4193
|
State?: RouteState | string;
|
|
3678
4194
|
/**
|
|
4195
|
+
* @public
|
|
3679
4196
|
* <p>The route type. The possible values are <code>propagated</code> and <code>static</code>.</p>
|
|
3680
4197
|
*/
|
|
3681
4198
|
Type?: RouteType | string;
|
|
@@ -3697,22 +4214,27 @@ export type RouteTableType = (typeof RouteTableType)[keyof typeof RouteTableType
|
|
|
3697
4214
|
*/
|
|
3698
4215
|
export interface GetNetworkRoutesResponse {
|
|
3699
4216
|
/**
|
|
4217
|
+
* @public
|
|
3700
4218
|
* <p>The ARN of the route table.</p>
|
|
3701
4219
|
*/
|
|
3702
4220
|
RouteTableArn?: string;
|
|
3703
4221
|
/**
|
|
4222
|
+
* @public
|
|
3704
4223
|
* <p>Describes a core network segment edge.</p>
|
|
3705
4224
|
*/
|
|
3706
4225
|
CoreNetworkSegmentEdge?: CoreNetworkSegmentEdgeIdentifier;
|
|
3707
4226
|
/**
|
|
4227
|
+
* @public
|
|
3708
4228
|
* <p>The route table type.</p>
|
|
3709
4229
|
*/
|
|
3710
4230
|
RouteTableType?: RouteTableType | string;
|
|
3711
4231
|
/**
|
|
4232
|
+
* @public
|
|
3712
4233
|
* <p>The route table creation time.</p>
|
|
3713
4234
|
*/
|
|
3714
4235
|
RouteTableTimestamp?: Date;
|
|
3715
4236
|
/**
|
|
4237
|
+
* @public
|
|
3716
4238
|
* <p>The network routes.</p>
|
|
3717
4239
|
*/
|
|
3718
4240
|
NetworkRoutes?: NetworkRoute[];
|
|
@@ -3722,26 +4244,32 @@ export interface GetNetworkRoutesResponse {
|
|
|
3722
4244
|
*/
|
|
3723
4245
|
export interface GetNetworkTelemetryRequest {
|
|
3724
4246
|
/**
|
|
4247
|
+
* @public
|
|
3725
4248
|
* <p>The ID of the global network.</p>
|
|
3726
4249
|
*/
|
|
3727
4250
|
GlobalNetworkId: string | undefined;
|
|
3728
4251
|
/**
|
|
4252
|
+
* @public
|
|
3729
4253
|
* <p>The ID of a core network.</p>
|
|
3730
4254
|
*/
|
|
3731
4255
|
CoreNetworkId?: string;
|
|
3732
4256
|
/**
|
|
4257
|
+
* @public
|
|
3733
4258
|
* <p>The ARN of the gateway.</p>
|
|
3734
4259
|
*/
|
|
3735
4260
|
RegisteredGatewayArn?: string;
|
|
3736
4261
|
/**
|
|
4262
|
+
* @public
|
|
3737
4263
|
* <p>The Amazon Web Services Region.</p>
|
|
3738
4264
|
*/
|
|
3739
4265
|
AwsRegion?: string;
|
|
3740
4266
|
/**
|
|
4267
|
+
* @public
|
|
3741
4268
|
* <p>The Amazon Web Services account ID.</p>
|
|
3742
4269
|
*/
|
|
3743
4270
|
AccountId?: string;
|
|
3744
4271
|
/**
|
|
4272
|
+
* @public
|
|
3745
4273
|
* <p>The resource type.</p>
|
|
3746
4274
|
* <p>The following are the supported resource types for Direct Connect:</p>
|
|
3747
4275
|
* <ul>
|
|
@@ -3820,14 +4348,17 @@ export interface GetNetworkTelemetryRequest {
|
|
|
3820
4348
|
*/
|
|
3821
4349
|
ResourceType?: string;
|
|
3822
4350
|
/**
|
|
4351
|
+
* @public
|
|
3823
4352
|
* <p>The ARN of the resource.</p>
|
|
3824
4353
|
*/
|
|
3825
4354
|
ResourceArn?: string;
|
|
3826
4355
|
/**
|
|
4356
|
+
* @public
|
|
3827
4357
|
* <p>The maximum number of results to return.</p>
|
|
3828
4358
|
*/
|
|
3829
4359
|
MaxResults?: number;
|
|
3830
4360
|
/**
|
|
4361
|
+
* @public
|
|
3831
4362
|
* <p>The token for the next page of results.</p>
|
|
3832
4363
|
*/
|
|
3833
4364
|
NextToken?: string;
|
|
@@ -3838,38 +4369,47 @@ export interface GetNetworkTelemetryRequest {
|
|
|
3838
4369
|
*/
|
|
3839
4370
|
export interface NetworkTelemetry {
|
|
3840
4371
|
/**
|
|
4372
|
+
* @public
|
|
3841
4373
|
* <p>The ARN of the gateway.</p>
|
|
3842
4374
|
*/
|
|
3843
4375
|
RegisteredGatewayArn?: string;
|
|
3844
4376
|
/**
|
|
4377
|
+
* @public
|
|
3845
4378
|
* <p>The ID of a core network.</p>
|
|
3846
4379
|
*/
|
|
3847
4380
|
CoreNetworkId?: string;
|
|
3848
4381
|
/**
|
|
4382
|
+
* @public
|
|
3849
4383
|
* <p>The Amazon Web Services Region.</p>
|
|
3850
4384
|
*/
|
|
3851
4385
|
AwsRegion?: string;
|
|
3852
4386
|
/**
|
|
4387
|
+
* @public
|
|
3853
4388
|
* <p>The Amazon Web Services account ID.</p>
|
|
3854
4389
|
*/
|
|
3855
4390
|
AccountId?: string;
|
|
3856
4391
|
/**
|
|
4392
|
+
* @public
|
|
3857
4393
|
* <p>The resource type.</p>
|
|
3858
4394
|
*/
|
|
3859
4395
|
ResourceType?: string;
|
|
3860
4396
|
/**
|
|
4397
|
+
* @public
|
|
3861
4398
|
* <p>The ID of the resource.</p>
|
|
3862
4399
|
*/
|
|
3863
4400
|
ResourceId?: string;
|
|
3864
4401
|
/**
|
|
4402
|
+
* @public
|
|
3865
4403
|
* <p>The ARN of the resource.</p>
|
|
3866
4404
|
*/
|
|
3867
4405
|
ResourceArn?: string;
|
|
3868
4406
|
/**
|
|
4407
|
+
* @public
|
|
3869
4408
|
* <p>The address.</p>
|
|
3870
4409
|
*/
|
|
3871
4410
|
Address?: string;
|
|
3872
4411
|
/**
|
|
4412
|
+
* @public
|
|
3873
4413
|
* <p>The connection health.</p>
|
|
3874
4414
|
*/
|
|
3875
4415
|
Health?: ConnectionHealth;
|
|
@@ -3879,10 +4419,12 @@ export interface NetworkTelemetry {
|
|
|
3879
4419
|
*/
|
|
3880
4420
|
export interface GetNetworkTelemetryResponse {
|
|
3881
4421
|
/**
|
|
4422
|
+
* @public
|
|
3882
4423
|
* <p>The network telemetry.</p>
|
|
3883
4424
|
*/
|
|
3884
4425
|
NetworkTelemetry?: NetworkTelemetry[];
|
|
3885
4426
|
/**
|
|
4427
|
+
* @public
|
|
3886
4428
|
* <p>The token for the next page of results.</p>
|
|
3887
4429
|
*/
|
|
3888
4430
|
NextToken?: string;
|
|
@@ -3892,6 +4434,7 @@ export interface GetNetworkTelemetryResponse {
|
|
|
3892
4434
|
*/
|
|
3893
4435
|
export interface GetResourcePolicyRequest {
|
|
3894
4436
|
/**
|
|
4437
|
+
* @public
|
|
3895
4438
|
* <p>The ARN of the resource.</p>
|
|
3896
4439
|
*/
|
|
3897
4440
|
ResourceArn: string | undefined;
|
|
@@ -3901,6 +4444,7 @@ export interface GetResourcePolicyRequest {
|
|
|
3901
4444
|
*/
|
|
3902
4445
|
export interface GetResourcePolicyResponse {
|
|
3903
4446
|
/**
|
|
4447
|
+
* @public
|
|
3904
4448
|
* <p>The resource policy document.</p>
|
|
3905
4449
|
*/
|
|
3906
4450
|
PolicyDocument?: __LazyJsonString | string;
|
|
@@ -3910,10 +4454,12 @@ export interface GetResourcePolicyResponse {
|
|
|
3910
4454
|
*/
|
|
3911
4455
|
export interface GetRouteAnalysisRequest {
|
|
3912
4456
|
/**
|
|
4457
|
+
* @public
|
|
3913
4458
|
* <p>The ID of the global network.</p>
|
|
3914
4459
|
*/
|
|
3915
4460
|
GlobalNetworkId: string | undefined;
|
|
3916
4461
|
/**
|
|
4462
|
+
* @public
|
|
3917
4463
|
* <p>The ID of the route analysis.</p>
|
|
3918
4464
|
*/
|
|
3919
4465
|
RouteAnalysisId: string | undefined;
|
|
@@ -3924,14 +4470,17 @@ export interface GetRouteAnalysisRequest {
|
|
|
3924
4470
|
*/
|
|
3925
4471
|
export interface RouteAnalysisEndpointOptions {
|
|
3926
4472
|
/**
|
|
4473
|
+
* @public
|
|
3927
4474
|
* <p>The ARN of the transit gateway attachment.</p>
|
|
3928
4475
|
*/
|
|
3929
4476
|
TransitGatewayAttachmentArn?: string;
|
|
3930
4477
|
/**
|
|
4478
|
+
* @public
|
|
3931
4479
|
* <p>The ARN of the transit gateway.</p>
|
|
3932
4480
|
*/
|
|
3933
4481
|
TransitGatewayArn?: string;
|
|
3934
4482
|
/**
|
|
4483
|
+
* @public
|
|
3935
4484
|
* <p>The IP address.</p>
|
|
3936
4485
|
*/
|
|
3937
4486
|
IpAddress?: string;
|
|
@@ -3975,11 +4524,13 @@ export type RouteAnalysisCompletionResultCode = (typeof RouteAnalysisCompletionR
|
|
|
3975
4524
|
*/
|
|
3976
4525
|
export interface RouteAnalysisCompletion {
|
|
3977
4526
|
/**
|
|
4527
|
+
* @public
|
|
3978
4528
|
* <p>The result of the analysis. If the status is <code>NOT_CONNECTED</code>, check the
|
|
3979
4529
|
* reason code.</p>
|
|
3980
4530
|
*/
|
|
3981
4531
|
ResultCode?: RouteAnalysisCompletionResultCode | string;
|
|
3982
4532
|
/**
|
|
4533
|
+
* @public
|
|
3983
4534
|
* <p>The reason code. Available only if a connection is not found.</p>
|
|
3984
4535
|
* <ul>
|
|
3985
4536
|
* <li>
|
|
@@ -4022,6 +4573,7 @@ export interface RouteAnalysisCompletion {
|
|
|
4022
4573
|
*/
|
|
4023
4574
|
ReasonCode?: RouteAnalysisCompletionReasonCode | string;
|
|
4024
4575
|
/**
|
|
4576
|
+
* @public
|
|
4025
4577
|
* <p>Additional information about the path. Available only if a connection is not found.</p>
|
|
4026
4578
|
*/
|
|
4027
4579
|
ReasonContext?: Record<string, string>;
|
|
@@ -4032,26 +4584,32 @@ export interface RouteAnalysisCompletion {
|
|
|
4032
4584
|
*/
|
|
4033
4585
|
export interface NetworkResourceSummary {
|
|
4034
4586
|
/**
|
|
4587
|
+
* @public
|
|
4035
4588
|
* <p>The ARN of the gateway.</p>
|
|
4036
4589
|
*/
|
|
4037
4590
|
RegisteredGatewayArn?: string;
|
|
4038
4591
|
/**
|
|
4592
|
+
* @public
|
|
4039
4593
|
* <p>The ARN of the resource.</p>
|
|
4040
4594
|
*/
|
|
4041
4595
|
ResourceArn?: string;
|
|
4042
4596
|
/**
|
|
4597
|
+
* @public
|
|
4043
4598
|
* <p>The resource type.</p>
|
|
4044
4599
|
*/
|
|
4045
4600
|
ResourceType?: string;
|
|
4046
4601
|
/**
|
|
4602
|
+
* @public
|
|
4047
4603
|
* <p>Information about the resource, in JSON format. Network Manager gets this information by describing the resource using its Describe API call.</p>
|
|
4048
4604
|
*/
|
|
4049
4605
|
Definition?: string;
|
|
4050
4606
|
/**
|
|
4607
|
+
* @public
|
|
4051
4608
|
* <p>The value for the Name tag.</p>
|
|
4052
4609
|
*/
|
|
4053
4610
|
NameTag?: string;
|
|
4054
4611
|
/**
|
|
4612
|
+
* @public
|
|
4055
4613
|
* <p>Indicates whether this is a middlebox appliance.</p>
|
|
4056
4614
|
*/
|
|
4057
4615
|
IsMiddlebox?: boolean;
|
|
@@ -4062,14 +4620,17 @@ export interface NetworkResourceSummary {
|
|
|
4062
4620
|
*/
|
|
4063
4621
|
export interface PathComponent {
|
|
4064
4622
|
/**
|
|
4623
|
+
* @public
|
|
4065
4624
|
* <p>The sequence number in the path. The destination is 0.</p>
|
|
4066
4625
|
*/
|
|
4067
4626
|
Sequence?: number;
|
|
4068
4627
|
/**
|
|
4628
|
+
* @public
|
|
4069
4629
|
* <p>The resource.</p>
|
|
4070
4630
|
*/
|
|
4071
4631
|
Resource?: NetworkResourceSummary;
|
|
4072
4632
|
/**
|
|
4633
|
+
* @public
|
|
4073
4634
|
* <p>The destination CIDR block in the route table.</p>
|
|
4074
4635
|
*/
|
|
4075
4636
|
DestinationCidrBlock?: string;
|
|
@@ -4080,10 +4641,12 @@ export interface PathComponent {
|
|
|
4080
4641
|
*/
|
|
4081
4642
|
export interface RouteAnalysisPath {
|
|
4082
4643
|
/**
|
|
4644
|
+
* @public
|
|
4083
4645
|
* <p>The status of the analysis at completion.</p>
|
|
4084
4646
|
*/
|
|
4085
4647
|
CompletionStatus?: RouteAnalysisCompletion;
|
|
4086
4648
|
/**
|
|
4649
|
+
* @public
|
|
4087
4650
|
* <p>The route analysis path.</p>
|
|
4088
4651
|
*/
|
|
4089
4652
|
Path?: PathComponent[];
|
|
@@ -4107,47 +4670,58 @@ export type RouteAnalysisStatus = (typeof RouteAnalysisStatus)[keyof typeof Rout
|
|
|
4107
4670
|
*/
|
|
4108
4671
|
export interface RouteAnalysis {
|
|
4109
4672
|
/**
|
|
4673
|
+
* @public
|
|
4110
4674
|
* <p>The ID of the global network.</p>
|
|
4111
4675
|
*/
|
|
4112
4676
|
GlobalNetworkId?: string;
|
|
4113
4677
|
/**
|
|
4678
|
+
* @public
|
|
4114
4679
|
* <p>The ID of the AWS account that created the route analysis.</p>
|
|
4115
4680
|
*/
|
|
4116
4681
|
OwnerAccountId?: string;
|
|
4117
4682
|
/**
|
|
4683
|
+
* @public
|
|
4118
4684
|
* <p>The ID of the route analysis.</p>
|
|
4119
4685
|
*/
|
|
4120
4686
|
RouteAnalysisId?: string;
|
|
4121
4687
|
/**
|
|
4688
|
+
* @public
|
|
4122
4689
|
* <p>The time that the analysis started.</p>
|
|
4123
4690
|
*/
|
|
4124
4691
|
StartTimestamp?: Date;
|
|
4125
4692
|
/**
|
|
4693
|
+
* @public
|
|
4126
4694
|
* <p>The status of the route analysis.</p>
|
|
4127
4695
|
*/
|
|
4128
4696
|
Status?: RouteAnalysisStatus | string;
|
|
4129
4697
|
/**
|
|
4698
|
+
* @public
|
|
4130
4699
|
* <p>The source.</p>
|
|
4131
4700
|
*/
|
|
4132
4701
|
Source?: RouteAnalysisEndpointOptions;
|
|
4133
4702
|
/**
|
|
4703
|
+
* @public
|
|
4134
4704
|
* <p>The destination.</p>
|
|
4135
4705
|
*/
|
|
4136
4706
|
Destination?: RouteAnalysisEndpointOptions;
|
|
4137
4707
|
/**
|
|
4708
|
+
* @public
|
|
4138
4709
|
* <p>Indicates whether to analyze the return path. The return path is not analyzed if the forward path
|
|
4139
4710
|
* analysis does not succeed.</p>
|
|
4140
4711
|
*/
|
|
4141
4712
|
IncludeReturnPath?: boolean;
|
|
4142
4713
|
/**
|
|
4714
|
+
* @public
|
|
4143
4715
|
* <p>Indicates whether to include the location of middlebox appliances in the route analysis.</p>
|
|
4144
4716
|
*/
|
|
4145
4717
|
UseMiddleboxes?: boolean;
|
|
4146
4718
|
/**
|
|
4719
|
+
* @public
|
|
4147
4720
|
* <p>The forward path.</p>
|
|
4148
4721
|
*/
|
|
4149
4722
|
ForwardPath?: RouteAnalysisPath;
|
|
4150
4723
|
/**
|
|
4724
|
+
* @public
|
|
4151
4725
|
* <p>The return path.</p>
|
|
4152
4726
|
*/
|
|
4153
4727
|
ReturnPath?: RouteAnalysisPath;
|
|
@@ -4157,6 +4731,7 @@ export interface RouteAnalysis {
|
|
|
4157
4731
|
*/
|
|
4158
4732
|
export interface GetRouteAnalysisResponse {
|
|
4159
4733
|
/**
|
|
4734
|
+
* @public
|
|
4160
4735
|
* <p>The route analysis.</p>
|
|
4161
4736
|
*/
|
|
4162
4737
|
RouteAnalysis?: RouteAnalysis;
|
|
@@ -4166,18 +4741,22 @@ export interface GetRouteAnalysisResponse {
|
|
|
4166
4741
|
*/
|
|
4167
4742
|
export interface GetSitesRequest {
|
|
4168
4743
|
/**
|
|
4744
|
+
* @public
|
|
4169
4745
|
* <p>The ID of the global network.</p>
|
|
4170
4746
|
*/
|
|
4171
4747
|
GlobalNetworkId: string | undefined;
|
|
4172
4748
|
/**
|
|
4749
|
+
* @public
|
|
4173
4750
|
* <p>One or more site IDs. The maximum is 10.</p>
|
|
4174
4751
|
*/
|
|
4175
4752
|
SiteIds?: string[];
|
|
4176
4753
|
/**
|
|
4754
|
+
* @public
|
|
4177
4755
|
* <p>The maximum number of results to return.</p>
|
|
4178
4756
|
*/
|
|
4179
4757
|
MaxResults?: number;
|
|
4180
4758
|
/**
|
|
4759
|
+
* @public
|
|
4181
4760
|
* <p>The token for the next page of results.</p>
|
|
4182
4761
|
*/
|
|
4183
4762
|
NextToken?: string;
|
|
@@ -4187,10 +4766,12 @@ export interface GetSitesRequest {
|
|
|
4187
4766
|
*/
|
|
4188
4767
|
export interface GetSitesResponse {
|
|
4189
4768
|
/**
|
|
4769
|
+
* @public
|
|
4190
4770
|
* <p>The sites.</p>
|
|
4191
4771
|
*/
|
|
4192
4772
|
Sites?: Site[];
|
|
4193
4773
|
/**
|
|
4774
|
+
* @public
|
|
4194
4775
|
* <p>The token for the next page of results.</p>
|
|
4195
4776
|
*/
|
|
4196
4777
|
NextToken?: string;
|
|
@@ -4200,6 +4781,7 @@ export interface GetSitesResponse {
|
|
|
4200
4781
|
*/
|
|
4201
4782
|
export interface GetSiteToSiteVpnAttachmentRequest {
|
|
4202
4783
|
/**
|
|
4784
|
+
* @public
|
|
4203
4785
|
* <p>The ID of the attachment.</p>
|
|
4204
4786
|
*/
|
|
4205
4787
|
AttachmentId: string | undefined;
|
|
@@ -4209,6 +4791,7 @@ export interface GetSiteToSiteVpnAttachmentRequest {
|
|
|
4209
4791
|
*/
|
|
4210
4792
|
export interface GetSiteToSiteVpnAttachmentResponse {
|
|
4211
4793
|
/**
|
|
4794
|
+
* @public
|
|
4212
4795
|
* <p>Describes the site-to-site attachment.</p>
|
|
4213
4796
|
*/
|
|
4214
4797
|
SiteToSiteVpnAttachment?: SiteToSiteVpnAttachment;
|
|
@@ -4218,18 +4801,22 @@ export interface GetSiteToSiteVpnAttachmentResponse {
|
|
|
4218
4801
|
*/
|
|
4219
4802
|
export interface GetTransitGatewayConnectPeerAssociationsRequest {
|
|
4220
4803
|
/**
|
|
4804
|
+
* @public
|
|
4221
4805
|
* <p>The ID of the global network.</p>
|
|
4222
4806
|
*/
|
|
4223
4807
|
GlobalNetworkId: string | undefined;
|
|
4224
4808
|
/**
|
|
4809
|
+
* @public
|
|
4225
4810
|
* <p>One or more transit gateway Connect peer Amazon Resource Names (ARNs).</p>
|
|
4226
4811
|
*/
|
|
4227
4812
|
TransitGatewayConnectPeerArns?: string[];
|
|
4228
4813
|
/**
|
|
4814
|
+
* @public
|
|
4229
4815
|
* <p>The maximum number of results to return.</p>
|
|
4230
4816
|
*/
|
|
4231
4817
|
MaxResults?: number;
|
|
4232
4818
|
/**
|
|
4819
|
+
* @public
|
|
4233
4820
|
* <p>The token for the next page of results.</p>
|
|
4234
4821
|
*/
|
|
4235
4822
|
NextToken?: string;
|
|
@@ -4239,10 +4826,12 @@ export interface GetTransitGatewayConnectPeerAssociationsRequest {
|
|
|
4239
4826
|
*/
|
|
4240
4827
|
export interface GetTransitGatewayConnectPeerAssociationsResponse {
|
|
4241
4828
|
/**
|
|
4829
|
+
* @public
|
|
4242
4830
|
* <p>Information about the transit gateway Connect peer associations.</p>
|
|
4243
4831
|
*/
|
|
4244
4832
|
TransitGatewayConnectPeerAssociations?: TransitGatewayConnectPeerAssociation[];
|
|
4245
4833
|
/**
|
|
4834
|
+
* @public
|
|
4246
4835
|
* <p>The token to use for the next page of results.</p>
|
|
4247
4836
|
*/
|
|
4248
4837
|
NextToken?: string;
|
|
@@ -4252,6 +4841,7 @@ export interface GetTransitGatewayConnectPeerAssociationsResponse {
|
|
|
4252
4841
|
*/
|
|
4253
4842
|
export interface GetTransitGatewayPeeringRequest {
|
|
4254
4843
|
/**
|
|
4844
|
+
* @public
|
|
4255
4845
|
* <p>The ID of the peering request.</p>
|
|
4256
4846
|
*/
|
|
4257
4847
|
PeeringId: string | undefined;
|
|
@@ -4261,6 +4851,7 @@ export interface GetTransitGatewayPeeringRequest {
|
|
|
4261
4851
|
*/
|
|
4262
4852
|
export interface GetTransitGatewayPeeringResponse {
|
|
4263
4853
|
/**
|
|
4854
|
+
* @public
|
|
4264
4855
|
* <p>Returns information about a transit gateway peering. </p>
|
|
4265
4856
|
*/
|
|
4266
4857
|
TransitGatewayPeering?: TransitGatewayPeering;
|
|
@@ -4270,19 +4861,23 @@ export interface GetTransitGatewayPeeringResponse {
|
|
|
4270
4861
|
*/
|
|
4271
4862
|
export interface GetTransitGatewayRegistrationsRequest {
|
|
4272
4863
|
/**
|
|
4864
|
+
* @public
|
|
4273
4865
|
* <p>The ID of the global network.</p>
|
|
4274
4866
|
*/
|
|
4275
4867
|
GlobalNetworkId: string | undefined;
|
|
4276
4868
|
/**
|
|
4869
|
+
* @public
|
|
4277
4870
|
* <p>The Amazon Resource Names (ARNs) of one or more transit gateways. The maximum is
|
|
4278
4871
|
* 10.</p>
|
|
4279
4872
|
*/
|
|
4280
4873
|
TransitGatewayArns?: string[];
|
|
4281
4874
|
/**
|
|
4875
|
+
* @public
|
|
4282
4876
|
* <p>The maximum number of results to return.</p>
|
|
4283
4877
|
*/
|
|
4284
4878
|
MaxResults?: number;
|
|
4285
4879
|
/**
|
|
4880
|
+
* @public
|
|
4286
4881
|
* <p>The token for the next page of results.</p>
|
|
4287
4882
|
*/
|
|
4288
4883
|
NextToken?: string;
|
|
@@ -4292,10 +4887,12 @@ export interface GetTransitGatewayRegistrationsRequest {
|
|
|
4292
4887
|
*/
|
|
4293
4888
|
export interface GetTransitGatewayRegistrationsResponse {
|
|
4294
4889
|
/**
|
|
4890
|
+
* @public
|
|
4295
4891
|
* <p>The transit gateway registrations.</p>
|
|
4296
4892
|
*/
|
|
4297
4893
|
TransitGatewayRegistrations?: TransitGatewayRegistration[];
|
|
4298
4894
|
/**
|
|
4895
|
+
* @public
|
|
4299
4896
|
* <p>The token for the next page of results.</p>
|
|
4300
4897
|
*/
|
|
4301
4898
|
NextToken?: string;
|
|
@@ -4305,6 +4902,7 @@ export interface GetTransitGatewayRegistrationsResponse {
|
|
|
4305
4902
|
*/
|
|
4306
4903
|
export interface GetTransitGatewayRouteTableAttachmentRequest {
|
|
4307
4904
|
/**
|
|
4905
|
+
* @public
|
|
4308
4906
|
* <p>The ID of the transit gateway route table attachment.</p>
|
|
4309
4907
|
*/
|
|
4310
4908
|
AttachmentId: string | undefined;
|
|
@@ -4314,6 +4912,7 @@ export interface GetTransitGatewayRouteTableAttachmentRequest {
|
|
|
4314
4912
|
*/
|
|
4315
4913
|
export interface GetTransitGatewayRouteTableAttachmentResponse {
|
|
4316
4914
|
/**
|
|
4915
|
+
* @public
|
|
4317
4916
|
* <p>Returns information about the transit gateway route table attachment.</p>
|
|
4318
4917
|
*/
|
|
4319
4918
|
TransitGatewayRouteTableAttachment?: TransitGatewayRouteTableAttachment;
|
|
@@ -4323,6 +4922,7 @@ export interface GetTransitGatewayRouteTableAttachmentResponse {
|
|
|
4323
4922
|
*/
|
|
4324
4923
|
export interface GetVpcAttachmentRequest {
|
|
4325
4924
|
/**
|
|
4925
|
+
* @public
|
|
4326
4926
|
* <p>The ID of the attachment.</p>
|
|
4327
4927
|
*/
|
|
4328
4928
|
AttachmentId: string | undefined;
|
|
@@ -4332,6 +4932,7 @@ export interface GetVpcAttachmentRequest {
|
|
|
4332
4932
|
*/
|
|
4333
4933
|
export interface GetVpcAttachmentResponse {
|
|
4334
4934
|
/**
|
|
4935
|
+
* @public
|
|
4335
4936
|
* <p>Returns details about a VPC attachment.</p>
|
|
4336
4937
|
*/
|
|
4337
4938
|
VpcAttachment?: VpcAttachment;
|
|
@@ -4341,26 +4942,32 @@ export interface GetVpcAttachmentResponse {
|
|
|
4341
4942
|
*/
|
|
4342
4943
|
export interface ListAttachmentsRequest {
|
|
4343
4944
|
/**
|
|
4945
|
+
* @public
|
|
4344
4946
|
* <p>The ID of a core network.</p>
|
|
4345
4947
|
*/
|
|
4346
4948
|
CoreNetworkId?: string;
|
|
4347
4949
|
/**
|
|
4950
|
+
* @public
|
|
4348
4951
|
* <p>The type of attachment.</p>
|
|
4349
4952
|
*/
|
|
4350
4953
|
AttachmentType?: AttachmentType | string;
|
|
4351
4954
|
/**
|
|
4955
|
+
* @public
|
|
4352
4956
|
* <p>The Region where the edge is located.</p>
|
|
4353
4957
|
*/
|
|
4354
4958
|
EdgeLocation?: string;
|
|
4355
4959
|
/**
|
|
4960
|
+
* @public
|
|
4356
4961
|
* <p>The state of the attachment.</p>
|
|
4357
4962
|
*/
|
|
4358
4963
|
State?: AttachmentState | string;
|
|
4359
4964
|
/**
|
|
4965
|
+
* @public
|
|
4360
4966
|
* <p>The maximum number of results to return.</p>
|
|
4361
4967
|
*/
|
|
4362
4968
|
MaxResults?: number;
|
|
4363
4969
|
/**
|
|
4970
|
+
* @public
|
|
4364
4971
|
* <p>The token for the next page of results.</p>
|
|
4365
4972
|
*/
|
|
4366
4973
|
NextToken?: string;
|
|
@@ -4370,10 +4977,12 @@ export interface ListAttachmentsRequest {
|
|
|
4370
4977
|
*/
|
|
4371
4978
|
export interface ListAttachmentsResponse {
|
|
4372
4979
|
/**
|
|
4980
|
+
* @public
|
|
4373
4981
|
* <p>Describes the list of attachments.</p>
|
|
4374
4982
|
*/
|
|
4375
4983
|
Attachments?: Attachment[];
|
|
4376
4984
|
/**
|
|
4985
|
+
* @public
|
|
4377
4986
|
* <p>The token for the next page of results.</p>
|
|
4378
4987
|
*/
|
|
4379
4988
|
NextToken?: string;
|
|
@@ -4383,18 +4992,22 @@ export interface ListAttachmentsResponse {
|
|
|
4383
4992
|
*/
|
|
4384
4993
|
export interface ListConnectPeersRequest {
|
|
4385
4994
|
/**
|
|
4995
|
+
* @public
|
|
4386
4996
|
* <p>The ID of a core network.</p>
|
|
4387
4997
|
*/
|
|
4388
4998
|
CoreNetworkId?: string;
|
|
4389
4999
|
/**
|
|
5000
|
+
* @public
|
|
4390
5001
|
* <p>The ID of the attachment.</p>
|
|
4391
5002
|
*/
|
|
4392
5003
|
ConnectAttachmentId?: string;
|
|
4393
5004
|
/**
|
|
5005
|
+
* @public
|
|
4394
5006
|
* <p>The maximum number of results to return.</p>
|
|
4395
5007
|
*/
|
|
4396
5008
|
MaxResults?: number;
|
|
4397
5009
|
/**
|
|
5010
|
+
* @public
|
|
4398
5011
|
* <p>The token for the next page of results.</p>
|
|
4399
5012
|
*/
|
|
4400
5013
|
NextToken?: string;
|
|
@@ -4404,10 +5017,12 @@ export interface ListConnectPeersRequest {
|
|
|
4404
5017
|
*/
|
|
4405
5018
|
export interface ListConnectPeersResponse {
|
|
4406
5019
|
/**
|
|
5020
|
+
* @public
|
|
4407
5021
|
* <p>Describes the Connect peers.</p>
|
|
4408
5022
|
*/
|
|
4409
5023
|
ConnectPeers?: ConnectPeerSummary[];
|
|
4410
5024
|
/**
|
|
5025
|
+
* @public
|
|
4411
5026
|
* <p>The token for the next page of results.</p>
|
|
4412
5027
|
*/
|
|
4413
5028
|
NextToken?: string;
|
|
@@ -4417,14 +5032,17 @@ export interface ListConnectPeersResponse {
|
|
|
4417
5032
|
*/
|
|
4418
5033
|
export interface ListCoreNetworkPolicyVersionsRequest {
|
|
4419
5034
|
/**
|
|
5035
|
+
* @public
|
|
4420
5036
|
* <p>The ID of a core network.</p>
|
|
4421
5037
|
*/
|
|
4422
5038
|
CoreNetworkId: string | undefined;
|
|
4423
5039
|
/**
|
|
5040
|
+
* @public
|
|
4424
5041
|
* <p>The maximum number of results to return.</p>
|
|
4425
5042
|
*/
|
|
4426
5043
|
MaxResults?: number;
|
|
4427
5044
|
/**
|
|
5045
|
+
* @public
|
|
4428
5046
|
* <p>The token for the next page of results.</p>
|
|
4429
5047
|
*/
|
|
4430
5048
|
NextToken?: string;
|
|
@@ -4434,10 +5052,12 @@ export interface ListCoreNetworkPolicyVersionsRequest {
|
|
|
4434
5052
|
*/
|
|
4435
5053
|
export interface ListCoreNetworkPolicyVersionsResponse {
|
|
4436
5054
|
/**
|
|
5055
|
+
* @public
|
|
4437
5056
|
* <p>Describes core network policy versions.</p>
|
|
4438
5057
|
*/
|
|
4439
5058
|
CoreNetworkPolicyVersions?: CoreNetworkPolicyVersion[];
|
|
4440
5059
|
/**
|
|
5060
|
+
* @public
|
|
4441
5061
|
* <p>The token for the next page of results.</p>
|
|
4442
5062
|
*/
|
|
4443
5063
|
NextToken?: string;
|
|
@@ -4447,10 +5067,12 @@ export interface ListCoreNetworkPolicyVersionsResponse {
|
|
|
4447
5067
|
*/
|
|
4448
5068
|
export interface ListCoreNetworksRequest {
|
|
4449
5069
|
/**
|
|
5070
|
+
* @public
|
|
4450
5071
|
* <p>The maximum number of results to return.</p>
|
|
4451
5072
|
*/
|
|
4452
5073
|
MaxResults?: number;
|
|
4453
5074
|
/**
|
|
5075
|
+
* @public
|
|
4454
5076
|
* <p>The token for the next page of results.</p>
|
|
4455
5077
|
*/
|
|
4456
5078
|
NextToken?: string;
|
|
@@ -4460,10 +5082,12 @@ export interface ListCoreNetworksRequest {
|
|
|
4460
5082
|
*/
|
|
4461
5083
|
export interface ListCoreNetworksResponse {
|
|
4462
5084
|
/**
|
|
5085
|
+
* @public
|
|
4463
5086
|
* <p>Describes the list of core networks.</p>
|
|
4464
5087
|
*/
|
|
4465
5088
|
CoreNetworks?: CoreNetworkSummary[];
|
|
4466
5089
|
/**
|
|
5090
|
+
* @public
|
|
4467
5091
|
* <p>The token for the next page of results.</p>
|
|
4468
5092
|
*/
|
|
4469
5093
|
NextToken?: string;
|
|
@@ -4473,10 +5097,12 @@ export interface ListCoreNetworksResponse {
|
|
|
4473
5097
|
*/
|
|
4474
5098
|
export interface ListOrganizationServiceAccessStatusRequest {
|
|
4475
5099
|
/**
|
|
5100
|
+
* @public
|
|
4476
5101
|
* <p>The maximum number of results to return.</p>
|
|
4477
5102
|
*/
|
|
4478
5103
|
MaxResults?: number;
|
|
4479
5104
|
/**
|
|
5105
|
+
* @public
|
|
4480
5106
|
* <p>The token for the next page of results.</p>
|
|
4481
5107
|
*/
|
|
4482
5108
|
NextToken?: string;
|
|
@@ -4487,18 +5113,22 @@ export interface ListOrganizationServiceAccessStatusRequest {
|
|
|
4487
5113
|
*/
|
|
4488
5114
|
export interface OrganizationStatus {
|
|
4489
5115
|
/**
|
|
5116
|
+
* @public
|
|
4490
5117
|
* <p>The ID of an Amazon Web Services Organization.</p>
|
|
4491
5118
|
*/
|
|
4492
5119
|
OrganizationId?: string;
|
|
4493
5120
|
/**
|
|
5121
|
+
* @public
|
|
4494
5122
|
* <p>The status of the organization's AWS service access. This will be <code>ENABLED</code> or <code>DISABLED</code>.</p>
|
|
4495
5123
|
*/
|
|
4496
5124
|
OrganizationAwsServiceAccessStatus?: string;
|
|
4497
5125
|
/**
|
|
5126
|
+
* @public
|
|
4498
5127
|
* <p>The status of the SLR deployment for the account. This will be either <code>SUCCEEDED</code> or <code>IN_PROGRESS</code>.</p>
|
|
4499
5128
|
*/
|
|
4500
5129
|
SLRDeploymentStatus?: string;
|
|
4501
5130
|
/**
|
|
5131
|
+
* @public
|
|
4502
5132
|
* <p>The current service-linked role (SLR) deployment status for an Amazon Web Services Organization's accounts. This will be either <code>SUCCEEDED</code> or <code>IN_PROGRESS</code>.</p>
|
|
4503
5133
|
*/
|
|
4504
5134
|
AccountStatusList?: AccountStatus[];
|
|
@@ -4508,10 +5138,12 @@ export interface OrganizationStatus {
|
|
|
4508
5138
|
*/
|
|
4509
5139
|
export interface ListOrganizationServiceAccessStatusResponse {
|
|
4510
5140
|
/**
|
|
5141
|
+
* @public
|
|
4511
5142
|
* <p>Displays the status of an Amazon Web Services Organization.</p>
|
|
4512
5143
|
*/
|
|
4513
5144
|
OrganizationStatus?: OrganizationStatus;
|
|
4514
5145
|
/**
|
|
5146
|
+
* @public
|
|
4515
5147
|
* <p>The token for the next page of results.</p>
|
|
4516
5148
|
*/
|
|
4517
5149
|
NextToken?: string;
|
|
@@ -4521,26 +5153,32 @@ export interface ListOrganizationServiceAccessStatusResponse {
|
|
|
4521
5153
|
*/
|
|
4522
5154
|
export interface ListPeeringsRequest {
|
|
4523
5155
|
/**
|
|
5156
|
+
* @public
|
|
4524
5157
|
* <p>The ID of a core network.</p>
|
|
4525
5158
|
*/
|
|
4526
5159
|
CoreNetworkId?: string;
|
|
4527
5160
|
/**
|
|
5161
|
+
* @public
|
|
4528
5162
|
* <p>Returns a list of a peering requests.</p>
|
|
4529
5163
|
*/
|
|
4530
5164
|
PeeringType?: PeeringType | string;
|
|
4531
5165
|
/**
|
|
5166
|
+
* @public
|
|
4532
5167
|
* <p>Returns a list edge locations for the </p>
|
|
4533
5168
|
*/
|
|
4534
5169
|
EdgeLocation?: string;
|
|
4535
5170
|
/**
|
|
5171
|
+
* @public
|
|
4536
5172
|
* <p>Returns a list of the peering request states.</p>
|
|
4537
5173
|
*/
|
|
4538
5174
|
State?: PeeringState | string;
|
|
4539
5175
|
/**
|
|
5176
|
+
* @public
|
|
4540
5177
|
* <p>The maximum number of results to return.</p>
|
|
4541
5178
|
*/
|
|
4542
5179
|
MaxResults?: number;
|
|
4543
5180
|
/**
|
|
5181
|
+
* @public
|
|
4544
5182
|
* <p>The token for the next page of results.</p>
|
|
4545
5183
|
*/
|
|
4546
5184
|
NextToken?: string;
|
|
@@ -4550,10 +5188,12 @@ export interface ListPeeringsRequest {
|
|
|
4550
5188
|
*/
|
|
4551
5189
|
export interface ListPeeringsResponse {
|
|
4552
5190
|
/**
|
|
5191
|
+
* @public
|
|
4553
5192
|
* <p>Lists the transit gateway peerings for the <code>ListPeerings</code> request.</p>
|
|
4554
5193
|
*/
|
|
4555
5194
|
Peerings?: Peering[];
|
|
4556
5195
|
/**
|
|
5196
|
+
* @public
|
|
4557
5197
|
* <p>The token for the next page of results.</p>
|
|
4558
5198
|
*/
|
|
4559
5199
|
NextToken?: string;
|
|
@@ -4563,6 +5203,7 @@ export interface ListPeeringsResponse {
|
|
|
4563
5203
|
*/
|
|
4564
5204
|
export interface ListTagsForResourceRequest {
|
|
4565
5205
|
/**
|
|
5206
|
+
* @public
|
|
4566
5207
|
* <p>The Amazon Resource Name (ARN) of the resource.</p>
|
|
4567
5208
|
*/
|
|
4568
5209
|
ResourceArn: string | undefined;
|
|
@@ -4572,6 +5213,7 @@ export interface ListTagsForResourceRequest {
|
|
|
4572
5213
|
*/
|
|
4573
5214
|
export interface ListTagsForResourceResponse {
|
|
4574
5215
|
/**
|
|
5216
|
+
* @public
|
|
4575
5217
|
* <p>The list of tags.</p>
|
|
4576
5218
|
*/
|
|
4577
5219
|
TagList?: Tag[];
|
|
@@ -4581,22 +5223,27 @@ export interface ListTagsForResourceResponse {
|
|
|
4581
5223
|
*/
|
|
4582
5224
|
export interface PutCoreNetworkPolicyRequest {
|
|
4583
5225
|
/**
|
|
5226
|
+
* @public
|
|
4584
5227
|
* <p>The ID of a core network.</p>
|
|
4585
5228
|
*/
|
|
4586
5229
|
CoreNetworkId: string | undefined;
|
|
4587
5230
|
/**
|
|
5231
|
+
* @public
|
|
4588
5232
|
* <p>The policy document.</p>
|
|
4589
5233
|
*/
|
|
4590
5234
|
PolicyDocument: __LazyJsonString | string | undefined;
|
|
4591
5235
|
/**
|
|
5236
|
+
* @public
|
|
4592
5237
|
* <p>a core network policy description.</p>
|
|
4593
5238
|
*/
|
|
4594
5239
|
Description?: string;
|
|
4595
5240
|
/**
|
|
5241
|
+
* @public
|
|
4596
5242
|
* <p>The ID of a core network policy. </p>
|
|
4597
5243
|
*/
|
|
4598
5244
|
LatestVersionId?: number;
|
|
4599
5245
|
/**
|
|
5246
|
+
* @public
|
|
4600
5247
|
* <p>The client token associated with the request.</p>
|
|
4601
5248
|
*/
|
|
4602
5249
|
ClientToken?: string;
|
|
@@ -4606,6 +5253,7 @@ export interface PutCoreNetworkPolicyRequest {
|
|
|
4606
5253
|
*/
|
|
4607
5254
|
export interface PutCoreNetworkPolicyResponse {
|
|
4608
5255
|
/**
|
|
5256
|
+
* @public
|
|
4609
5257
|
* <p>Describes the changed core network policy.</p>
|
|
4610
5258
|
*/
|
|
4611
5259
|
CoreNetworkPolicy?: CoreNetworkPolicy;
|
|
@@ -4615,10 +5263,12 @@ export interface PutCoreNetworkPolicyResponse {
|
|
|
4615
5263
|
*/
|
|
4616
5264
|
export interface PutResourcePolicyRequest {
|
|
4617
5265
|
/**
|
|
5266
|
+
* @public
|
|
4618
5267
|
* <p>The JSON resource policy document.</p>
|
|
4619
5268
|
*/
|
|
4620
5269
|
PolicyDocument: __LazyJsonString | string | undefined;
|
|
4621
5270
|
/**
|
|
5271
|
+
* @public
|
|
4622
5272
|
* <p>The ARN of the resource policy. </p>
|
|
4623
5273
|
*/
|
|
4624
5274
|
ResourceArn: string | undefined;
|
|
@@ -4633,10 +5283,12 @@ export interface PutResourcePolicyResponse {
|
|
|
4633
5283
|
*/
|
|
4634
5284
|
export interface RegisterTransitGatewayRequest {
|
|
4635
5285
|
/**
|
|
5286
|
+
* @public
|
|
4636
5287
|
* <p>The ID of the global network.</p>
|
|
4637
5288
|
*/
|
|
4638
5289
|
GlobalNetworkId: string | undefined;
|
|
4639
5290
|
/**
|
|
5291
|
+
* @public
|
|
4640
5292
|
* <p>The Amazon Resource Name (ARN) of the transit gateway.</p>
|
|
4641
5293
|
*/
|
|
4642
5294
|
TransitGatewayArn: string | undefined;
|
|
@@ -4646,6 +5298,7 @@ export interface RegisterTransitGatewayRequest {
|
|
|
4646
5298
|
*/
|
|
4647
5299
|
export interface RegisterTransitGatewayResponse {
|
|
4648
5300
|
/**
|
|
5301
|
+
* @public
|
|
4649
5302
|
* <p>Information about the transit gateway registration.</p>
|
|
4650
5303
|
*/
|
|
4651
5304
|
TransitGatewayRegistration?: TransitGatewayRegistration;
|
|
@@ -4655,6 +5308,7 @@ export interface RegisterTransitGatewayResponse {
|
|
|
4655
5308
|
*/
|
|
4656
5309
|
export interface RejectAttachmentRequest {
|
|
4657
5310
|
/**
|
|
5311
|
+
* @public
|
|
4658
5312
|
* <p>The ID of the attachment.</p>
|
|
4659
5313
|
*/
|
|
4660
5314
|
AttachmentId: string | undefined;
|
|
@@ -4664,6 +5318,7 @@ export interface RejectAttachmentRequest {
|
|
|
4664
5318
|
*/
|
|
4665
5319
|
export interface RejectAttachmentResponse {
|
|
4666
5320
|
/**
|
|
5321
|
+
* @public
|
|
4667
5322
|
* <p>Describes the rejected attachment request.</p>
|
|
4668
5323
|
*/
|
|
4669
5324
|
Attachment?: Attachment;
|
|
@@ -4673,10 +5328,12 @@ export interface RejectAttachmentResponse {
|
|
|
4673
5328
|
*/
|
|
4674
5329
|
export interface RestoreCoreNetworkPolicyVersionRequest {
|
|
4675
5330
|
/**
|
|
5331
|
+
* @public
|
|
4676
5332
|
* <p>The ID of a core network.</p>
|
|
4677
5333
|
*/
|
|
4678
5334
|
CoreNetworkId: string | undefined;
|
|
4679
5335
|
/**
|
|
5336
|
+
* @public
|
|
4680
5337
|
* <p>The ID of the policy version to restore.</p>
|
|
4681
5338
|
*/
|
|
4682
5339
|
PolicyVersionId: number | undefined;
|
|
@@ -4686,6 +5343,7 @@ export interface RestoreCoreNetworkPolicyVersionRequest {
|
|
|
4686
5343
|
*/
|
|
4687
5344
|
export interface RestoreCoreNetworkPolicyVersionResponse {
|
|
4688
5345
|
/**
|
|
5346
|
+
* @public
|
|
4689
5347
|
* <p>Describes the restored core network policy.</p>
|
|
4690
5348
|
*/
|
|
4691
5349
|
CoreNetworkPolicy?: CoreNetworkPolicy;
|
|
@@ -4695,6 +5353,7 @@ export interface RestoreCoreNetworkPolicyVersionResponse {
|
|
|
4695
5353
|
*/
|
|
4696
5354
|
export interface StartOrganizationServiceAccessUpdateRequest {
|
|
4697
5355
|
/**
|
|
5356
|
+
* @public
|
|
4698
5357
|
* <p>The action to take for the update request. This can be either <code>ENABLE</code> or <code>DISABLE</code>.</p>
|
|
4699
5358
|
*/
|
|
4700
5359
|
Action: string | undefined;
|
|
@@ -4704,6 +5363,7 @@ export interface StartOrganizationServiceAccessUpdateRequest {
|
|
|
4704
5363
|
*/
|
|
4705
5364
|
export interface StartOrganizationServiceAccessUpdateResponse {
|
|
4706
5365
|
/**
|
|
5366
|
+
* @public
|
|
4707
5367
|
* <p>The status of the service access update request for an Amazon Web Services Organization.</p>
|
|
4708
5368
|
*/
|
|
4709
5369
|
OrganizationStatus?: OrganizationStatus;
|
|
@@ -4714,10 +5374,12 @@ export interface StartOrganizationServiceAccessUpdateResponse {
|
|
|
4714
5374
|
*/
|
|
4715
5375
|
export interface RouteAnalysisEndpointOptionsSpecification {
|
|
4716
5376
|
/**
|
|
5377
|
+
* @public
|
|
4717
5378
|
* <p>The ARN of the transit gateway attachment.</p>
|
|
4718
5379
|
*/
|
|
4719
5380
|
TransitGatewayAttachmentArn?: string;
|
|
4720
5381
|
/**
|
|
5382
|
+
* @public
|
|
4721
5383
|
* <p>The IP address.</p>
|
|
4722
5384
|
*/
|
|
4723
5385
|
IpAddress?: string;
|
|
@@ -4727,22 +5389,27 @@ export interface RouteAnalysisEndpointOptionsSpecification {
|
|
|
4727
5389
|
*/
|
|
4728
5390
|
export interface StartRouteAnalysisRequest {
|
|
4729
5391
|
/**
|
|
5392
|
+
* @public
|
|
4730
5393
|
* <p>The ID of the global network.</p>
|
|
4731
5394
|
*/
|
|
4732
5395
|
GlobalNetworkId: string | undefined;
|
|
4733
5396
|
/**
|
|
5397
|
+
* @public
|
|
4734
5398
|
* <p>The source from which traffic originates.</p>
|
|
4735
5399
|
*/
|
|
4736
5400
|
Source: RouteAnalysisEndpointOptionsSpecification | undefined;
|
|
4737
5401
|
/**
|
|
5402
|
+
* @public
|
|
4738
5403
|
* <p>The destination.</p>
|
|
4739
5404
|
*/
|
|
4740
5405
|
Destination: RouteAnalysisEndpointOptionsSpecification | undefined;
|
|
4741
5406
|
/**
|
|
5407
|
+
* @public
|
|
4742
5408
|
* <p>Indicates whether to analyze the return path. The default is <code>false</code>.</p>
|
|
4743
5409
|
*/
|
|
4744
5410
|
IncludeReturnPath?: boolean;
|
|
4745
5411
|
/**
|
|
5412
|
+
* @public
|
|
4746
5413
|
* <p>Indicates whether to include the location of middlebox appliances in the route analysis.
|
|
4747
5414
|
* The default is <code>false</code>.</p>
|
|
4748
5415
|
*/
|
|
@@ -4753,6 +5420,7 @@ export interface StartRouteAnalysisRequest {
|
|
|
4753
5420
|
*/
|
|
4754
5421
|
export interface StartRouteAnalysisResponse {
|
|
4755
5422
|
/**
|
|
5423
|
+
* @public
|
|
4756
5424
|
* <p>The route analysis.</p>
|
|
4757
5425
|
*/
|
|
4758
5426
|
RouteAnalysis?: RouteAnalysis;
|
|
@@ -4762,10 +5430,12 @@ export interface StartRouteAnalysisResponse {
|
|
|
4762
5430
|
*/
|
|
4763
5431
|
export interface TagResourceRequest {
|
|
4764
5432
|
/**
|
|
5433
|
+
* @public
|
|
4765
5434
|
* <p>The Amazon Resource Name (ARN) of the resource.</p>
|
|
4766
5435
|
*/
|
|
4767
5436
|
ResourceArn: string | undefined;
|
|
4768
5437
|
/**
|
|
5438
|
+
* @public
|
|
4769
5439
|
* <p>The tags to apply to the specified resource.</p>
|
|
4770
5440
|
*/
|
|
4771
5441
|
Tags: Tag[] | undefined;
|
|
@@ -4780,10 +5450,12 @@ export interface TagResourceResponse {
|
|
|
4780
5450
|
*/
|
|
4781
5451
|
export interface UntagResourceRequest {
|
|
4782
5452
|
/**
|
|
5453
|
+
* @public
|
|
4783
5454
|
* <p>The Amazon Resource Name (ARN) of the resource.</p>
|
|
4784
5455
|
*/
|
|
4785
5456
|
ResourceArn: string | undefined;
|
|
4786
5457
|
/**
|
|
5458
|
+
* @public
|
|
4787
5459
|
* <p>The tag keys to remove from the specified resource.</p>
|
|
4788
5460
|
*/
|
|
4789
5461
|
TagKeys: string[] | undefined;
|
|
@@ -4798,22 +5470,27 @@ export interface UntagResourceResponse {
|
|
|
4798
5470
|
*/
|
|
4799
5471
|
export interface UpdateConnectionRequest {
|
|
4800
5472
|
/**
|
|
5473
|
+
* @public
|
|
4801
5474
|
* <p>The ID of the global network.</p>
|
|
4802
5475
|
*/
|
|
4803
5476
|
GlobalNetworkId: string | undefined;
|
|
4804
5477
|
/**
|
|
5478
|
+
* @public
|
|
4805
5479
|
* <p>The ID of the connection.</p>
|
|
4806
5480
|
*/
|
|
4807
5481
|
ConnectionId: string | undefined;
|
|
4808
5482
|
/**
|
|
5483
|
+
* @public
|
|
4809
5484
|
* <p>The ID of the link for the first device in the connection.</p>
|
|
4810
5485
|
*/
|
|
4811
5486
|
LinkId?: string;
|
|
4812
5487
|
/**
|
|
5488
|
+
* @public
|
|
4813
5489
|
* <p>The ID of the link for the second device in the connection.</p>
|
|
4814
5490
|
*/
|
|
4815
5491
|
ConnectedLinkId?: string;
|
|
4816
5492
|
/**
|
|
5493
|
+
* @public
|
|
4817
5494
|
* <p>A description of the connection.</p>
|
|
4818
5495
|
* <p>Length Constraints: Maximum length of 256 characters.</p>
|
|
4819
5496
|
*/
|
|
@@ -4824,6 +5501,7 @@ export interface UpdateConnectionRequest {
|
|
|
4824
5501
|
*/
|
|
4825
5502
|
export interface UpdateConnectionResponse {
|
|
4826
5503
|
/**
|
|
5504
|
+
* @public
|
|
4827
5505
|
* <p>Information about the connection.</p>
|
|
4828
5506
|
*/
|
|
4829
5507
|
Connection?: Connection;
|
|
@@ -4833,10 +5511,12 @@ export interface UpdateConnectionResponse {
|
|
|
4833
5511
|
*/
|
|
4834
5512
|
export interface UpdateCoreNetworkRequest {
|
|
4835
5513
|
/**
|
|
5514
|
+
* @public
|
|
4836
5515
|
* <p>The ID of a core network.</p>
|
|
4837
5516
|
*/
|
|
4838
5517
|
CoreNetworkId: string | undefined;
|
|
4839
5518
|
/**
|
|
5519
|
+
* @public
|
|
4840
5520
|
* <p>The description of the update.</p>
|
|
4841
5521
|
*/
|
|
4842
5522
|
Description?: string;
|
|
@@ -4846,6 +5526,7 @@ export interface UpdateCoreNetworkRequest {
|
|
|
4846
5526
|
*/
|
|
4847
5527
|
export interface UpdateCoreNetworkResponse {
|
|
4848
5528
|
/**
|
|
5529
|
+
* @public
|
|
4849
5530
|
* <p>Returns information about a core network update.</p>
|
|
4850
5531
|
*/
|
|
4851
5532
|
CoreNetwork?: CoreNetwork;
|
|
@@ -4855,46 +5536,56 @@ export interface UpdateCoreNetworkResponse {
|
|
|
4855
5536
|
*/
|
|
4856
5537
|
export interface UpdateDeviceRequest {
|
|
4857
5538
|
/**
|
|
5539
|
+
* @public
|
|
4858
5540
|
* <p>The ID of the global network.</p>
|
|
4859
5541
|
*/
|
|
4860
5542
|
GlobalNetworkId: string | undefined;
|
|
4861
5543
|
/**
|
|
5544
|
+
* @public
|
|
4862
5545
|
* <p>The ID of the device.</p>
|
|
4863
5546
|
*/
|
|
4864
5547
|
DeviceId: string | undefined;
|
|
4865
5548
|
/**
|
|
5549
|
+
* @public
|
|
4866
5550
|
* <p>The Amazon Web Services location of the device, if applicable. For an on-premises device, you can omit this parameter.</p>
|
|
4867
5551
|
*/
|
|
4868
5552
|
AWSLocation?: AWSLocation;
|
|
4869
5553
|
/**
|
|
5554
|
+
* @public
|
|
4870
5555
|
* <p>A description of the device.</p>
|
|
4871
5556
|
* <p>Constraints: Maximum length of 256 characters.</p>
|
|
4872
5557
|
*/
|
|
4873
5558
|
Description?: string;
|
|
4874
5559
|
/**
|
|
5560
|
+
* @public
|
|
4875
5561
|
* <p>The type of the device.</p>
|
|
4876
5562
|
*/
|
|
4877
5563
|
Type?: string;
|
|
4878
5564
|
/**
|
|
5565
|
+
* @public
|
|
4879
5566
|
* <p>The vendor of the device.</p>
|
|
4880
5567
|
* <p>Constraints: Maximum length of 128 characters.</p>
|
|
4881
5568
|
*/
|
|
4882
5569
|
Vendor?: string;
|
|
4883
5570
|
/**
|
|
5571
|
+
* @public
|
|
4884
5572
|
* <p>The model of the device.</p>
|
|
4885
5573
|
* <p>Constraints: Maximum length of 128 characters.</p>
|
|
4886
5574
|
*/
|
|
4887
5575
|
Model?: string;
|
|
4888
5576
|
/**
|
|
5577
|
+
* @public
|
|
4889
5578
|
* <p>The serial number of the device.</p>
|
|
4890
5579
|
* <p>Constraints: Maximum length of 128 characters.</p>
|
|
4891
5580
|
*/
|
|
4892
5581
|
SerialNumber?: string;
|
|
4893
5582
|
/**
|
|
5583
|
+
* @public
|
|
4894
5584
|
* <p>Describes a location.</p>
|
|
4895
5585
|
*/
|
|
4896
5586
|
Location?: Location;
|
|
4897
5587
|
/**
|
|
5588
|
+
* @public
|
|
4898
5589
|
* <p>The ID of the site.</p>
|
|
4899
5590
|
*/
|
|
4900
5591
|
SiteId?: string;
|
|
@@ -4904,6 +5595,7 @@ export interface UpdateDeviceRequest {
|
|
|
4904
5595
|
*/
|
|
4905
5596
|
export interface UpdateDeviceResponse {
|
|
4906
5597
|
/**
|
|
5598
|
+
* @public
|
|
4907
5599
|
* <p>Information about the device.</p>
|
|
4908
5600
|
*/
|
|
4909
5601
|
Device?: Device;
|
|
@@ -4913,10 +5605,12 @@ export interface UpdateDeviceResponse {
|
|
|
4913
5605
|
*/
|
|
4914
5606
|
export interface UpdateGlobalNetworkRequest {
|
|
4915
5607
|
/**
|
|
5608
|
+
* @public
|
|
4916
5609
|
* <p>The ID of your global network.</p>
|
|
4917
5610
|
*/
|
|
4918
5611
|
GlobalNetworkId: string | undefined;
|
|
4919
5612
|
/**
|
|
5613
|
+
* @public
|
|
4920
5614
|
* <p>A description of the global network.</p>
|
|
4921
5615
|
* <p>Constraints: Maximum length of 256 characters.</p>
|
|
4922
5616
|
*/
|
|
@@ -4927,6 +5621,7 @@ export interface UpdateGlobalNetworkRequest {
|
|
|
4927
5621
|
*/
|
|
4928
5622
|
export interface UpdateGlobalNetworkResponse {
|
|
4929
5623
|
/**
|
|
5624
|
+
* @public
|
|
4930
5625
|
* <p>Information about the global network object.</p>
|
|
4931
5626
|
*/
|
|
4932
5627
|
GlobalNetwork?: GlobalNetwork;
|
|
@@ -4936,28 +5631,34 @@ export interface UpdateGlobalNetworkResponse {
|
|
|
4936
5631
|
*/
|
|
4937
5632
|
export interface UpdateLinkRequest {
|
|
4938
5633
|
/**
|
|
5634
|
+
* @public
|
|
4939
5635
|
* <p>The ID of the global network.</p>
|
|
4940
5636
|
*/
|
|
4941
5637
|
GlobalNetworkId: string | undefined;
|
|
4942
5638
|
/**
|
|
5639
|
+
* @public
|
|
4943
5640
|
* <p>The ID of the link.</p>
|
|
4944
5641
|
*/
|
|
4945
5642
|
LinkId: string | undefined;
|
|
4946
5643
|
/**
|
|
5644
|
+
* @public
|
|
4947
5645
|
* <p>A description of the link.</p>
|
|
4948
5646
|
* <p>Constraints: Maximum length of 256 characters.</p>
|
|
4949
5647
|
*/
|
|
4950
5648
|
Description?: string;
|
|
4951
5649
|
/**
|
|
5650
|
+
* @public
|
|
4952
5651
|
* <p>The type of the link.</p>
|
|
4953
5652
|
* <p>Constraints: Maximum length of 128 characters.</p>
|
|
4954
5653
|
*/
|
|
4955
5654
|
Type?: string;
|
|
4956
5655
|
/**
|
|
5656
|
+
* @public
|
|
4957
5657
|
* <p>The upload and download speed in Mbps. </p>
|
|
4958
5658
|
*/
|
|
4959
5659
|
Bandwidth?: Bandwidth;
|
|
4960
5660
|
/**
|
|
5661
|
+
* @public
|
|
4961
5662
|
* <p>The provider of the link.</p>
|
|
4962
5663
|
* <p>Constraints: Maximum length of 128 characters.</p>
|
|
4963
5664
|
*/
|
|
@@ -4968,6 +5669,7 @@ export interface UpdateLinkRequest {
|
|
|
4968
5669
|
*/
|
|
4969
5670
|
export interface UpdateLinkResponse {
|
|
4970
5671
|
/**
|
|
5672
|
+
* @public
|
|
4971
5673
|
* <p>Information about the link.</p>
|
|
4972
5674
|
*/
|
|
4973
5675
|
Link?: Link;
|
|
@@ -4977,14 +5679,17 @@ export interface UpdateLinkResponse {
|
|
|
4977
5679
|
*/
|
|
4978
5680
|
export interface UpdateNetworkResourceMetadataRequest {
|
|
4979
5681
|
/**
|
|
5682
|
+
* @public
|
|
4980
5683
|
* <p>The ID of the global network.</p>
|
|
4981
5684
|
*/
|
|
4982
5685
|
GlobalNetworkId: string | undefined;
|
|
4983
5686
|
/**
|
|
5687
|
+
* @public
|
|
4984
5688
|
* <p>The ARN of the resource.</p>
|
|
4985
5689
|
*/
|
|
4986
5690
|
ResourceArn: string | undefined;
|
|
4987
5691
|
/**
|
|
5692
|
+
* @public
|
|
4988
5693
|
* <p>The resource metadata.</p>
|
|
4989
5694
|
*/
|
|
4990
5695
|
Metadata: Record<string, string> | undefined;
|
|
@@ -4994,10 +5699,12 @@ export interface UpdateNetworkResourceMetadataRequest {
|
|
|
4994
5699
|
*/
|
|
4995
5700
|
export interface UpdateNetworkResourceMetadataResponse {
|
|
4996
5701
|
/**
|
|
5702
|
+
* @public
|
|
4997
5703
|
* <p>The ARN of the resource.</p>
|
|
4998
5704
|
*/
|
|
4999
5705
|
ResourceArn?: string;
|
|
5000
5706
|
/**
|
|
5707
|
+
* @public
|
|
5001
5708
|
* <p>The updated resource metadata.</p>
|
|
5002
5709
|
*/
|
|
5003
5710
|
Metadata?: Record<string, string>;
|
|
@@ -5007,19 +5714,23 @@ export interface UpdateNetworkResourceMetadataResponse {
|
|
|
5007
5714
|
*/
|
|
5008
5715
|
export interface UpdateSiteRequest {
|
|
5009
5716
|
/**
|
|
5717
|
+
* @public
|
|
5010
5718
|
* <p>The ID of the global network.</p>
|
|
5011
5719
|
*/
|
|
5012
5720
|
GlobalNetworkId: string | undefined;
|
|
5013
5721
|
/**
|
|
5722
|
+
* @public
|
|
5014
5723
|
* <p>The ID of your site.</p>
|
|
5015
5724
|
*/
|
|
5016
5725
|
SiteId: string | undefined;
|
|
5017
5726
|
/**
|
|
5727
|
+
* @public
|
|
5018
5728
|
* <p>A description of your site.</p>
|
|
5019
5729
|
* <p>Constraints: Maximum length of 256 characters.</p>
|
|
5020
5730
|
*/
|
|
5021
5731
|
Description?: string;
|
|
5022
5732
|
/**
|
|
5733
|
+
* @public
|
|
5023
5734
|
* <p>The site location:</p>
|
|
5024
5735
|
* <ul>
|
|
5025
5736
|
* <li>
|
|
@@ -5043,6 +5754,7 @@ export interface UpdateSiteRequest {
|
|
|
5043
5754
|
*/
|
|
5044
5755
|
export interface UpdateSiteResponse {
|
|
5045
5756
|
/**
|
|
5757
|
+
* @public
|
|
5046
5758
|
* <p>Information about the site.</p>
|
|
5047
5759
|
*/
|
|
5048
5760
|
Site?: Site;
|
|
@@ -5052,18 +5764,22 @@ export interface UpdateSiteResponse {
|
|
|
5052
5764
|
*/
|
|
5053
5765
|
export interface UpdateVpcAttachmentRequest {
|
|
5054
5766
|
/**
|
|
5767
|
+
* @public
|
|
5055
5768
|
* <p>The ID of the attachment.</p>
|
|
5056
5769
|
*/
|
|
5057
5770
|
AttachmentId: string | undefined;
|
|
5058
5771
|
/**
|
|
5772
|
+
* @public
|
|
5059
5773
|
* <p>Adds a subnet ARN to the VPC attachment.</p>
|
|
5060
5774
|
*/
|
|
5061
5775
|
AddSubnetArns?: string[];
|
|
5062
5776
|
/**
|
|
5777
|
+
* @public
|
|
5063
5778
|
* <p>Removes a subnet ARN from the attachment.</p>
|
|
5064
5779
|
*/
|
|
5065
5780
|
RemoveSubnetArns?: string[];
|
|
5066
5781
|
/**
|
|
5782
|
+
* @public
|
|
5067
5783
|
* <p>Additional options for updating the VPC attachment. </p>
|
|
5068
5784
|
*/
|
|
5069
5785
|
Options?: VpcOptions;
|
|
@@ -5073,6 +5789,7 @@ export interface UpdateVpcAttachmentRequest {
|
|
|
5073
5789
|
*/
|
|
5074
5790
|
export interface UpdateVpcAttachmentResponse {
|
|
5075
5791
|
/**
|
|
5792
|
+
* @public
|
|
5076
5793
|
* <p>Describes the updated VPC attachment.</p>
|
|
5077
5794
|
*/
|
|
5078
5795
|
VpcAttachment?: VpcAttachment;
|