@aws-sdk/client-networkmanager 3.686.0 → 3.691.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/models/models_0.d.ts +626 -626
- package/dist-types/ts3.4/models/models_0.d.ts +640 -626
- package/package.json +7 -7
|
@@ -51,22 +51,22 @@ export interface AttachmentError {
|
|
|
51
51
|
* <p>The error code for the attachment request. </p>
|
|
52
52
|
* @public
|
|
53
53
|
*/
|
|
54
|
-
Code?: AttachmentErrorCode;
|
|
54
|
+
Code?: AttachmentErrorCode | undefined;
|
|
55
55
|
/**
|
|
56
56
|
* <p>The message associated with the error <code>code</code>.</p>
|
|
57
57
|
* @public
|
|
58
58
|
*/
|
|
59
|
-
Message?: string;
|
|
59
|
+
Message?: string | undefined;
|
|
60
60
|
/**
|
|
61
61
|
* <p>The ARN of the requested attachment resource.</p>
|
|
62
62
|
* @public
|
|
63
63
|
*/
|
|
64
|
-
ResourceArn?: string;
|
|
64
|
+
ResourceArn?: string | undefined;
|
|
65
65
|
/**
|
|
66
66
|
* <p>The ID of the attachment request.</p>
|
|
67
67
|
* @public
|
|
68
68
|
*/
|
|
69
|
-
RequestId?: string;
|
|
69
|
+
RequestId?: string | undefined;
|
|
70
70
|
}
|
|
71
71
|
/**
|
|
72
72
|
* <p>Describes a tag.</p>
|
|
@@ -78,13 +78,13 @@ export interface Tag {
|
|
|
78
78
|
* <p>Constraints: Maximum length of 128 characters.</p>
|
|
79
79
|
* @public
|
|
80
80
|
*/
|
|
81
|
-
Key?: string;
|
|
81
|
+
Key?: string | undefined;
|
|
82
82
|
/**
|
|
83
83
|
* <p>The tag value.</p>
|
|
84
84
|
* <p>Constraints: Maximum length of 256 characters.</p>
|
|
85
85
|
* @public
|
|
86
86
|
*/
|
|
87
|
-
Value?: string;
|
|
87
|
+
Value?: string | undefined;
|
|
88
88
|
}
|
|
89
89
|
/**
|
|
90
90
|
* <p>Describes proposed changes to a network function group. </p>
|
|
@@ -95,17 +95,17 @@ export interface ProposedNetworkFunctionGroupChange {
|
|
|
95
95
|
* <p>The list of proposed changes to the key-value tags associated with the network function group.</p>
|
|
96
96
|
* @public
|
|
97
97
|
*/
|
|
98
|
-
Tags?: Tag[];
|
|
98
|
+
Tags?: Tag[] | undefined;
|
|
99
99
|
/**
|
|
100
100
|
* <p>The proposed new attachment policy rule number for the network function group.</p>
|
|
101
101
|
* @public
|
|
102
102
|
*/
|
|
103
|
-
AttachmentPolicyRuleNumber?: number;
|
|
103
|
+
AttachmentPolicyRuleNumber?: number | undefined;
|
|
104
104
|
/**
|
|
105
105
|
* <p>The proposed name change for the network function group name.</p>
|
|
106
106
|
* @public
|
|
107
107
|
*/
|
|
108
|
-
NetworkFunctionGroupName?: string;
|
|
108
|
+
NetworkFunctionGroupName?: string | undefined;
|
|
109
109
|
}
|
|
110
110
|
/**
|
|
111
111
|
* <p>Describes a proposed segment change. In some cases, the segment change must first be evaluated and accepted. </p>
|
|
@@ -116,17 +116,17 @@ export interface ProposedSegmentChange {
|
|
|
116
116
|
* <p>The list of key-value tags that changed for the segment.</p>
|
|
117
117
|
* @public
|
|
118
118
|
*/
|
|
119
|
-
Tags?: Tag[];
|
|
119
|
+
Tags?: Tag[] | undefined;
|
|
120
120
|
/**
|
|
121
121
|
* <p>The rule number in the policy document that applies to this change.</p>
|
|
122
122
|
* @public
|
|
123
123
|
*/
|
|
124
|
-
AttachmentPolicyRuleNumber?: number;
|
|
124
|
+
AttachmentPolicyRuleNumber?: number | undefined;
|
|
125
125
|
/**
|
|
126
126
|
* <p>The name of the segment to change.</p>
|
|
127
127
|
* @public
|
|
128
128
|
*/
|
|
129
|
-
SegmentName?: string;
|
|
129
|
+
SegmentName?: string | undefined;
|
|
130
130
|
}
|
|
131
131
|
/**
|
|
132
132
|
* @public
|
|
@@ -156,87 +156,87 @@ export interface Attachment {
|
|
|
156
156
|
* <p>The ID of a core network.</p>
|
|
157
157
|
* @public
|
|
158
158
|
*/
|
|
159
|
-
CoreNetworkId?: string;
|
|
159
|
+
CoreNetworkId?: string | undefined;
|
|
160
160
|
/**
|
|
161
161
|
* <p>The ARN of a core network.</p>
|
|
162
162
|
* @public
|
|
163
163
|
*/
|
|
164
|
-
CoreNetworkArn?: string;
|
|
164
|
+
CoreNetworkArn?: string | undefined;
|
|
165
165
|
/**
|
|
166
166
|
* <p>The ID of the attachment.</p>
|
|
167
167
|
* @public
|
|
168
168
|
*/
|
|
169
|
-
AttachmentId?: string;
|
|
169
|
+
AttachmentId?: string | undefined;
|
|
170
170
|
/**
|
|
171
171
|
* <p>The ID of the attachment account owner.</p>
|
|
172
172
|
* @public
|
|
173
173
|
*/
|
|
174
|
-
OwnerAccountId?: string;
|
|
174
|
+
OwnerAccountId?: string | undefined;
|
|
175
175
|
/**
|
|
176
176
|
* <p>The type of attachment.</p>
|
|
177
177
|
* @public
|
|
178
178
|
*/
|
|
179
|
-
AttachmentType?: AttachmentType;
|
|
179
|
+
AttachmentType?: AttachmentType | undefined;
|
|
180
180
|
/**
|
|
181
181
|
* <p>The state of the attachment.</p>
|
|
182
182
|
* @public
|
|
183
183
|
*/
|
|
184
|
-
State?: AttachmentState;
|
|
184
|
+
State?: AttachmentState | undefined;
|
|
185
185
|
/**
|
|
186
186
|
* <p>The Region where the edge is located.</p>
|
|
187
187
|
* @public
|
|
188
188
|
*/
|
|
189
|
-
EdgeLocation?: string;
|
|
189
|
+
EdgeLocation?: string | undefined;
|
|
190
190
|
/**
|
|
191
191
|
* <p>The attachment resource ARN.</p>
|
|
192
192
|
* @public
|
|
193
193
|
*/
|
|
194
|
-
ResourceArn?: string;
|
|
194
|
+
ResourceArn?: string | undefined;
|
|
195
195
|
/**
|
|
196
196
|
* <p>The policy rule number associated with the attachment.</p>
|
|
197
197
|
* @public
|
|
198
198
|
*/
|
|
199
|
-
AttachmentPolicyRuleNumber?: number;
|
|
199
|
+
AttachmentPolicyRuleNumber?: number | undefined;
|
|
200
200
|
/**
|
|
201
201
|
* <p>The name of the segment attachment.</p>
|
|
202
202
|
* @public
|
|
203
203
|
*/
|
|
204
|
-
SegmentName?: string;
|
|
204
|
+
SegmentName?: string | undefined;
|
|
205
205
|
/**
|
|
206
206
|
* <p>The name of the network function group.</p>
|
|
207
207
|
* @public
|
|
208
208
|
*/
|
|
209
|
-
NetworkFunctionGroupName?: string;
|
|
209
|
+
NetworkFunctionGroupName?: string | undefined;
|
|
210
210
|
/**
|
|
211
211
|
* <p>The tags associated with the attachment.</p>
|
|
212
212
|
* @public
|
|
213
213
|
*/
|
|
214
|
-
Tags?: Tag[];
|
|
214
|
+
Tags?: Tag[] | undefined;
|
|
215
215
|
/**
|
|
216
216
|
* <p>The attachment to move from one segment to another.</p>
|
|
217
217
|
* @public
|
|
218
218
|
*/
|
|
219
|
-
ProposedSegmentChange?: ProposedSegmentChange;
|
|
219
|
+
ProposedSegmentChange?: ProposedSegmentChange | undefined;
|
|
220
220
|
/**
|
|
221
221
|
* <p>Describes a proposed change to a network function group associated with the attachment.</p>
|
|
222
222
|
* @public
|
|
223
223
|
*/
|
|
224
|
-
ProposedNetworkFunctionGroupChange?: ProposedNetworkFunctionGroupChange;
|
|
224
|
+
ProposedNetworkFunctionGroupChange?: ProposedNetworkFunctionGroupChange | undefined;
|
|
225
225
|
/**
|
|
226
226
|
* <p>The timestamp when the attachment was created.</p>
|
|
227
227
|
* @public
|
|
228
228
|
*/
|
|
229
|
-
CreatedAt?: Date;
|
|
229
|
+
CreatedAt?: Date | undefined;
|
|
230
230
|
/**
|
|
231
231
|
* <p>The timestamp when the attachment was last updated.</p>
|
|
232
232
|
* @public
|
|
233
233
|
*/
|
|
234
|
-
UpdatedAt?: Date;
|
|
234
|
+
UpdatedAt?: Date | undefined;
|
|
235
235
|
/**
|
|
236
236
|
* <p>Describes the error associated with the attachment request.</p>
|
|
237
237
|
* @public
|
|
238
238
|
*/
|
|
239
|
-
LastModificationErrors?: AttachmentError[];
|
|
239
|
+
LastModificationErrors?: AttachmentError[] | undefined;
|
|
240
240
|
}
|
|
241
241
|
/**
|
|
242
242
|
* @public
|
|
@@ -246,7 +246,7 @@ export interface AcceptAttachmentResponse {
|
|
|
246
246
|
* <p>The response to the attachment request. </p>
|
|
247
247
|
* @public
|
|
248
248
|
*/
|
|
249
|
-
Attachment?: Attachment;
|
|
249
|
+
Attachment?: Attachment | undefined;
|
|
250
250
|
}
|
|
251
251
|
/**
|
|
252
252
|
* <p>You do not have sufficient access to perform this action.</p>
|
|
@@ -297,7 +297,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
297
297
|
* <p>Indicates when to retry the request.</p>
|
|
298
298
|
* @public
|
|
299
299
|
*/
|
|
300
|
-
RetryAfterSeconds?: number;
|
|
300
|
+
RetryAfterSeconds?: number | undefined;
|
|
301
301
|
/**
|
|
302
302
|
* @internal
|
|
303
303
|
*/
|
|
@@ -325,7 +325,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
325
325
|
* <p>The specified resource could not be found.</p>
|
|
326
326
|
* @public
|
|
327
327
|
*/
|
|
328
|
-
Context?: Record<string, string
|
|
328
|
+
Context?: Record<string, string> | undefined;
|
|
329
329
|
/**
|
|
330
330
|
* @internal
|
|
331
331
|
*/
|
|
@@ -343,7 +343,7 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
343
343
|
* <p>Indicates when to retry the request.</p>
|
|
344
344
|
* @public
|
|
345
345
|
*/
|
|
346
|
-
RetryAfterSeconds?: number;
|
|
346
|
+
RetryAfterSeconds?: number | undefined;
|
|
347
347
|
/**
|
|
348
348
|
* @internal
|
|
349
349
|
*/
|
|
@@ -391,12 +391,12 @@ export declare class ValidationException extends __BaseException {
|
|
|
391
391
|
* <p>The reason for the error.</p>
|
|
392
392
|
* @public
|
|
393
393
|
*/
|
|
394
|
-
Reason?: ValidationExceptionReason;
|
|
394
|
+
Reason?: ValidationExceptionReason | undefined;
|
|
395
395
|
/**
|
|
396
396
|
* <p>The fields that caused the error, if applicable.</p>
|
|
397
397
|
* @public
|
|
398
398
|
*/
|
|
399
|
-
Fields?: ValidationExceptionField[];
|
|
399
|
+
Fields?: ValidationExceptionField[] | undefined;
|
|
400
400
|
/**
|
|
401
401
|
* @internal
|
|
402
402
|
*/
|
|
@@ -411,12 +411,12 @@ export interface AccountStatus {
|
|
|
411
411
|
* <p>The ID of an account within the Amazon Web Services Organization.</p>
|
|
412
412
|
* @public
|
|
413
413
|
*/
|
|
414
|
-
AccountId?: string;
|
|
414
|
+
AccountId?: string | undefined;
|
|
415
415
|
/**
|
|
416
416
|
* <p>The status of SLR deployment for the account.</p>
|
|
417
417
|
* @public
|
|
418
418
|
*/
|
|
419
|
-
SLRDeploymentStatus?: string;
|
|
419
|
+
SLRDeploymentStatus?: string | undefined;
|
|
420
420
|
}
|
|
421
421
|
/**
|
|
422
422
|
* @public
|
|
@@ -441,7 +441,7 @@ export interface AssociateConnectPeerRequest {
|
|
|
441
441
|
* <p>The ID of the link.</p>
|
|
442
442
|
* @public
|
|
443
443
|
*/
|
|
444
|
-
LinkId?: string;
|
|
444
|
+
LinkId?: string | undefined;
|
|
445
445
|
}
|
|
446
446
|
/**
|
|
447
447
|
* @public
|
|
@@ -466,27 +466,27 @@ export interface ConnectPeerAssociation {
|
|
|
466
466
|
* <p>The ID of the Connect peer.</p>
|
|
467
467
|
* @public
|
|
468
468
|
*/
|
|
469
|
-
ConnectPeerId?: string;
|
|
469
|
+
ConnectPeerId?: string | undefined;
|
|
470
470
|
/**
|
|
471
471
|
* <p>The ID of the global network.</p>
|
|
472
472
|
* @public
|
|
473
473
|
*/
|
|
474
|
-
GlobalNetworkId?: string;
|
|
474
|
+
GlobalNetworkId?: string | undefined;
|
|
475
475
|
/**
|
|
476
476
|
* <p>The ID of the device to connect to.</p>
|
|
477
477
|
* @public
|
|
478
478
|
*/
|
|
479
|
-
DeviceId?: string;
|
|
479
|
+
DeviceId?: string | undefined;
|
|
480
480
|
/**
|
|
481
481
|
* <p>The ID of the link.</p>
|
|
482
482
|
* @public
|
|
483
483
|
*/
|
|
484
|
-
LinkId?: string;
|
|
484
|
+
LinkId?: string | undefined;
|
|
485
485
|
/**
|
|
486
486
|
* <p>The state of the Connect peer association.</p>
|
|
487
487
|
* @public
|
|
488
488
|
*/
|
|
489
|
-
State?: ConnectPeerAssociationState;
|
|
489
|
+
State?: ConnectPeerAssociationState | undefined;
|
|
490
490
|
}
|
|
491
491
|
/**
|
|
492
492
|
* @public
|
|
@@ -496,7 +496,7 @@ export interface AssociateConnectPeerResponse {
|
|
|
496
496
|
* <p>The response to the Connect peer request.</p>
|
|
497
497
|
* @public
|
|
498
498
|
*/
|
|
499
|
-
ConnectPeerAssociation?: ConnectPeerAssociation;
|
|
499
|
+
ConnectPeerAssociation?: ConnectPeerAssociation | undefined;
|
|
500
500
|
}
|
|
501
501
|
/**
|
|
502
502
|
* <p>A service limit was exceeded.</p>
|
|
@@ -514,12 +514,12 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
514
514
|
* <p>The ID of the resource.</p>
|
|
515
515
|
* @public
|
|
516
516
|
*/
|
|
517
|
-
ResourceId?: string;
|
|
517
|
+
ResourceId?: string | undefined;
|
|
518
518
|
/**
|
|
519
519
|
* <p>The resource type.</p>
|
|
520
520
|
* @public
|
|
521
521
|
*/
|
|
522
|
-
ResourceType?: string;
|
|
522
|
+
ResourceType?: string | undefined;
|
|
523
523
|
/**
|
|
524
524
|
* <p>The limit code.</p>
|
|
525
525
|
* @public
|
|
@@ -558,7 +558,7 @@ export interface AssociateCustomerGatewayRequest {
|
|
|
558
558
|
* <p>The ID of the link.</p>
|
|
559
559
|
* @public
|
|
560
560
|
*/
|
|
561
|
-
LinkId?: string;
|
|
561
|
+
LinkId?: string | undefined;
|
|
562
562
|
}
|
|
563
563
|
/**
|
|
564
564
|
* @public
|
|
@@ -583,27 +583,27 @@ export interface CustomerGatewayAssociation {
|
|
|
583
583
|
* <p>The Amazon Resource Name (ARN) of the customer gateway.</p>
|
|
584
584
|
* @public
|
|
585
585
|
*/
|
|
586
|
-
CustomerGatewayArn?: string;
|
|
586
|
+
CustomerGatewayArn?: string | undefined;
|
|
587
587
|
/**
|
|
588
588
|
* <p>The ID of the global network.</p>
|
|
589
589
|
* @public
|
|
590
590
|
*/
|
|
591
|
-
GlobalNetworkId?: string;
|
|
591
|
+
GlobalNetworkId?: string | undefined;
|
|
592
592
|
/**
|
|
593
593
|
* <p>The ID of the device.</p>
|
|
594
594
|
* @public
|
|
595
595
|
*/
|
|
596
|
-
DeviceId?: string;
|
|
596
|
+
DeviceId?: string | undefined;
|
|
597
597
|
/**
|
|
598
598
|
* <p>The ID of the link.</p>
|
|
599
599
|
* @public
|
|
600
600
|
*/
|
|
601
|
-
LinkId?: string;
|
|
601
|
+
LinkId?: string | undefined;
|
|
602
602
|
/**
|
|
603
603
|
* <p>The association state.</p>
|
|
604
604
|
* @public
|
|
605
605
|
*/
|
|
606
|
-
State?: CustomerGatewayAssociationState;
|
|
606
|
+
State?: CustomerGatewayAssociationState | undefined;
|
|
607
607
|
}
|
|
608
608
|
/**
|
|
609
609
|
* @public
|
|
@@ -613,7 +613,7 @@ export interface AssociateCustomerGatewayResponse {
|
|
|
613
613
|
* <p>The customer gateway association.</p>
|
|
614
614
|
* @public
|
|
615
615
|
*/
|
|
616
|
-
CustomerGatewayAssociation?: CustomerGatewayAssociation;
|
|
616
|
+
CustomerGatewayAssociation?: CustomerGatewayAssociation | undefined;
|
|
617
617
|
}
|
|
618
618
|
/**
|
|
619
619
|
* @public
|
|
@@ -658,22 +658,22 @@ export interface LinkAssociation {
|
|
|
658
658
|
* <p>The ID of the global network.</p>
|
|
659
659
|
* @public
|
|
660
660
|
*/
|
|
661
|
-
GlobalNetworkId?: string;
|
|
661
|
+
GlobalNetworkId?: string | undefined;
|
|
662
662
|
/**
|
|
663
663
|
* <p>The device ID for the link association.</p>
|
|
664
664
|
* @public
|
|
665
665
|
*/
|
|
666
|
-
DeviceId?: string;
|
|
666
|
+
DeviceId?: string | undefined;
|
|
667
667
|
/**
|
|
668
668
|
* <p>The ID of the link.</p>
|
|
669
669
|
* @public
|
|
670
670
|
*/
|
|
671
|
-
LinkId?: string;
|
|
671
|
+
LinkId?: string | undefined;
|
|
672
672
|
/**
|
|
673
673
|
* <p>The state of the association.</p>
|
|
674
674
|
* @public
|
|
675
675
|
*/
|
|
676
|
-
LinkAssociationState?: LinkAssociationState;
|
|
676
|
+
LinkAssociationState?: LinkAssociationState | undefined;
|
|
677
677
|
}
|
|
678
678
|
/**
|
|
679
679
|
* @public
|
|
@@ -683,7 +683,7 @@ export interface AssociateLinkResponse {
|
|
|
683
683
|
* <p>The link association.</p>
|
|
684
684
|
* @public
|
|
685
685
|
*/
|
|
686
|
-
LinkAssociation?: LinkAssociation;
|
|
686
|
+
LinkAssociation?: LinkAssociation | undefined;
|
|
687
687
|
}
|
|
688
688
|
/**
|
|
689
689
|
* @public
|
|
@@ -708,7 +708,7 @@ export interface AssociateTransitGatewayConnectPeerRequest {
|
|
|
708
708
|
* <p>The ID of the link.</p>
|
|
709
709
|
* @public
|
|
710
710
|
*/
|
|
711
|
-
LinkId?: string;
|
|
711
|
+
LinkId?: string | undefined;
|
|
712
712
|
}
|
|
713
713
|
/**
|
|
714
714
|
* @public
|
|
@@ -733,27 +733,27 @@ export interface TransitGatewayConnectPeerAssociation {
|
|
|
733
733
|
* <p>The Amazon Resource Name (ARN) of the transit gateway Connect peer.</p>
|
|
734
734
|
* @public
|
|
735
735
|
*/
|
|
736
|
-
TransitGatewayConnectPeerArn?: string;
|
|
736
|
+
TransitGatewayConnectPeerArn?: string | undefined;
|
|
737
737
|
/**
|
|
738
738
|
* <p>The ID of the global network.</p>
|
|
739
739
|
* @public
|
|
740
740
|
*/
|
|
741
|
-
GlobalNetworkId?: string;
|
|
741
|
+
GlobalNetworkId?: string | undefined;
|
|
742
742
|
/**
|
|
743
743
|
* <p>The ID of the device.</p>
|
|
744
744
|
* @public
|
|
745
745
|
*/
|
|
746
|
-
DeviceId?: string;
|
|
746
|
+
DeviceId?: string | undefined;
|
|
747
747
|
/**
|
|
748
748
|
* <p>The ID of the link.</p>
|
|
749
749
|
* @public
|
|
750
750
|
*/
|
|
751
|
-
LinkId?: string;
|
|
751
|
+
LinkId?: string | undefined;
|
|
752
752
|
/**
|
|
753
753
|
* <p>The state of the association.</p>
|
|
754
754
|
* @public
|
|
755
755
|
*/
|
|
756
|
-
State?: TransitGatewayConnectPeerAssociationState;
|
|
756
|
+
State?: TransitGatewayConnectPeerAssociationState | undefined;
|
|
757
757
|
}
|
|
758
758
|
/**
|
|
759
759
|
* @public
|
|
@@ -763,7 +763,7 @@ export interface AssociateTransitGatewayConnectPeerResponse {
|
|
|
763
763
|
* <p>The transit gateway Connect peer association.</p>
|
|
764
764
|
* @public
|
|
765
765
|
*/
|
|
766
|
-
TransitGatewayConnectPeerAssociation?: TransitGatewayConnectPeerAssociation;
|
|
766
|
+
TransitGatewayConnectPeerAssociation?: TransitGatewayConnectPeerAssociation | undefined;
|
|
767
767
|
}
|
|
768
768
|
/**
|
|
769
769
|
* <p>Specifies a location in Amazon Web Services.</p>
|
|
@@ -775,12 +775,12 @@ export interface AWSLocation {
|
|
|
775
775
|
* Zone, Wavelength Zone, or an Outpost.</p>
|
|
776
776
|
* @public
|
|
777
777
|
*/
|
|
778
|
-
Zone?: string;
|
|
778
|
+
Zone?: string | undefined;
|
|
779
779
|
/**
|
|
780
780
|
* <p>The Amazon Resource Name (ARN) of the subnet that the device is located in.</p>
|
|
781
781
|
* @public
|
|
782
782
|
*/
|
|
783
|
-
SubnetArn?: string;
|
|
783
|
+
SubnetArn?: string | undefined;
|
|
784
784
|
}
|
|
785
785
|
/**
|
|
786
786
|
* <p>Describes bandwidth information.</p>
|
|
@@ -791,12 +791,12 @@ export interface Bandwidth {
|
|
|
791
791
|
* <p>Upload speed in Mbps.</p>
|
|
792
792
|
* @public
|
|
793
793
|
*/
|
|
794
|
-
UploadSpeed?: number;
|
|
794
|
+
UploadSpeed?: number | undefined;
|
|
795
795
|
/**
|
|
796
796
|
* <p>Download speed in Mbps.</p>
|
|
797
797
|
* @public
|
|
798
798
|
*/
|
|
799
|
-
DownloadSpeed?: number;
|
|
799
|
+
DownloadSpeed?: number | undefined;
|
|
800
800
|
}
|
|
801
801
|
/**
|
|
802
802
|
* <p>Describes the BGP options.</p>
|
|
@@ -807,7 +807,7 @@ export interface BgpOptions {
|
|
|
807
807
|
* <p>The Peer ASN of the BGP.</p>
|
|
808
808
|
* @public
|
|
809
809
|
*/
|
|
810
|
-
PeerAsn?: number;
|
|
810
|
+
PeerAsn?: number | undefined;
|
|
811
811
|
}
|
|
812
812
|
/**
|
|
813
813
|
* @public
|
|
@@ -893,7 +893,7 @@ export interface ConnectAttachmentOptions {
|
|
|
893
893
|
* <p>The protocol used for the attachment connection.</p>
|
|
894
894
|
* @public
|
|
895
895
|
*/
|
|
896
|
-
Protocol?: TunnelProtocol;
|
|
896
|
+
Protocol?: TunnelProtocol | undefined;
|
|
897
897
|
}
|
|
898
898
|
/**
|
|
899
899
|
* <p>Describes a core network Connect attachment.</p>
|
|
@@ -904,17 +904,17 @@ export interface ConnectAttachment {
|
|
|
904
904
|
* <p>The attachment details.</p>
|
|
905
905
|
* @public
|
|
906
906
|
*/
|
|
907
|
-
Attachment?: Attachment;
|
|
907
|
+
Attachment?: Attachment | undefined;
|
|
908
908
|
/**
|
|
909
909
|
* <p>The ID of the transport attachment.</p>
|
|
910
910
|
* @public
|
|
911
911
|
*/
|
|
912
|
-
TransportAttachmentId?: string;
|
|
912
|
+
TransportAttachmentId?: string | undefined;
|
|
913
913
|
/**
|
|
914
914
|
* <p>Options for connecting an attachment.</p>
|
|
915
915
|
* @public
|
|
916
916
|
*/
|
|
917
|
-
Options?: ConnectAttachmentOptions;
|
|
917
|
+
Options?: ConnectAttachmentOptions | undefined;
|
|
918
918
|
}
|
|
919
919
|
/**
|
|
920
920
|
* @public
|
|
@@ -939,57 +939,57 @@ export interface Connection {
|
|
|
939
939
|
* <p>The ID of the connection.</p>
|
|
940
940
|
* @public
|
|
941
941
|
*/
|
|
942
|
-
ConnectionId?: string;
|
|
942
|
+
ConnectionId?: string | undefined;
|
|
943
943
|
/**
|
|
944
944
|
* <p>The Amazon Resource Name (ARN) of the connection.</p>
|
|
945
945
|
* @public
|
|
946
946
|
*/
|
|
947
|
-
ConnectionArn?: string;
|
|
947
|
+
ConnectionArn?: string | undefined;
|
|
948
948
|
/**
|
|
949
949
|
* <p>The ID of the global network.</p>
|
|
950
950
|
* @public
|
|
951
951
|
*/
|
|
952
|
-
GlobalNetworkId?: string;
|
|
952
|
+
GlobalNetworkId?: string | undefined;
|
|
953
953
|
/**
|
|
954
954
|
* <p>The ID of the first device in the connection.</p>
|
|
955
955
|
* @public
|
|
956
956
|
*/
|
|
957
|
-
DeviceId?: string;
|
|
957
|
+
DeviceId?: string | undefined;
|
|
958
958
|
/**
|
|
959
959
|
* <p>The ID of the second device in the connection.</p>
|
|
960
960
|
* @public
|
|
961
961
|
*/
|
|
962
|
-
ConnectedDeviceId?: string;
|
|
962
|
+
ConnectedDeviceId?: string | undefined;
|
|
963
963
|
/**
|
|
964
964
|
* <p>The ID of the link for the first device in the connection.</p>
|
|
965
965
|
* @public
|
|
966
966
|
*/
|
|
967
|
-
LinkId?: string;
|
|
967
|
+
LinkId?: string | undefined;
|
|
968
968
|
/**
|
|
969
969
|
* <p>The ID of the link for the second device in the connection.</p>
|
|
970
970
|
* @public
|
|
971
971
|
*/
|
|
972
|
-
ConnectedLinkId?: string;
|
|
972
|
+
ConnectedLinkId?: string | undefined;
|
|
973
973
|
/**
|
|
974
974
|
* <p>The description of the connection.</p>
|
|
975
975
|
* @public
|
|
976
976
|
*/
|
|
977
|
-
Description?: string;
|
|
977
|
+
Description?: string | undefined;
|
|
978
978
|
/**
|
|
979
979
|
* <p>The date and time that the connection was created.</p>
|
|
980
980
|
* @public
|
|
981
981
|
*/
|
|
982
|
-
CreatedAt?: Date;
|
|
982
|
+
CreatedAt?: Date | undefined;
|
|
983
983
|
/**
|
|
984
984
|
* <p>The state of the connection.</p>
|
|
985
985
|
* @public
|
|
986
986
|
*/
|
|
987
|
-
State?: ConnectionState;
|
|
987
|
+
State?: ConnectionState | undefined;
|
|
988
988
|
/**
|
|
989
989
|
* <p>The tags for the connection.</p>
|
|
990
990
|
* @public
|
|
991
991
|
*/
|
|
992
|
-
Tags?: Tag[];
|
|
992
|
+
Tags?: Tag[] | undefined;
|
|
993
993
|
}
|
|
994
994
|
/**
|
|
995
995
|
* @public
|
|
@@ -1024,17 +1024,17 @@ export interface ConnectionHealth {
|
|
|
1024
1024
|
* <p>The connection type.</p>
|
|
1025
1025
|
* @public
|
|
1026
1026
|
*/
|
|
1027
|
-
Type?: ConnectionType;
|
|
1027
|
+
Type?: ConnectionType | undefined;
|
|
1028
1028
|
/**
|
|
1029
1029
|
* <p>The connection status.</p>
|
|
1030
1030
|
* @public
|
|
1031
1031
|
*/
|
|
1032
|
-
Status?: ConnectionStatus;
|
|
1032
|
+
Status?: ConnectionStatus | undefined;
|
|
1033
1033
|
/**
|
|
1034
1034
|
* <p>The time the status was last updated.</p>
|
|
1035
1035
|
* @public
|
|
1036
1036
|
*/
|
|
1037
|
-
Timestamp?: Date;
|
|
1037
|
+
Timestamp?: Date | undefined;
|
|
1038
1038
|
}
|
|
1039
1039
|
/**
|
|
1040
1040
|
* <p>Describes a core network BGP configuration.</p>
|
|
@@ -1045,22 +1045,22 @@ export interface ConnectPeerBgpConfiguration {
|
|
|
1045
1045
|
* <p>The ASN of the Coret Network.</p>
|
|
1046
1046
|
* @public
|
|
1047
1047
|
*/
|
|
1048
|
-
CoreNetworkAsn?: number;
|
|
1048
|
+
CoreNetworkAsn?: number | undefined;
|
|
1049
1049
|
/**
|
|
1050
1050
|
* <p>The ASN of the Connect peer.</p>
|
|
1051
1051
|
* @public
|
|
1052
1052
|
*/
|
|
1053
|
-
PeerAsn?: number;
|
|
1053
|
+
PeerAsn?: number | undefined;
|
|
1054
1054
|
/**
|
|
1055
1055
|
* <p>The address of a core network.</p>
|
|
1056
1056
|
* @public
|
|
1057
1057
|
*/
|
|
1058
|
-
CoreNetworkAddress?: string;
|
|
1058
|
+
CoreNetworkAddress?: string | undefined;
|
|
1059
1059
|
/**
|
|
1060
1060
|
* <p>The address of a core network Connect peer.</p>
|
|
1061
1061
|
* @public
|
|
1062
1062
|
*/
|
|
1063
|
-
PeerAddress?: string;
|
|
1063
|
+
PeerAddress?: string | undefined;
|
|
1064
1064
|
}
|
|
1065
1065
|
/**
|
|
1066
1066
|
* <p>Describes a core network Connect peer configuration.</p>
|
|
@@ -1071,27 +1071,27 @@ export interface ConnectPeerConfiguration {
|
|
|
1071
1071
|
* <p>The IP address of a core network.</p>
|
|
1072
1072
|
* @public
|
|
1073
1073
|
*/
|
|
1074
|
-
CoreNetworkAddress?: string;
|
|
1074
|
+
CoreNetworkAddress?: string | undefined;
|
|
1075
1075
|
/**
|
|
1076
1076
|
* <p>The IP address of the Connect peer.</p>
|
|
1077
1077
|
* @public
|
|
1078
1078
|
*/
|
|
1079
|
-
PeerAddress?: string;
|
|
1079
|
+
PeerAddress?: string | undefined;
|
|
1080
1080
|
/**
|
|
1081
1081
|
* <p>The inside IP addresses used for a Connect peer configuration.</p>
|
|
1082
1082
|
* @public
|
|
1083
1083
|
*/
|
|
1084
|
-
InsideCidrBlocks?: string[];
|
|
1084
|
+
InsideCidrBlocks?: string[] | undefined;
|
|
1085
1085
|
/**
|
|
1086
1086
|
* <p>The protocol used for a Connect peer configuration.</p>
|
|
1087
1087
|
* @public
|
|
1088
1088
|
*/
|
|
1089
|
-
Protocol?: TunnelProtocol;
|
|
1089
|
+
Protocol?: TunnelProtocol | undefined;
|
|
1090
1090
|
/**
|
|
1091
1091
|
* <p>The Connect peer BGP configurations.</p>
|
|
1092
1092
|
* @public
|
|
1093
1093
|
*/
|
|
1094
|
-
BgpConfigurations?: ConnectPeerBgpConfiguration[];
|
|
1094
|
+
BgpConfigurations?: ConnectPeerBgpConfiguration[] | undefined;
|
|
1095
1095
|
}
|
|
1096
1096
|
/**
|
|
1097
1097
|
* @public
|
|
@@ -1118,22 +1118,22 @@ export interface ConnectPeerError {
|
|
|
1118
1118
|
* <p>The error code for the Connect peer request.</p>
|
|
1119
1119
|
* @public
|
|
1120
1120
|
*/
|
|
1121
|
-
Code?: ConnectPeerErrorCode;
|
|
1121
|
+
Code?: ConnectPeerErrorCode | undefined;
|
|
1122
1122
|
/**
|
|
1123
1123
|
* <p>The message associated with the error <code>code</code>.</p>
|
|
1124
1124
|
* @public
|
|
1125
1125
|
*/
|
|
1126
|
-
Message?: string;
|
|
1126
|
+
Message?: string | undefined;
|
|
1127
1127
|
/**
|
|
1128
1128
|
* <p>The ARN of the requested Connect peer resource.</p>
|
|
1129
1129
|
* @public
|
|
1130
1130
|
*/
|
|
1131
|
-
ResourceArn?: string;
|
|
1131
|
+
ResourceArn?: string | undefined;
|
|
1132
1132
|
/**
|
|
1133
1133
|
* <p>The ID of the Connect peer request.</p>
|
|
1134
1134
|
* @public
|
|
1135
1135
|
*/
|
|
1136
|
-
RequestId?: string;
|
|
1136
|
+
RequestId?: string | undefined;
|
|
1137
1137
|
}
|
|
1138
1138
|
/**
|
|
1139
1139
|
* @public
|
|
@@ -1158,52 +1158,52 @@ export interface ConnectPeer {
|
|
|
1158
1158
|
* <p>The ID of a core network.</p>
|
|
1159
1159
|
* @public
|
|
1160
1160
|
*/
|
|
1161
|
-
CoreNetworkId?: string;
|
|
1161
|
+
CoreNetworkId?: string | undefined;
|
|
1162
1162
|
/**
|
|
1163
1163
|
* <p>The ID of the attachment to connect.</p>
|
|
1164
1164
|
* @public
|
|
1165
1165
|
*/
|
|
1166
|
-
ConnectAttachmentId?: string;
|
|
1166
|
+
ConnectAttachmentId?: string | undefined;
|
|
1167
1167
|
/**
|
|
1168
1168
|
* <p>The ID of the Connect peer.</p>
|
|
1169
1169
|
* @public
|
|
1170
1170
|
*/
|
|
1171
|
-
ConnectPeerId?: string;
|
|
1171
|
+
ConnectPeerId?: string | undefined;
|
|
1172
1172
|
/**
|
|
1173
1173
|
* <p>The Connect peer Regions where edges are located.</p>
|
|
1174
1174
|
* @public
|
|
1175
1175
|
*/
|
|
1176
|
-
EdgeLocation?: string;
|
|
1176
|
+
EdgeLocation?: string | undefined;
|
|
1177
1177
|
/**
|
|
1178
1178
|
* <p>The state of the Connect peer.</p>
|
|
1179
1179
|
* @public
|
|
1180
1180
|
*/
|
|
1181
|
-
State?: ConnectPeerState;
|
|
1181
|
+
State?: ConnectPeerState | undefined;
|
|
1182
1182
|
/**
|
|
1183
1183
|
* <p>The timestamp when the Connect peer was created.</p>
|
|
1184
1184
|
* @public
|
|
1185
1185
|
*/
|
|
1186
|
-
CreatedAt?: Date;
|
|
1186
|
+
CreatedAt?: Date | undefined;
|
|
1187
1187
|
/**
|
|
1188
1188
|
* <p>The configuration of the Connect peer.</p>
|
|
1189
1189
|
* @public
|
|
1190
1190
|
*/
|
|
1191
|
-
Configuration?: ConnectPeerConfiguration;
|
|
1191
|
+
Configuration?: ConnectPeerConfiguration | undefined;
|
|
1192
1192
|
/**
|
|
1193
1193
|
* <p>The list of key-value tags associated with the Connect peer.</p>
|
|
1194
1194
|
* @public
|
|
1195
1195
|
*/
|
|
1196
|
-
Tags?: Tag[];
|
|
1196
|
+
Tags?: Tag[] | undefined;
|
|
1197
1197
|
/**
|
|
1198
1198
|
* <p>The subnet ARN for the Connect peer. This only applies only when the protocol is NO_ENCAP.</p>
|
|
1199
1199
|
* @public
|
|
1200
1200
|
*/
|
|
1201
|
-
SubnetArn?: string;
|
|
1201
|
+
SubnetArn?: string | undefined;
|
|
1202
1202
|
/**
|
|
1203
1203
|
* <p>Describes the error associated with the attachment request.</p>
|
|
1204
1204
|
* @public
|
|
1205
1205
|
*/
|
|
1206
|
-
LastModificationErrors?: ConnectPeerError[];
|
|
1206
|
+
LastModificationErrors?: ConnectPeerError[] | undefined;
|
|
1207
1207
|
}
|
|
1208
1208
|
/**
|
|
1209
1209
|
* <p>Summary description of a Connect peer.</p>
|
|
@@ -1214,42 +1214,42 @@ export interface ConnectPeerSummary {
|
|
|
1214
1214
|
* <p>The ID of a core network.</p>
|
|
1215
1215
|
* @public
|
|
1216
1216
|
*/
|
|
1217
|
-
CoreNetworkId?: string;
|
|
1217
|
+
CoreNetworkId?: string | undefined;
|
|
1218
1218
|
/**
|
|
1219
1219
|
* <p>The ID of a Connect peer attachment.</p>
|
|
1220
1220
|
* @public
|
|
1221
1221
|
*/
|
|
1222
|
-
ConnectAttachmentId?: string;
|
|
1222
|
+
ConnectAttachmentId?: string | undefined;
|
|
1223
1223
|
/**
|
|
1224
1224
|
* <p>The ID of a Connect peer.</p>
|
|
1225
1225
|
* @public
|
|
1226
1226
|
*/
|
|
1227
|
-
ConnectPeerId?: string;
|
|
1227
|
+
ConnectPeerId?: string | undefined;
|
|
1228
1228
|
/**
|
|
1229
1229
|
* <p>The Region where the edge is located.</p>
|
|
1230
1230
|
* @public
|
|
1231
1231
|
*/
|
|
1232
|
-
EdgeLocation?: string;
|
|
1232
|
+
EdgeLocation?: string | undefined;
|
|
1233
1233
|
/**
|
|
1234
1234
|
* <p>The state of a Connect peer.</p>
|
|
1235
1235
|
* @public
|
|
1236
1236
|
*/
|
|
1237
|
-
ConnectPeerState?: ConnectPeerState;
|
|
1237
|
+
ConnectPeerState?: ConnectPeerState | undefined;
|
|
1238
1238
|
/**
|
|
1239
1239
|
* <p>The timestamp when a Connect peer was created.</p>
|
|
1240
1240
|
* @public
|
|
1241
1241
|
*/
|
|
1242
|
-
CreatedAt?: Date;
|
|
1242
|
+
CreatedAt?: Date | undefined;
|
|
1243
1243
|
/**
|
|
1244
1244
|
* <p>The list of key-value tags associated with the Connect peer summary.</p>
|
|
1245
1245
|
* @public
|
|
1246
1246
|
*/
|
|
1247
|
-
Tags?: Tag[];
|
|
1247
|
+
Tags?: Tag[] | undefined;
|
|
1248
1248
|
/**
|
|
1249
1249
|
* <p>The subnet ARN for the Connect peer summary.</p>
|
|
1250
1250
|
* @public
|
|
1251
1251
|
*/
|
|
1252
|
-
SubnetArn?: string;
|
|
1252
|
+
SubnetArn?: string | undefined;
|
|
1253
1253
|
}
|
|
1254
1254
|
/**
|
|
1255
1255
|
* <p>Describes a core network edge.</p>
|
|
@@ -1260,17 +1260,17 @@ export interface CoreNetworkEdge {
|
|
|
1260
1260
|
* <p>The Region where a core network edge is located.</p>
|
|
1261
1261
|
* @public
|
|
1262
1262
|
*/
|
|
1263
|
-
EdgeLocation?: string;
|
|
1263
|
+
EdgeLocation?: string | undefined;
|
|
1264
1264
|
/**
|
|
1265
1265
|
* <p>The ASN of a core network edge.</p>
|
|
1266
1266
|
* @public
|
|
1267
1267
|
*/
|
|
1268
|
-
Asn?: number;
|
|
1268
|
+
Asn?: number | undefined;
|
|
1269
1269
|
/**
|
|
1270
1270
|
* <p>The inside IP addresses used for core network edges.</p>
|
|
1271
1271
|
* @public
|
|
1272
1272
|
*/
|
|
1273
|
-
InsideCidrBlocks?: string[];
|
|
1273
|
+
InsideCidrBlocks?: string[] | undefined;
|
|
1274
1274
|
}
|
|
1275
1275
|
/**
|
|
1276
1276
|
* <p>Describes the segments associated with the service insertion action.</p>
|
|
@@ -1281,12 +1281,12 @@ export interface ServiceInsertionSegments {
|
|
|
1281
1281
|
* <p>The list of segments associated with the <code>send-via</code> action.</p>
|
|
1282
1282
|
* @public
|
|
1283
1283
|
*/
|
|
1284
|
-
SendVia?: string[];
|
|
1284
|
+
SendVia?: string[] | undefined;
|
|
1285
1285
|
/**
|
|
1286
1286
|
* <p>The list of segments associated with the <code>send-to</code> action.</p>
|
|
1287
1287
|
* @public
|
|
1288
1288
|
*/
|
|
1289
|
-
SendTo?: string[];
|
|
1289
|
+
SendTo?: string[] | undefined;
|
|
1290
1290
|
}
|
|
1291
1291
|
/**
|
|
1292
1292
|
* <p>Describes a network function group.</p>
|
|
@@ -1297,17 +1297,17 @@ export interface CoreNetworkNetworkFunctionGroup {
|
|
|
1297
1297
|
* <p>The name of the network function group.</p>
|
|
1298
1298
|
* @public
|
|
1299
1299
|
*/
|
|
1300
|
-
Name?: string;
|
|
1300
|
+
Name?: string | undefined;
|
|
1301
1301
|
/**
|
|
1302
1302
|
* <p>The core network edge locations.</p>
|
|
1303
1303
|
* @public
|
|
1304
1304
|
*/
|
|
1305
|
-
EdgeLocations?: string[];
|
|
1305
|
+
EdgeLocations?: string[] | undefined;
|
|
1306
1306
|
/**
|
|
1307
1307
|
* <p>The segments associated with the network function group.</p>
|
|
1308
1308
|
* @public
|
|
1309
1309
|
*/
|
|
1310
|
-
Segments?: ServiceInsertionSegments;
|
|
1310
|
+
Segments?: ServiceInsertionSegments | undefined;
|
|
1311
1311
|
}
|
|
1312
1312
|
/**
|
|
1313
1313
|
* <p>Describes a core network segment, which are dedicated routes. Only attachments within this segment can communicate with each other.</p>
|
|
@@ -1318,17 +1318,17 @@ export interface CoreNetworkSegment {
|
|
|
1318
1318
|
* <p>The name of a core network segment.</p>
|
|
1319
1319
|
* @public
|
|
1320
1320
|
*/
|
|
1321
|
-
Name?: string;
|
|
1321
|
+
Name?: string | undefined;
|
|
1322
1322
|
/**
|
|
1323
1323
|
* <p>The Regions where the edges are located.</p>
|
|
1324
1324
|
* @public
|
|
1325
1325
|
*/
|
|
1326
|
-
EdgeLocations?: string[];
|
|
1326
|
+
EdgeLocations?: string[] | undefined;
|
|
1327
1327
|
/**
|
|
1328
1328
|
* <p>The shared segments of a core network.</p>
|
|
1329
1329
|
* @public
|
|
1330
1330
|
*/
|
|
1331
|
-
SharedSegments?: string[];
|
|
1331
|
+
SharedSegments?: string[] | undefined;
|
|
1332
1332
|
}
|
|
1333
1333
|
/**
|
|
1334
1334
|
* @public
|
|
@@ -1353,52 +1353,52 @@ export interface CoreNetwork {
|
|
|
1353
1353
|
* <p>The ID of the global network that your core network is a part of. </p>
|
|
1354
1354
|
* @public
|
|
1355
1355
|
*/
|
|
1356
|
-
GlobalNetworkId?: string;
|
|
1356
|
+
GlobalNetworkId?: string | undefined;
|
|
1357
1357
|
/**
|
|
1358
1358
|
* <p>The ID of a core network.</p>
|
|
1359
1359
|
* @public
|
|
1360
1360
|
*/
|
|
1361
|
-
CoreNetworkId?: string;
|
|
1361
|
+
CoreNetworkId?: string | undefined;
|
|
1362
1362
|
/**
|
|
1363
1363
|
* <p>The ARN of a core network.</p>
|
|
1364
1364
|
* @public
|
|
1365
1365
|
*/
|
|
1366
|
-
CoreNetworkArn?: string;
|
|
1366
|
+
CoreNetworkArn?: string | undefined;
|
|
1367
1367
|
/**
|
|
1368
1368
|
* <p>The description of a core network.</p>
|
|
1369
1369
|
* @public
|
|
1370
1370
|
*/
|
|
1371
|
-
Description?: string;
|
|
1371
|
+
Description?: string | undefined;
|
|
1372
1372
|
/**
|
|
1373
1373
|
* <p>The timestamp when a core network was created.</p>
|
|
1374
1374
|
* @public
|
|
1375
1375
|
*/
|
|
1376
|
-
CreatedAt?: Date;
|
|
1376
|
+
CreatedAt?: Date | undefined;
|
|
1377
1377
|
/**
|
|
1378
1378
|
* <p>The current state of a core network.</p>
|
|
1379
1379
|
* @public
|
|
1380
1380
|
*/
|
|
1381
|
-
State?: CoreNetworkState;
|
|
1381
|
+
State?: CoreNetworkState | undefined;
|
|
1382
1382
|
/**
|
|
1383
1383
|
* <p>The segments within a core network.</p>
|
|
1384
1384
|
* @public
|
|
1385
1385
|
*/
|
|
1386
|
-
Segments?: CoreNetworkSegment[];
|
|
1386
|
+
Segments?: CoreNetworkSegment[] | undefined;
|
|
1387
1387
|
/**
|
|
1388
1388
|
* <p>The network function groups associated with a core network.</p>
|
|
1389
1389
|
* @public
|
|
1390
1390
|
*/
|
|
1391
|
-
NetworkFunctionGroups?: CoreNetworkNetworkFunctionGroup[];
|
|
1391
|
+
NetworkFunctionGroups?: CoreNetworkNetworkFunctionGroup[] | undefined;
|
|
1392
1392
|
/**
|
|
1393
1393
|
* <p>The edges within a core network.</p>
|
|
1394
1394
|
* @public
|
|
1395
1395
|
*/
|
|
1396
|
-
Edges?: CoreNetworkEdge[];
|
|
1396
|
+
Edges?: CoreNetworkEdge[] | undefined;
|
|
1397
1397
|
/**
|
|
1398
1398
|
* <p>The list of key-value tags associated with a core network.</p>
|
|
1399
1399
|
* @public
|
|
1400
1400
|
*/
|
|
1401
|
-
Tags?: Tag[];
|
|
1401
|
+
Tags?: Tag[] | undefined;
|
|
1402
1402
|
}
|
|
1403
1403
|
/**
|
|
1404
1404
|
* @public
|
|
@@ -1433,7 +1433,7 @@ export interface NetworkFunctionGroup {
|
|
|
1433
1433
|
* <p>The name of the network function group.</p>
|
|
1434
1434
|
* @public
|
|
1435
1435
|
*/
|
|
1436
|
-
Name?: string;
|
|
1436
|
+
Name?: string | undefined;
|
|
1437
1437
|
}
|
|
1438
1438
|
/**
|
|
1439
1439
|
* <p>Describes the edge that's used for the override. </p>
|
|
@@ -1444,12 +1444,12 @@ export interface EdgeOverride {
|
|
|
1444
1444
|
* <p>The list of edge locations.</p>
|
|
1445
1445
|
* @public
|
|
1446
1446
|
*/
|
|
1447
|
-
EdgeSets?: string[][];
|
|
1447
|
+
EdgeSets?: string[][] | undefined;
|
|
1448
1448
|
/**
|
|
1449
1449
|
* <p>The edge that should be used when overriding the current edge order.</p>
|
|
1450
1450
|
* @public
|
|
1451
1451
|
*/
|
|
1452
|
-
UseEdge?: string;
|
|
1452
|
+
UseEdge?: string | undefined;
|
|
1453
1453
|
}
|
|
1454
1454
|
/**
|
|
1455
1455
|
* <p>The list of network function groups and edge overrides for the service insertion
|
|
@@ -1461,12 +1461,12 @@ export interface Via {
|
|
|
1461
1461
|
* <p>The list of network function groups associated with the service insertion action.</p>
|
|
1462
1462
|
* @public
|
|
1463
1463
|
*/
|
|
1464
|
-
NetworkFunctionGroups?: NetworkFunctionGroup[];
|
|
1464
|
+
NetworkFunctionGroups?: NetworkFunctionGroup[] | undefined;
|
|
1465
1465
|
/**
|
|
1466
1466
|
* <p>Describes any edge overrides. An edge override is a specific edge to be used for traffic.</p>
|
|
1467
1467
|
* @public
|
|
1468
1468
|
*/
|
|
1469
|
-
WithEdgeOverrides?: EdgeOverride[];
|
|
1469
|
+
WithEdgeOverrides?: EdgeOverride[] | undefined;
|
|
1470
1470
|
}
|
|
1471
1471
|
/**
|
|
1472
1472
|
* <p>Displays a list of the destination segments. Used only when the service insertion
|
|
@@ -1478,7 +1478,7 @@ export interface WhenSentTo {
|
|
|
1478
1478
|
* <p>The list of destination segments when the service insertion action is <code>send-to</code>.</p>
|
|
1479
1479
|
* @public
|
|
1480
1480
|
*/
|
|
1481
|
-
WhenSentToSegmentsList?: string[];
|
|
1481
|
+
WhenSentToSegmentsList?: string[] | undefined;
|
|
1482
1482
|
}
|
|
1483
1483
|
/**
|
|
1484
1484
|
* <p>Describes the action that the service insertion will take for any segments associated with it.</p>
|
|
@@ -1493,24 +1493,24 @@ export interface ServiceInsertionAction {
|
|
|
1493
1493
|
* location. </p>
|
|
1494
1494
|
* @public
|
|
1495
1495
|
*/
|
|
1496
|
-
Action?: SegmentActionServiceInsertion;
|
|
1496
|
+
Action?: SegmentActionServiceInsertion | undefined;
|
|
1497
1497
|
/**
|
|
1498
1498
|
* <p>Describes the mode packets take for the <code>send-via</code> action. This is not used when the action is <code>send-to</code>. <code>dual-hop</code> packets traverse attachments in both the source to the destination core network edges. This mode requires that an inspection attachment must be present in all Regions of the service insertion-enabled segments.
|
|
1499
1499
|
* For <code>single-hop</code>, packets traverse a single intermediate inserted attachment. You can use <code>EdgeOverride</code> to specify a specific edge to use. </p>
|
|
1500
1500
|
* @public
|
|
1501
1501
|
*/
|
|
1502
|
-
Mode?: SendViaMode;
|
|
1502
|
+
Mode?: SendViaMode | undefined;
|
|
1503
1503
|
/**
|
|
1504
1504
|
* <p>The list of destination segments if the service insertion action is <code>send-via</code>.</p>
|
|
1505
1505
|
* @public
|
|
1506
1506
|
*/
|
|
1507
|
-
WhenSentTo?: WhenSentTo;
|
|
1507
|
+
WhenSentTo?: WhenSentTo | undefined;
|
|
1508
1508
|
/**
|
|
1509
1509
|
* <p>The list of network function groups and any edge overrides for the chosen service
|
|
1510
1510
|
* insertion action. Used for both <code>send-to</code> or <code>send-via</code>.</p>
|
|
1511
1511
|
* @public
|
|
1512
1512
|
*/
|
|
1513
|
-
Via?: Via;
|
|
1513
|
+
Via?: Via | undefined;
|
|
1514
1514
|
}
|
|
1515
1515
|
/**
|
|
1516
1516
|
* <p>Describes a core network change.</p>
|
|
@@ -1521,47 +1521,47 @@ export interface CoreNetworkChangeValues {
|
|
|
1521
1521
|
* <p>The names of the segments in a core network.</p>
|
|
1522
1522
|
* @public
|
|
1523
1523
|
*/
|
|
1524
|
-
SegmentName?: string;
|
|
1524
|
+
SegmentName?: string | undefined;
|
|
1525
1525
|
/**
|
|
1526
1526
|
* <p>The network function group name if the change event is associated with a network function group.</p>
|
|
1527
1527
|
* @public
|
|
1528
1528
|
*/
|
|
1529
|
-
NetworkFunctionGroupName?: string;
|
|
1529
|
+
NetworkFunctionGroupName?: string | undefined;
|
|
1530
1530
|
/**
|
|
1531
1531
|
* <p>The Regions where edges are located in a core network. </p>
|
|
1532
1532
|
* @public
|
|
1533
1533
|
*/
|
|
1534
|
-
EdgeLocations?: string[];
|
|
1534
|
+
EdgeLocations?: string[] | undefined;
|
|
1535
1535
|
/**
|
|
1536
1536
|
* <p>The ASN of a core network.</p>
|
|
1537
1537
|
* @public
|
|
1538
1538
|
*/
|
|
1539
|
-
Asn?: number;
|
|
1539
|
+
Asn?: number | undefined;
|
|
1540
1540
|
/**
|
|
1541
1541
|
* <p>The IP addresses used for a core network.</p>
|
|
1542
1542
|
* @public
|
|
1543
1543
|
*/
|
|
1544
|
-
Cidr?: string;
|
|
1544
|
+
Cidr?: string | undefined;
|
|
1545
1545
|
/**
|
|
1546
1546
|
* <p>The ID of the destination.</p>
|
|
1547
1547
|
* @public
|
|
1548
1548
|
*/
|
|
1549
|
-
DestinationIdentifier?: string;
|
|
1549
|
+
DestinationIdentifier?: string | undefined;
|
|
1550
1550
|
/**
|
|
1551
1551
|
* <p>The inside IP addresses used for core network change values.</p>
|
|
1552
1552
|
* @public
|
|
1553
1553
|
*/
|
|
1554
|
-
InsideCidrBlocks?: string[];
|
|
1554
|
+
InsideCidrBlocks?: string[] | undefined;
|
|
1555
1555
|
/**
|
|
1556
1556
|
* <p>The shared segments for a core network change value. </p>
|
|
1557
1557
|
* @public
|
|
1558
1558
|
*/
|
|
1559
|
-
SharedSegments?: string[];
|
|
1559
|
+
SharedSegments?: string[] | undefined;
|
|
1560
1560
|
/**
|
|
1561
1561
|
* <p>Describes the service insertion action. </p>
|
|
1562
1562
|
* @public
|
|
1563
1563
|
*/
|
|
1564
|
-
ServiceInsertionActions?: ServiceInsertionAction[];
|
|
1564
|
+
ServiceInsertionActions?: ServiceInsertionAction[] | undefined;
|
|
1565
1565
|
}
|
|
1566
1566
|
/**
|
|
1567
1567
|
* <p>Details describing a core network change.</p>
|
|
@@ -1572,32 +1572,32 @@ export interface CoreNetworkChange {
|
|
|
1572
1572
|
* <p>The type of change.</p>
|
|
1573
1573
|
* @public
|
|
1574
1574
|
*/
|
|
1575
|
-
Type?: ChangeType;
|
|
1575
|
+
Type?: ChangeType | undefined;
|
|
1576
1576
|
/**
|
|
1577
1577
|
* <p>The action to take for a core network.</p>
|
|
1578
1578
|
* @public
|
|
1579
1579
|
*/
|
|
1580
|
-
Action?: ChangeAction;
|
|
1580
|
+
Action?: ChangeAction | undefined;
|
|
1581
1581
|
/**
|
|
1582
1582
|
* <p>The resource identifier.</p>
|
|
1583
1583
|
* @public
|
|
1584
1584
|
*/
|
|
1585
|
-
Identifier?: string;
|
|
1585
|
+
Identifier?: string | undefined;
|
|
1586
1586
|
/**
|
|
1587
1587
|
* <p>The previous values for a core network.</p>
|
|
1588
1588
|
* @public
|
|
1589
1589
|
*/
|
|
1590
|
-
PreviousValues?: CoreNetworkChangeValues;
|
|
1590
|
+
PreviousValues?: CoreNetworkChangeValues | undefined;
|
|
1591
1591
|
/**
|
|
1592
1592
|
* <p>The new value for a core network</p>
|
|
1593
1593
|
* @public
|
|
1594
1594
|
*/
|
|
1595
|
-
NewValues?: CoreNetworkChangeValues;
|
|
1595
|
+
NewValues?: CoreNetworkChangeValues | undefined;
|
|
1596
1596
|
/**
|
|
1597
1597
|
* <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>
|
|
1598
1598
|
* @public
|
|
1599
1599
|
*/
|
|
1600
|
-
IdentifierPath?: string;
|
|
1600
|
+
IdentifierPath?: string | undefined;
|
|
1601
1601
|
}
|
|
1602
1602
|
/**
|
|
1603
1603
|
* <p>Describes a core network change event.</p>
|
|
@@ -1608,27 +1608,27 @@ export interface CoreNetworkChangeEventValues {
|
|
|
1608
1608
|
* <p>The edge location for the core network change event.</p>
|
|
1609
1609
|
* @public
|
|
1610
1610
|
*/
|
|
1611
|
-
EdgeLocation?: string;
|
|
1611
|
+
EdgeLocation?: string | undefined;
|
|
1612
1612
|
/**
|
|
1613
1613
|
* <p>The segment name if the change event is associated with a segment.</p>
|
|
1614
1614
|
* @public
|
|
1615
1615
|
*/
|
|
1616
|
-
SegmentName?: string;
|
|
1616
|
+
SegmentName?: string | undefined;
|
|
1617
1617
|
/**
|
|
1618
1618
|
* <p>The changed network function group name.</p>
|
|
1619
1619
|
* @public
|
|
1620
1620
|
*/
|
|
1621
|
-
NetworkFunctionGroupName?: string;
|
|
1621
|
+
NetworkFunctionGroupName?: string | undefined;
|
|
1622
1622
|
/**
|
|
1623
1623
|
* <p>The ID of the attachment if the change event is associated with an attachment. </p>
|
|
1624
1624
|
* @public
|
|
1625
1625
|
*/
|
|
1626
|
-
AttachmentId?: string;
|
|
1626
|
+
AttachmentId?: string | undefined;
|
|
1627
1627
|
/**
|
|
1628
1628
|
* <p>For a <code>STATIC_ROUTE</code> event, this is the IP address.</p>
|
|
1629
1629
|
* @public
|
|
1630
1630
|
*/
|
|
1631
|
-
Cidr?: string;
|
|
1631
|
+
Cidr?: string | undefined;
|
|
1632
1632
|
}
|
|
1633
1633
|
/**
|
|
1634
1634
|
* <p>Describes a core network change event. This can be a change to a segment, attachment, route, etc.</p>
|
|
@@ -1639,32 +1639,32 @@ export interface CoreNetworkChangeEvent {
|
|
|
1639
1639
|
* <p>Describes the type of change event. </p>
|
|
1640
1640
|
* @public
|
|
1641
1641
|
*/
|
|
1642
|
-
Type?: ChangeType;
|
|
1642
|
+
Type?: ChangeType | undefined;
|
|
1643
1643
|
/**
|
|
1644
1644
|
* <p>The action taken for the change event.</p>
|
|
1645
1645
|
* @public
|
|
1646
1646
|
*/
|
|
1647
|
-
Action?: ChangeAction;
|
|
1647
|
+
Action?: ChangeAction | undefined;
|
|
1648
1648
|
/**
|
|
1649
1649
|
* <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>
|
|
1650
1650
|
* @public
|
|
1651
1651
|
*/
|
|
1652
|
-
IdentifierPath?: string;
|
|
1652
|
+
IdentifierPath?: string | undefined;
|
|
1653
1653
|
/**
|
|
1654
1654
|
* <p>The timestamp for an event change in status.</p>
|
|
1655
1655
|
* @public
|
|
1656
1656
|
*/
|
|
1657
|
-
EventTime?: Date;
|
|
1657
|
+
EventTime?: Date | undefined;
|
|
1658
1658
|
/**
|
|
1659
1659
|
* <p>The status of the core network change event.</p>
|
|
1660
1660
|
* @public
|
|
1661
1661
|
*/
|
|
1662
|
-
Status?: ChangeStatus;
|
|
1662
|
+
Status?: ChangeStatus | undefined;
|
|
1663
1663
|
/**
|
|
1664
1664
|
* <p>Details of the change event.</p>
|
|
1665
1665
|
* @public
|
|
1666
1666
|
*/
|
|
1667
|
-
Values?: CoreNetworkChangeEventValues;
|
|
1667
|
+
Values?: CoreNetworkChangeEventValues | undefined;
|
|
1668
1668
|
}
|
|
1669
1669
|
/**
|
|
1670
1670
|
* <p>Describes a core network </p>
|
|
@@ -1675,17 +1675,17 @@ export interface CoreNetworkNetworkFunctionGroupIdentifier {
|
|
|
1675
1675
|
* <p>The ID of the core network.</p>
|
|
1676
1676
|
* @public
|
|
1677
1677
|
*/
|
|
1678
|
-
CoreNetworkId?: string;
|
|
1678
|
+
CoreNetworkId?: string | undefined;
|
|
1679
1679
|
/**
|
|
1680
1680
|
* <p>The network function group name.</p>
|
|
1681
1681
|
* @public
|
|
1682
1682
|
*/
|
|
1683
|
-
NetworkFunctionGroupName?: string;
|
|
1683
|
+
NetworkFunctionGroupName?: string | undefined;
|
|
1684
1684
|
/**
|
|
1685
1685
|
* <p>The location for the core network edge.</p>
|
|
1686
1686
|
* @public
|
|
1687
1687
|
*/
|
|
1688
|
-
EdgeLocation?: string;
|
|
1688
|
+
EdgeLocation?: string | undefined;
|
|
1689
1689
|
}
|
|
1690
1690
|
/**
|
|
1691
1691
|
* @public
|
|
@@ -1718,7 +1718,7 @@ export interface CoreNetworkPolicyError {
|
|
|
1718
1718
|
* <p>The JSON path where the error was discovered in the policy document.</p>
|
|
1719
1719
|
* @public
|
|
1720
1720
|
*/
|
|
1721
|
-
Path?: string;
|
|
1721
|
+
Path?: string | undefined;
|
|
1722
1722
|
}
|
|
1723
1723
|
/**
|
|
1724
1724
|
* <p>Describes a core network policy. You can have only one LIVE Core Policy.</p>
|
|
@@ -1729,42 +1729,42 @@ export interface CoreNetworkPolicy {
|
|
|
1729
1729
|
* <p>The ID of a core network.</p>
|
|
1730
1730
|
* @public
|
|
1731
1731
|
*/
|
|
1732
|
-
CoreNetworkId?: string;
|
|
1732
|
+
CoreNetworkId?: string | undefined;
|
|
1733
1733
|
/**
|
|
1734
1734
|
* <p>The ID of the policy version.</p>
|
|
1735
1735
|
* @public
|
|
1736
1736
|
*/
|
|
1737
|
-
PolicyVersionId?: number;
|
|
1737
|
+
PolicyVersionId?: number | undefined;
|
|
1738
1738
|
/**
|
|
1739
1739
|
* <p>Whether a core network policy is the current LIVE policy or the most recently submitted policy.</p>
|
|
1740
1740
|
* @public
|
|
1741
1741
|
*/
|
|
1742
|
-
Alias?: CoreNetworkPolicyAlias;
|
|
1742
|
+
Alias?: CoreNetworkPolicyAlias | undefined;
|
|
1743
1743
|
/**
|
|
1744
1744
|
* <p>The description of a core network policy.</p>
|
|
1745
1745
|
* @public
|
|
1746
1746
|
*/
|
|
1747
|
-
Description?: string;
|
|
1747
|
+
Description?: string | undefined;
|
|
1748
1748
|
/**
|
|
1749
1749
|
* <p>The timestamp when a core network policy was created.</p>
|
|
1750
1750
|
* @public
|
|
1751
1751
|
*/
|
|
1752
|
-
CreatedAt?: Date;
|
|
1752
|
+
CreatedAt?: Date | undefined;
|
|
1753
1753
|
/**
|
|
1754
1754
|
* <p>The state of a core network policy.</p>
|
|
1755
1755
|
* @public
|
|
1756
1756
|
*/
|
|
1757
|
-
ChangeSetState?: ChangeSetState;
|
|
1757
|
+
ChangeSetState?: ChangeSetState | undefined;
|
|
1758
1758
|
/**
|
|
1759
1759
|
* <p>Describes any errors in a core network policy.</p>
|
|
1760
1760
|
* @public
|
|
1761
1761
|
*/
|
|
1762
|
-
PolicyErrors?: CoreNetworkPolicyError[];
|
|
1762
|
+
PolicyErrors?: CoreNetworkPolicyError[] | undefined;
|
|
1763
1763
|
/**
|
|
1764
1764
|
* <p>Describes a core network policy.</p>
|
|
1765
1765
|
* @public
|
|
1766
1766
|
*/
|
|
1767
|
-
PolicyDocument?: __LazyJsonString | string;
|
|
1767
|
+
PolicyDocument?: __LazyJsonString | string | undefined;
|
|
1768
1768
|
}
|
|
1769
1769
|
/**
|
|
1770
1770
|
* <p>Describes a core network policy exception.</p>
|
|
@@ -1778,7 +1778,7 @@ export declare class CoreNetworkPolicyException extends __BaseException {
|
|
|
1778
1778
|
* <p>Describes a core network policy exception.</p>
|
|
1779
1779
|
* @public
|
|
1780
1780
|
*/
|
|
1781
|
-
Errors?: CoreNetworkPolicyError[];
|
|
1781
|
+
Errors?: CoreNetworkPolicyError[] | undefined;
|
|
1782
1782
|
/**
|
|
1783
1783
|
* @internal
|
|
1784
1784
|
*/
|
|
@@ -1793,32 +1793,32 @@ export interface CoreNetworkPolicyVersion {
|
|
|
1793
1793
|
* <p>The ID of a core network.</p>
|
|
1794
1794
|
* @public
|
|
1795
1795
|
*/
|
|
1796
|
-
CoreNetworkId?: string;
|
|
1796
|
+
CoreNetworkId?: string | undefined;
|
|
1797
1797
|
/**
|
|
1798
1798
|
* <p>The ID of the policy version.</p>
|
|
1799
1799
|
* @public
|
|
1800
1800
|
*/
|
|
1801
|
-
PolicyVersionId?: number;
|
|
1801
|
+
PolicyVersionId?: number | undefined;
|
|
1802
1802
|
/**
|
|
1803
1803
|
* <p>Whether a core network policy is the current policy or the most recently submitted policy.</p>
|
|
1804
1804
|
* @public
|
|
1805
1805
|
*/
|
|
1806
|
-
Alias?: CoreNetworkPolicyAlias;
|
|
1806
|
+
Alias?: CoreNetworkPolicyAlias | undefined;
|
|
1807
1807
|
/**
|
|
1808
1808
|
* <p>The description of a core network policy version.</p>
|
|
1809
1809
|
* @public
|
|
1810
1810
|
*/
|
|
1811
|
-
Description?: string;
|
|
1811
|
+
Description?: string | undefined;
|
|
1812
1812
|
/**
|
|
1813
1813
|
* <p>The timestamp when a core network policy version was created.</p>
|
|
1814
1814
|
* @public
|
|
1815
1815
|
*/
|
|
1816
|
-
CreatedAt?: Date;
|
|
1816
|
+
CreatedAt?: Date | undefined;
|
|
1817
1817
|
/**
|
|
1818
1818
|
* <p>The status of the policy version change set.</p>
|
|
1819
1819
|
* @public
|
|
1820
1820
|
*/
|
|
1821
|
-
ChangeSetState?: ChangeSetState;
|
|
1821
|
+
ChangeSetState?: ChangeSetState | undefined;
|
|
1822
1822
|
}
|
|
1823
1823
|
/**
|
|
1824
1824
|
* <p>Returns details about a core network edge.</p>
|
|
@@ -1829,17 +1829,17 @@ export interface CoreNetworkSegmentEdgeIdentifier {
|
|
|
1829
1829
|
* <p>The ID of a core network.</p>
|
|
1830
1830
|
* @public
|
|
1831
1831
|
*/
|
|
1832
|
-
CoreNetworkId?: string;
|
|
1832
|
+
CoreNetworkId?: string | undefined;
|
|
1833
1833
|
/**
|
|
1834
1834
|
* <p>The name of the segment edge.</p>
|
|
1835
1835
|
* @public
|
|
1836
1836
|
*/
|
|
1837
|
-
SegmentName?: string;
|
|
1837
|
+
SegmentName?: string | undefined;
|
|
1838
1838
|
/**
|
|
1839
1839
|
* <p>The Region where the segment edge is located.</p>
|
|
1840
1840
|
* @public
|
|
1841
1841
|
*/
|
|
1842
|
-
EdgeLocation?: string;
|
|
1842
|
+
EdgeLocation?: string | undefined;
|
|
1843
1843
|
}
|
|
1844
1844
|
/**
|
|
1845
1845
|
* <p>Returns summary information about a core network.</p>
|
|
@@ -1850,37 +1850,37 @@ export interface CoreNetworkSummary {
|
|
|
1850
1850
|
* <p>The ID of a core network.</p>
|
|
1851
1851
|
* @public
|
|
1852
1852
|
*/
|
|
1853
|
-
CoreNetworkId?: string;
|
|
1853
|
+
CoreNetworkId?: string | undefined;
|
|
1854
1854
|
/**
|
|
1855
1855
|
* <p>a core network ARN.</p>
|
|
1856
1856
|
* @public
|
|
1857
1857
|
*/
|
|
1858
|
-
CoreNetworkArn?: string;
|
|
1858
|
+
CoreNetworkArn?: string | undefined;
|
|
1859
1859
|
/**
|
|
1860
1860
|
* <p>The global network ID.</p>
|
|
1861
1861
|
* @public
|
|
1862
1862
|
*/
|
|
1863
|
-
GlobalNetworkId?: string;
|
|
1863
|
+
GlobalNetworkId?: string | undefined;
|
|
1864
1864
|
/**
|
|
1865
1865
|
* <p>The ID of the account owner.</p>
|
|
1866
1866
|
* @public
|
|
1867
1867
|
*/
|
|
1868
|
-
OwnerAccountId?: string;
|
|
1868
|
+
OwnerAccountId?: string | undefined;
|
|
1869
1869
|
/**
|
|
1870
1870
|
* <p>The state of a core network.</p>
|
|
1871
1871
|
* @public
|
|
1872
1872
|
*/
|
|
1873
|
-
State?: CoreNetworkState;
|
|
1873
|
+
State?: CoreNetworkState | undefined;
|
|
1874
1874
|
/**
|
|
1875
1875
|
* <p>The description of a core network.</p>
|
|
1876
1876
|
* @public
|
|
1877
1877
|
*/
|
|
1878
|
-
Description?: string;
|
|
1878
|
+
Description?: string | undefined;
|
|
1879
1879
|
/**
|
|
1880
1880
|
* <p>The key-value tags associated with a core network summary.</p>
|
|
1881
1881
|
* @public
|
|
1882
1882
|
*/
|
|
1883
|
-
Tags?: Tag[];
|
|
1883
|
+
Tags?: Tag[] | undefined;
|
|
1884
1884
|
}
|
|
1885
1885
|
/**
|
|
1886
1886
|
* @public
|
|
@@ -1910,12 +1910,12 @@ export interface CreateConnectAttachmentRequest {
|
|
|
1910
1910
|
* <p>The list of key-value tags associated with the request.</p>
|
|
1911
1911
|
* @public
|
|
1912
1912
|
*/
|
|
1913
|
-
Tags?: Tag[];
|
|
1913
|
+
Tags?: Tag[] | undefined;
|
|
1914
1914
|
/**
|
|
1915
1915
|
* <p>The client token associated with the request.</p>
|
|
1916
1916
|
* @public
|
|
1917
1917
|
*/
|
|
1918
|
-
ClientToken?: string;
|
|
1918
|
+
ClientToken?: string | undefined;
|
|
1919
1919
|
}
|
|
1920
1920
|
/**
|
|
1921
1921
|
* @public
|
|
@@ -1925,7 +1925,7 @@ export interface CreateConnectAttachmentResponse {
|
|
|
1925
1925
|
* <p>The response to a Connect attachment request.</p>
|
|
1926
1926
|
* @public
|
|
1927
1927
|
*/
|
|
1928
|
-
ConnectAttachment?: ConnectAttachment;
|
|
1928
|
+
ConnectAttachment?: ConnectAttachment | undefined;
|
|
1929
1929
|
}
|
|
1930
1930
|
/**
|
|
1931
1931
|
* @public
|
|
@@ -1950,23 +1950,23 @@ export interface CreateConnectionRequest {
|
|
|
1950
1950
|
* <p>The ID of the link for the first device.</p>
|
|
1951
1951
|
* @public
|
|
1952
1952
|
*/
|
|
1953
|
-
LinkId?: string;
|
|
1953
|
+
LinkId?: string | undefined;
|
|
1954
1954
|
/**
|
|
1955
1955
|
* <p>The ID of the link for the second device.</p>
|
|
1956
1956
|
* @public
|
|
1957
1957
|
*/
|
|
1958
|
-
ConnectedLinkId?: string;
|
|
1958
|
+
ConnectedLinkId?: string | undefined;
|
|
1959
1959
|
/**
|
|
1960
1960
|
* <p>A description of the connection.</p>
|
|
1961
1961
|
* <p>Length Constraints: Maximum length of 256 characters.</p>
|
|
1962
1962
|
* @public
|
|
1963
1963
|
*/
|
|
1964
|
-
Description?: string;
|
|
1964
|
+
Description?: string | undefined;
|
|
1965
1965
|
/**
|
|
1966
1966
|
* <p>The tags to apply to the resource during creation.</p>
|
|
1967
1967
|
* @public
|
|
1968
1968
|
*/
|
|
1969
|
-
Tags?: Tag[];
|
|
1969
|
+
Tags?: Tag[] | undefined;
|
|
1970
1970
|
}
|
|
1971
1971
|
/**
|
|
1972
1972
|
* @public
|
|
@@ -1976,7 +1976,7 @@ export interface CreateConnectionResponse {
|
|
|
1976
1976
|
* <p>Information about the connection.</p>
|
|
1977
1977
|
* @public
|
|
1978
1978
|
*/
|
|
1979
|
-
Connection?: Connection;
|
|
1979
|
+
Connection?: Connection | undefined;
|
|
1980
1980
|
}
|
|
1981
1981
|
/**
|
|
1982
1982
|
* @public
|
|
@@ -1991,7 +1991,7 @@ export interface CreateConnectPeerRequest {
|
|
|
1991
1991
|
* <p>A Connect peer core network address. This only applies only when the protocol is <code>GRE</code>.</p>
|
|
1992
1992
|
* @public
|
|
1993
1993
|
*/
|
|
1994
|
-
CoreNetworkAddress?: string;
|
|
1994
|
+
CoreNetworkAddress?: string | undefined;
|
|
1995
1995
|
/**
|
|
1996
1996
|
* <p>The Connect peer address.</p>
|
|
1997
1997
|
* @public
|
|
@@ -2001,27 +2001,27 @@ export interface CreateConnectPeerRequest {
|
|
|
2001
2001
|
* <p>The Connect peer BGP options. This only applies only when the protocol is <code>GRE</code>.</p>
|
|
2002
2002
|
* @public
|
|
2003
2003
|
*/
|
|
2004
|
-
BgpOptions?: BgpOptions;
|
|
2004
|
+
BgpOptions?: BgpOptions | undefined;
|
|
2005
2005
|
/**
|
|
2006
2006
|
* <p>The inside IP addresses used for BGP peering.</p>
|
|
2007
2007
|
* @public
|
|
2008
2008
|
*/
|
|
2009
|
-
InsideCidrBlocks?: string[];
|
|
2009
|
+
InsideCidrBlocks?: string[] | undefined;
|
|
2010
2010
|
/**
|
|
2011
2011
|
* <p>The tags associated with the peer request.</p>
|
|
2012
2012
|
* @public
|
|
2013
2013
|
*/
|
|
2014
|
-
Tags?: Tag[];
|
|
2014
|
+
Tags?: Tag[] | undefined;
|
|
2015
2015
|
/**
|
|
2016
2016
|
* <p>The client token associated with the request.</p>
|
|
2017
2017
|
* @public
|
|
2018
2018
|
*/
|
|
2019
|
-
ClientToken?: string;
|
|
2019
|
+
ClientToken?: string | undefined;
|
|
2020
2020
|
/**
|
|
2021
2021
|
* <p>The subnet ARN for the Connect peer. This only applies only when the protocol is NO_ENCAP.</p>
|
|
2022
2022
|
* @public
|
|
2023
2023
|
*/
|
|
2024
|
-
SubnetArn?: string;
|
|
2024
|
+
SubnetArn?: string | undefined;
|
|
2025
2025
|
}
|
|
2026
2026
|
/**
|
|
2027
2027
|
* @public
|
|
@@ -2031,7 +2031,7 @@ export interface CreateConnectPeerResponse {
|
|
|
2031
2031
|
* <p>The response to the request.</p>
|
|
2032
2032
|
* @public
|
|
2033
2033
|
*/
|
|
2034
|
-
ConnectPeer?: ConnectPeer;
|
|
2034
|
+
ConnectPeer?: ConnectPeer | undefined;
|
|
2035
2035
|
}
|
|
2036
2036
|
/**
|
|
2037
2037
|
* @public
|
|
@@ -2046,22 +2046,22 @@ export interface CreateCoreNetworkRequest {
|
|
|
2046
2046
|
* <p>The description of a core network.</p>
|
|
2047
2047
|
* @public
|
|
2048
2048
|
*/
|
|
2049
|
-
Description?: string;
|
|
2049
|
+
Description?: string | undefined;
|
|
2050
2050
|
/**
|
|
2051
2051
|
* <p>Key-value tags associated with a core network request.</p>
|
|
2052
2052
|
* @public
|
|
2053
2053
|
*/
|
|
2054
|
-
Tags?: Tag[];
|
|
2054
|
+
Tags?: Tag[] | undefined;
|
|
2055
2055
|
/**
|
|
2056
2056
|
* <p>The policy document for creating a core network.</p>
|
|
2057
2057
|
* @public
|
|
2058
2058
|
*/
|
|
2059
|
-
PolicyDocument?: string;
|
|
2059
|
+
PolicyDocument?: string | undefined;
|
|
2060
2060
|
/**
|
|
2061
2061
|
* <p>The client token associated with a core network request.</p>
|
|
2062
2062
|
* @public
|
|
2063
2063
|
*/
|
|
2064
|
-
ClientToken?: string;
|
|
2064
|
+
ClientToken?: string | undefined;
|
|
2065
2065
|
}
|
|
2066
2066
|
/**
|
|
2067
2067
|
* @public
|
|
@@ -2071,7 +2071,7 @@ export interface CreateCoreNetworkResponse {
|
|
|
2071
2071
|
* <p>Returns details about a core network.</p>
|
|
2072
2072
|
* @public
|
|
2073
2073
|
*/
|
|
2074
|
-
CoreNetwork?: CoreNetwork;
|
|
2074
|
+
CoreNetwork?: CoreNetwork | undefined;
|
|
2075
2075
|
}
|
|
2076
2076
|
/**
|
|
2077
2077
|
* <p>Describes a location.</p>
|
|
@@ -2082,17 +2082,17 @@ export interface Location {
|
|
|
2082
2082
|
* <p>The physical address.</p>
|
|
2083
2083
|
* @public
|
|
2084
2084
|
*/
|
|
2085
|
-
Address?: string;
|
|
2085
|
+
Address?: string | undefined;
|
|
2086
2086
|
/**
|
|
2087
2087
|
* <p>The latitude.</p>
|
|
2088
2088
|
* @public
|
|
2089
2089
|
*/
|
|
2090
|
-
Latitude?: string;
|
|
2090
|
+
Latitude?: string | undefined;
|
|
2091
2091
|
/**
|
|
2092
2092
|
* <p>The longitude.</p>
|
|
2093
2093
|
* @public
|
|
2094
2094
|
*/
|
|
2095
|
-
Longitude?: string;
|
|
2095
|
+
Longitude?: string | undefined;
|
|
2096
2096
|
}
|
|
2097
2097
|
/**
|
|
2098
2098
|
* @public
|
|
@@ -2107,51 +2107,51 @@ export interface CreateDeviceRequest {
|
|
|
2107
2107
|
* <p>The Amazon Web Services location of the device, if applicable. For an on-premises device, you can omit this parameter.</p>
|
|
2108
2108
|
* @public
|
|
2109
2109
|
*/
|
|
2110
|
-
AWSLocation?: AWSLocation;
|
|
2110
|
+
AWSLocation?: AWSLocation | undefined;
|
|
2111
2111
|
/**
|
|
2112
2112
|
* <p>A description of the device.</p>
|
|
2113
2113
|
* <p>Constraints: Maximum length of 256 characters.</p>
|
|
2114
2114
|
* @public
|
|
2115
2115
|
*/
|
|
2116
|
-
Description?: string;
|
|
2116
|
+
Description?: string | undefined;
|
|
2117
2117
|
/**
|
|
2118
2118
|
* <p>The type of the device.</p>
|
|
2119
2119
|
* @public
|
|
2120
2120
|
*/
|
|
2121
|
-
Type?: string;
|
|
2121
|
+
Type?: string | undefined;
|
|
2122
2122
|
/**
|
|
2123
2123
|
* <p>The vendor of the device.</p>
|
|
2124
2124
|
* <p>Constraints: Maximum length of 128 characters.</p>
|
|
2125
2125
|
* @public
|
|
2126
2126
|
*/
|
|
2127
|
-
Vendor?: string;
|
|
2127
|
+
Vendor?: string | undefined;
|
|
2128
2128
|
/**
|
|
2129
2129
|
* <p>The model of the device.</p>
|
|
2130
2130
|
* <p>Constraints: Maximum length of 128 characters.</p>
|
|
2131
2131
|
* @public
|
|
2132
2132
|
*/
|
|
2133
|
-
Model?: string;
|
|
2133
|
+
Model?: string | undefined;
|
|
2134
2134
|
/**
|
|
2135
2135
|
* <p>The serial number of the device.</p>
|
|
2136
2136
|
* <p>Constraints: Maximum length of 128 characters.</p>
|
|
2137
2137
|
* @public
|
|
2138
2138
|
*/
|
|
2139
|
-
SerialNumber?: string;
|
|
2139
|
+
SerialNumber?: string | undefined;
|
|
2140
2140
|
/**
|
|
2141
2141
|
* <p>The location of the device.</p>
|
|
2142
2142
|
* @public
|
|
2143
2143
|
*/
|
|
2144
|
-
Location?: Location;
|
|
2144
|
+
Location?: Location | undefined;
|
|
2145
2145
|
/**
|
|
2146
2146
|
* <p>The ID of the site.</p>
|
|
2147
2147
|
* @public
|
|
2148
2148
|
*/
|
|
2149
|
-
SiteId?: string;
|
|
2149
|
+
SiteId?: string | undefined;
|
|
2150
2150
|
/**
|
|
2151
2151
|
* <p>The tags to apply to the resource during creation.</p>
|
|
2152
2152
|
* @public
|
|
2153
2153
|
*/
|
|
2154
|
-
Tags?: Tag[];
|
|
2154
|
+
Tags?: Tag[] | undefined;
|
|
2155
2155
|
}
|
|
2156
2156
|
/**
|
|
2157
2157
|
* @public
|
|
@@ -2176,72 +2176,72 @@ export interface Device {
|
|
|
2176
2176
|
* <p>The ID of the device.</p>
|
|
2177
2177
|
* @public
|
|
2178
2178
|
*/
|
|
2179
|
-
DeviceId?: string;
|
|
2179
|
+
DeviceId?: string | undefined;
|
|
2180
2180
|
/**
|
|
2181
2181
|
* <p>The Amazon Resource Name (ARN) of the device.</p>
|
|
2182
2182
|
* @public
|
|
2183
2183
|
*/
|
|
2184
|
-
DeviceArn?: string;
|
|
2184
|
+
DeviceArn?: string | undefined;
|
|
2185
2185
|
/**
|
|
2186
2186
|
* <p>The ID of the global network.</p>
|
|
2187
2187
|
* @public
|
|
2188
2188
|
*/
|
|
2189
|
-
GlobalNetworkId?: string;
|
|
2189
|
+
GlobalNetworkId?: string | undefined;
|
|
2190
2190
|
/**
|
|
2191
2191
|
* <p>The Amazon Web Services location of the device.</p>
|
|
2192
2192
|
* @public
|
|
2193
2193
|
*/
|
|
2194
|
-
AWSLocation?: AWSLocation;
|
|
2194
|
+
AWSLocation?: AWSLocation | undefined;
|
|
2195
2195
|
/**
|
|
2196
2196
|
* <p>The description of the device.</p>
|
|
2197
2197
|
* @public
|
|
2198
2198
|
*/
|
|
2199
|
-
Description?: string;
|
|
2199
|
+
Description?: string | undefined;
|
|
2200
2200
|
/**
|
|
2201
2201
|
* <p>The device type.</p>
|
|
2202
2202
|
* @public
|
|
2203
2203
|
*/
|
|
2204
|
-
Type?: string;
|
|
2204
|
+
Type?: string | undefined;
|
|
2205
2205
|
/**
|
|
2206
2206
|
* <p>The device vendor.</p>
|
|
2207
2207
|
* @public
|
|
2208
2208
|
*/
|
|
2209
|
-
Vendor?: string;
|
|
2209
|
+
Vendor?: string | undefined;
|
|
2210
2210
|
/**
|
|
2211
2211
|
* <p>The device model.</p>
|
|
2212
2212
|
* @public
|
|
2213
2213
|
*/
|
|
2214
|
-
Model?: string;
|
|
2214
|
+
Model?: string | undefined;
|
|
2215
2215
|
/**
|
|
2216
2216
|
* <p>The device serial number.</p>
|
|
2217
2217
|
* @public
|
|
2218
2218
|
*/
|
|
2219
|
-
SerialNumber?: string;
|
|
2219
|
+
SerialNumber?: string | undefined;
|
|
2220
2220
|
/**
|
|
2221
2221
|
* <p>The site location.</p>
|
|
2222
2222
|
* @public
|
|
2223
2223
|
*/
|
|
2224
|
-
Location?: Location;
|
|
2224
|
+
Location?: Location | undefined;
|
|
2225
2225
|
/**
|
|
2226
2226
|
* <p>The site ID.</p>
|
|
2227
2227
|
* @public
|
|
2228
2228
|
*/
|
|
2229
|
-
SiteId?: string;
|
|
2229
|
+
SiteId?: string | undefined;
|
|
2230
2230
|
/**
|
|
2231
2231
|
* <p>The date and time that the site was created.</p>
|
|
2232
2232
|
* @public
|
|
2233
2233
|
*/
|
|
2234
|
-
CreatedAt?: Date;
|
|
2234
|
+
CreatedAt?: Date | undefined;
|
|
2235
2235
|
/**
|
|
2236
2236
|
* <p>The device state.</p>
|
|
2237
2237
|
* @public
|
|
2238
2238
|
*/
|
|
2239
|
-
State?: DeviceState;
|
|
2239
|
+
State?: DeviceState | undefined;
|
|
2240
2240
|
/**
|
|
2241
2241
|
* <p>The tags for the device.</p>
|
|
2242
2242
|
* @public
|
|
2243
2243
|
*/
|
|
2244
|
-
Tags?: Tag[];
|
|
2244
|
+
Tags?: Tag[] | undefined;
|
|
2245
2245
|
}
|
|
2246
2246
|
/**
|
|
2247
2247
|
* @public
|
|
@@ -2251,7 +2251,7 @@ export interface CreateDeviceResponse {
|
|
|
2251
2251
|
* <p>Information about the device.</p>
|
|
2252
2252
|
* @public
|
|
2253
2253
|
*/
|
|
2254
|
-
Device?: Device;
|
|
2254
|
+
Device?: Device | undefined;
|
|
2255
2255
|
}
|
|
2256
2256
|
/**
|
|
2257
2257
|
* @public
|
|
@@ -2262,12 +2262,12 @@ export interface CreateGlobalNetworkRequest {
|
|
|
2262
2262
|
* <p>Constraints: Maximum length of 256 characters.</p>
|
|
2263
2263
|
* @public
|
|
2264
2264
|
*/
|
|
2265
|
-
Description?: string;
|
|
2265
|
+
Description?: string | undefined;
|
|
2266
2266
|
/**
|
|
2267
2267
|
* <p>The tags to apply to the resource during creation.</p>
|
|
2268
2268
|
* @public
|
|
2269
2269
|
*/
|
|
2270
|
-
Tags?: Tag[];
|
|
2270
|
+
Tags?: Tag[] | undefined;
|
|
2271
2271
|
}
|
|
2272
2272
|
/**
|
|
2273
2273
|
* @public
|
|
@@ -2292,32 +2292,32 @@ export interface GlobalNetwork {
|
|
|
2292
2292
|
* <p>The ID of the global network.</p>
|
|
2293
2293
|
* @public
|
|
2294
2294
|
*/
|
|
2295
|
-
GlobalNetworkId?: string;
|
|
2295
|
+
GlobalNetworkId?: string | undefined;
|
|
2296
2296
|
/**
|
|
2297
2297
|
* <p>The Amazon Resource Name (ARN) of the global network.</p>
|
|
2298
2298
|
* @public
|
|
2299
2299
|
*/
|
|
2300
|
-
GlobalNetworkArn?: string;
|
|
2300
|
+
GlobalNetworkArn?: string | undefined;
|
|
2301
2301
|
/**
|
|
2302
2302
|
* <p>The description of the global network.</p>
|
|
2303
2303
|
* @public
|
|
2304
2304
|
*/
|
|
2305
|
-
Description?: string;
|
|
2305
|
+
Description?: string | undefined;
|
|
2306
2306
|
/**
|
|
2307
2307
|
* <p>The date and time that the global network was created.</p>
|
|
2308
2308
|
* @public
|
|
2309
2309
|
*/
|
|
2310
|
-
CreatedAt?: Date;
|
|
2310
|
+
CreatedAt?: Date | undefined;
|
|
2311
2311
|
/**
|
|
2312
2312
|
* <p>The state of the global network.</p>
|
|
2313
2313
|
* @public
|
|
2314
2314
|
*/
|
|
2315
|
-
State?: GlobalNetworkState;
|
|
2315
|
+
State?: GlobalNetworkState | undefined;
|
|
2316
2316
|
/**
|
|
2317
2317
|
* <p>The tags for the global network.</p>
|
|
2318
2318
|
* @public
|
|
2319
2319
|
*/
|
|
2320
|
-
Tags?: Tag[];
|
|
2320
|
+
Tags?: Tag[] | undefined;
|
|
2321
2321
|
}
|
|
2322
2322
|
/**
|
|
2323
2323
|
* @public
|
|
@@ -2327,7 +2327,7 @@ export interface CreateGlobalNetworkResponse {
|
|
|
2327
2327
|
* <p>Information about the global network object.</p>
|
|
2328
2328
|
* @public
|
|
2329
2329
|
*/
|
|
2330
|
-
GlobalNetwork?: GlobalNetwork;
|
|
2330
|
+
GlobalNetwork?: GlobalNetwork | undefined;
|
|
2331
2331
|
}
|
|
2332
2332
|
/**
|
|
2333
2333
|
* @public
|
|
@@ -2343,13 +2343,13 @@ export interface CreateLinkRequest {
|
|
|
2343
2343
|
* <p>Constraints: Maximum length of 256 characters.</p>
|
|
2344
2344
|
* @public
|
|
2345
2345
|
*/
|
|
2346
|
-
Description?: string;
|
|
2346
|
+
Description?: string | undefined;
|
|
2347
2347
|
/**
|
|
2348
2348
|
* <p>The type of the link.</p>
|
|
2349
2349
|
* <p>Constraints: Maximum length of 128 characters. Cannot include the following characters: | \ ^</p>
|
|
2350
2350
|
* @public
|
|
2351
2351
|
*/
|
|
2352
|
-
Type?: string;
|
|
2352
|
+
Type?: string | undefined;
|
|
2353
2353
|
/**
|
|
2354
2354
|
* <p> The upload speed and download speed in Mbps. </p>
|
|
2355
2355
|
* @public
|
|
@@ -2360,7 +2360,7 @@ export interface CreateLinkRequest {
|
|
|
2360
2360
|
* <p>Constraints: Maximum length of 128 characters. Cannot include the following characters: | \ ^</p>
|
|
2361
2361
|
* @public
|
|
2362
2362
|
*/
|
|
2363
|
-
Provider?: string;
|
|
2363
|
+
Provider?: string | undefined;
|
|
2364
2364
|
/**
|
|
2365
2365
|
* <p>The ID of the site.</p>
|
|
2366
2366
|
* @public
|
|
@@ -2370,7 +2370,7 @@ export interface CreateLinkRequest {
|
|
|
2370
2370
|
* <p>The tags to apply to the resource during creation.</p>
|
|
2371
2371
|
* @public
|
|
2372
2372
|
*/
|
|
2373
|
-
Tags?: Tag[];
|
|
2373
|
+
Tags?: Tag[] | undefined;
|
|
2374
2374
|
}
|
|
2375
2375
|
/**
|
|
2376
2376
|
* @public
|
|
@@ -2395,57 +2395,57 @@ export interface Link {
|
|
|
2395
2395
|
* <p>The ID of the link.</p>
|
|
2396
2396
|
* @public
|
|
2397
2397
|
*/
|
|
2398
|
-
LinkId?: string;
|
|
2398
|
+
LinkId?: string | undefined;
|
|
2399
2399
|
/**
|
|
2400
2400
|
* <p>The Amazon Resource Name (ARN) of the link.</p>
|
|
2401
2401
|
* @public
|
|
2402
2402
|
*/
|
|
2403
|
-
LinkArn?: string;
|
|
2403
|
+
LinkArn?: string | undefined;
|
|
2404
2404
|
/**
|
|
2405
2405
|
* <p>The ID of the global network.</p>
|
|
2406
2406
|
* @public
|
|
2407
2407
|
*/
|
|
2408
|
-
GlobalNetworkId?: string;
|
|
2408
|
+
GlobalNetworkId?: string | undefined;
|
|
2409
2409
|
/**
|
|
2410
2410
|
* <p>The ID of the site.</p>
|
|
2411
2411
|
* @public
|
|
2412
2412
|
*/
|
|
2413
|
-
SiteId?: string;
|
|
2413
|
+
SiteId?: string | undefined;
|
|
2414
2414
|
/**
|
|
2415
2415
|
* <p>The description of the link.</p>
|
|
2416
2416
|
* @public
|
|
2417
2417
|
*/
|
|
2418
|
-
Description?: string;
|
|
2418
|
+
Description?: string | undefined;
|
|
2419
2419
|
/**
|
|
2420
2420
|
* <p>The type of the link.</p>
|
|
2421
2421
|
* @public
|
|
2422
2422
|
*/
|
|
2423
|
-
Type?: string;
|
|
2423
|
+
Type?: string | undefined;
|
|
2424
2424
|
/**
|
|
2425
2425
|
* <p>The bandwidth for the link.</p>
|
|
2426
2426
|
* @public
|
|
2427
2427
|
*/
|
|
2428
|
-
Bandwidth?: Bandwidth;
|
|
2428
|
+
Bandwidth?: Bandwidth | undefined;
|
|
2429
2429
|
/**
|
|
2430
2430
|
* <p>The provider of the link.</p>
|
|
2431
2431
|
* @public
|
|
2432
2432
|
*/
|
|
2433
|
-
Provider?: string;
|
|
2433
|
+
Provider?: string | undefined;
|
|
2434
2434
|
/**
|
|
2435
2435
|
* <p>The date and time that the link was created.</p>
|
|
2436
2436
|
* @public
|
|
2437
2437
|
*/
|
|
2438
|
-
CreatedAt?: Date;
|
|
2438
|
+
CreatedAt?: Date | undefined;
|
|
2439
2439
|
/**
|
|
2440
2440
|
* <p>The state of the link.</p>
|
|
2441
2441
|
* @public
|
|
2442
2442
|
*/
|
|
2443
|
-
State?: LinkState;
|
|
2443
|
+
State?: LinkState | undefined;
|
|
2444
2444
|
/**
|
|
2445
2445
|
* <p>The tags for the link.</p>
|
|
2446
2446
|
* @public
|
|
2447
2447
|
*/
|
|
2448
|
-
Tags?: Tag[];
|
|
2448
|
+
Tags?: Tag[] | undefined;
|
|
2449
2449
|
}
|
|
2450
2450
|
/**
|
|
2451
2451
|
* @public
|
|
@@ -2455,7 +2455,7 @@ export interface CreateLinkResponse {
|
|
|
2455
2455
|
* <p>Information about the link.</p>
|
|
2456
2456
|
* @public
|
|
2457
2457
|
*/
|
|
2458
|
-
Link?: Link;
|
|
2458
|
+
Link?: Link | undefined;
|
|
2459
2459
|
}
|
|
2460
2460
|
/**
|
|
2461
2461
|
* @public
|
|
@@ -2471,7 +2471,7 @@ export interface CreateSiteRequest {
|
|
|
2471
2471
|
* <p>Constraints: Maximum length of 256 characters.</p>
|
|
2472
2472
|
* @public
|
|
2473
2473
|
*/
|
|
2474
|
-
Description?: string;
|
|
2474
|
+
Description?: string | undefined;
|
|
2475
2475
|
/**
|
|
2476
2476
|
* <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>
|
|
2477
2477
|
* <ul>
|
|
@@ -2490,12 +2490,12 @@ export interface CreateSiteRequest {
|
|
|
2490
2490
|
* </ul>
|
|
2491
2491
|
* @public
|
|
2492
2492
|
*/
|
|
2493
|
-
Location?: Location;
|
|
2493
|
+
Location?: Location | undefined;
|
|
2494
2494
|
/**
|
|
2495
2495
|
* <p>The tags to apply to the resource during creation.</p>
|
|
2496
2496
|
* @public
|
|
2497
2497
|
*/
|
|
2498
|
-
Tags?: Tag[];
|
|
2498
|
+
Tags?: Tag[] | undefined;
|
|
2499
2499
|
}
|
|
2500
2500
|
/**
|
|
2501
2501
|
* @public
|
|
@@ -2520,42 +2520,42 @@ export interface Site {
|
|
|
2520
2520
|
* <p>The ID of the site.</p>
|
|
2521
2521
|
* @public
|
|
2522
2522
|
*/
|
|
2523
|
-
SiteId?: string;
|
|
2523
|
+
SiteId?: string | undefined;
|
|
2524
2524
|
/**
|
|
2525
2525
|
* <p>The Amazon Resource Name (ARN) of the site.</p>
|
|
2526
2526
|
* @public
|
|
2527
2527
|
*/
|
|
2528
|
-
SiteArn?: string;
|
|
2528
|
+
SiteArn?: string | undefined;
|
|
2529
2529
|
/**
|
|
2530
2530
|
* <p>The ID of the global network.</p>
|
|
2531
2531
|
* @public
|
|
2532
2532
|
*/
|
|
2533
|
-
GlobalNetworkId?: string;
|
|
2533
|
+
GlobalNetworkId?: string | undefined;
|
|
2534
2534
|
/**
|
|
2535
2535
|
* <p>The description of the site.</p>
|
|
2536
2536
|
* @public
|
|
2537
2537
|
*/
|
|
2538
|
-
Description?: string;
|
|
2538
|
+
Description?: string | undefined;
|
|
2539
2539
|
/**
|
|
2540
2540
|
* <p>The location of the site.</p>
|
|
2541
2541
|
* @public
|
|
2542
2542
|
*/
|
|
2543
|
-
Location?: Location;
|
|
2543
|
+
Location?: Location | undefined;
|
|
2544
2544
|
/**
|
|
2545
2545
|
* <p>The date and time that the site was created.</p>
|
|
2546
2546
|
* @public
|
|
2547
2547
|
*/
|
|
2548
|
-
CreatedAt?: Date;
|
|
2548
|
+
CreatedAt?: Date | undefined;
|
|
2549
2549
|
/**
|
|
2550
2550
|
* <p>The state of the site.</p>
|
|
2551
2551
|
* @public
|
|
2552
2552
|
*/
|
|
2553
|
-
State?: SiteState;
|
|
2553
|
+
State?: SiteState | undefined;
|
|
2554
2554
|
/**
|
|
2555
2555
|
* <p>The tags for the site.</p>
|
|
2556
2556
|
* @public
|
|
2557
2557
|
*/
|
|
2558
|
-
Tags?: Tag[];
|
|
2558
|
+
Tags?: Tag[] | undefined;
|
|
2559
2559
|
}
|
|
2560
2560
|
/**
|
|
2561
2561
|
* @public
|
|
@@ -2565,7 +2565,7 @@ export interface CreateSiteResponse {
|
|
|
2565
2565
|
* <p>Information about the site.</p>
|
|
2566
2566
|
* @public
|
|
2567
2567
|
*/
|
|
2568
|
-
Site?: Site;
|
|
2568
|
+
Site?: Site | undefined;
|
|
2569
2569
|
}
|
|
2570
2570
|
/**
|
|
2571
2571
|
* @public
|
|
@@ -2585,12 +2585,12 @@ export interface CreateSiteToSiteVpnAttachmentRequest {
|
|
|
2585
2585
|
* <p>The tags associated with the request.</p>
|
|
2586
2586
|
* @public
|
|
2587
2587
|
*/
|
|
2588
|
-
Tags?: Tag[];
|
|
2588
|
+
Tags?: Tag[] | undefined;
|
|
2589
2589
|
/**
|
|
2590
2590
|
* <p>The client token associated with the request.</p>
|
|
2591
2591
|
* @public
|
|
2592
2592
|
*/
|
|
2593
|
-
ClientToken?: string;
|
|
2593
|
+
ClientToken?: string | undefined;
|
|
2594
2594
|
}
|
|
2595
2595
|
/**
|
|
2596
2596
|
* <p>Creates a site-to-site VPN attachment.</p>
|
|
@@ -2601,12 +2601,12 @@ export interface SiteToSiteVpnAttachment {
|
|
|
2601
2601
|
* <p>Provides details about a site-to-site VPN attachment.</p>
|
|
2602
2602
|
* @public
|
|
2603
2603
|
*/
|
|
2604
|
-
Attachment?: Attachment;
|
|
2604
|
+
Attachment?: Attachment | undefined;
|
|
2605
2605
|
/**
|
|
2606
2606
|
* <p>The ARN of the site-to-site VPN attachment. </p>
|
|
2607
2607
|
* @public
|
|
2608
2608
|
*/
|
|
2609
|
-
VpnConnectionArn?: string;
|
|
2609
|
+
VpnConnectionArn?: string | undefined;
|
|
2610
2610
|
}
|
|
2611
2611
|
/**
|
|
2612
2612
|
* @public
|
|
@@ -2616,7 +2616,7 @@ export interface CreateSiteToSiteVpnAttachmentResponse {
|
|
|
2616
2616
|
* <p>Details about a site-to-site VPN attachment.</p>
|
|
2617
2617
|
* @public
|
|
2618
2618
|
*/
|
|
2619
|
-
SiteToSiteVpnAttachment?: SiteToSiteVpnAttachment;
|
|
2619
|
+
SiteToSiteVpnAttachment?: SiteToSiteVpnAttachment | undefined;
|
|
2620
2620
|
}
|
|
2621
2621
|
/**
|
|
2622
2622
|
* @public
|
|
@@ -2636,12 +2636,12 @@ export interface CreateTransitGatewayPeeringRequest {
|
|
|
2636
2636
|
* <p>The list of key-value tags associated with the request.</p>
|
|
2637
2637
|
* @public
|
|
2638
2638
|
*/
|
|
2639
|
-
Tags?: Tag[];
|
|
2639
|
+
Tags?: Tag[] | undefined;
|
|
2640
2640
|
/**
|
|
2641
2641
|
* <p>The client token associated with the request.</p>
|
|
2642
2642
|
* @public
|
|
2643
2643
|
*/
|
|
2644
|
-
ClientToken?: string;
|
|
2644
|
+
ClientToken?: string | undefined;
|
|
2645
2645
|
}
|
|
2646
2646
|
/**
|
|
2647
2647
|
* @public
|
|
@@ -2668,7 +2668,7 @@ export interface PermissionsErrorContext {
|
|
|
2668
2668
|
* <p>The missing permissions.</p>
|
|
2669
2669
|
* @public
|
|
2670
2670
|
*/
|
|
2671
|
-
MissingPermission?: string;
|
|
2671
|
+
MissingPermission?: string | undefined;
|
|
2672
2672
|
}
|
|
2673
2673
|
/**
|
|
2674
2674
|
* <p>Describes an error associated with a peering request.</p>
|
|
@@ -2679,28 +2679,28 @@ export interface PeeringError {
|
|
|
2679
2679
|
* <p>The error code for the peering request.</p>
|
|
2680
2680
|
* @public
|
|
2681
2681
|
*/
|
|
2682
|
-
Code?: PeeringErrorCode;
|
|
2682
|
+
Code?: PeeringErrorCode | undefined;
|
|
2683
2683
|
/**
|
|
2684
2684
|
* <p>The message associated with the error <code>code</code>.</p>
|
|
2685
2685
|
* @public
|
|
2686
2686
|
*/
|
|
2687
|
-
Message?: string;
|
|
2687
|
+
Message?: string | undefined;
|
|
2688
2688
|
/**
|
|
2689
2689
|
* <p>The ARN of the requested peering resource.</p>
|
|
2690
2690
|
* @public
|
|
2691
2691
|
*/
|
|
2692
|
-
ResourceArn?: string;
|
|
2692
|
+
ResourceArn?: string | undefined;
|
|
2693
2693
|
/**
|
|
2694
2694
|
* <p>The ID of the Peering request.</p>
|
|
2695
2695
|
* @public
|
|
2696
2696
|
*/
|
|
2697
|
-
RequestId?: string;
|
|
2697
|
+
RequestId?: string | undefined;
|
|
2698
2698
|
/**
|
|
2699
2699
|
* <p>Provides additional information about missing permissions for the peering
|
|
2700
2700
|
* error.</p>
|
|
2701
2701
|
* @public
|
|
2702
2702
|
*/
|
|
2703
|
-
MissingPermissionsContext?: PermissionsErrorContext;
|
|
2703
|
+
MissingPermissionsContext?: PermissionsErrorContext | undefined;
|
|
2704
2704
|
}
|
|
2705
2705
|
/**
|
|
2706
2706
|
* @public
|
|
@@ -2736,57 +2736,57 @@ export interface Peering {
|
|
|
2736
2736
|
* <p>The ID of the core network for the peering request.</p>
|
|
2737
2737
|
* @public
|
|
2738
2738
|
*/
|
|
2739
|
-
CoreNetworkId?: string;
|
|
2739
|
+
CoreNetworkId?: string | undefined;
|
|
2740
2740
|
/**
|
|
2741
2741
|
* <p>The ARN of a core network.</p>
|
|
2742
2742
|
* @public
|
|
2743
2743
|
*/
|
|
2744
|
-
CoreNetworkArn?: string;
|
|
2744
|
+
CoreNetworkArn?: string | undefined;
|
|
2745
2745
|
/**
|
|
2746
2746
|
* <p>The ID of the peering attachment. </p>
|
|
2747
2747
|
* @public
|
|
2748
2748
|
*/
|
|
2749
|
-
PeeringId?: string;
|
|
2749
|
+
PeeringId?: string | undefined;
|
|
2750
2750
|
/**
|
|
2751
2751
|
* <p>The ID of the account owner.</p>
|
|
2752
2752
|
* @public
|
|
2753
2753
|
*/
|
|
2754
|
-
OwnerAccountId?: string;
|
|
2754
|
+
OwnerAccountId?: string | undefined;
|
|
2755
2755
|
/**
|
|
2756
2756
|
* <p>The type of peering. This will be <code>TRANSIT_GATEWAY</code>.</p>
|
|
2757
2757
|
* @public
|
|
2758
2758
|
*/
|
|
2759
|
-
PeeringType?: PeeringType;
|
|
2759
|
+
PeeringType?: PeeringType | undefined;
|
|
2760
2760
|
/**
|
|
2761
2761
|
* <p>The current state of the peering connection. </p>
|
|
2762
2762
|
* @public
|
|
2763
2763
|
*/
|
|
2764
|
-
State?: PeeringState;
|
|
2764
|
+
State?: PeeringState | undefined;
|
|
2765
2765
|
/**
|
|
2766
2766
|
* <p>The edge location for the peer.</p>
|
|
2767
2767
|
* @public
|
|
2768
2768
|
*/
|
|
2769
|
-
EdgeLocation?: string;
|
|
2769
|
+
EdgeLocation?: string | undefined;
|
|
2770
2770
|
/**
|
|
2771
2771
|
* <p>The resource ARN of the peer.</p>
|
|
2772
2772
|
* @public
|
|
2773
2773
|
*/
|
|
2774
|
-
ResourceArn?: string;
|
|
2774
|
+
ResourceArn?: string | undefined;
|
|
2775
2775
|
/**
|
|
2776
2776
|
* <p>The list of key-value tags associated with the peering.</p>
|
|
2777
2777
|
* @public
|
|
2778
2778
|
*/
|
|
2779
|
-
Tags?: Tag[];
|
|
2779
|
+
Tags?: Tag[] | undefined;
|
|
2780
2780
|
/**
|
|
2781
2781
|
* <p>The timestamp when the attachment peer was created.</p>
|
|
2782
2782
|
* @public
|
|
2783
2783
|
*/
|
|
2784
|
-
CreatedAt?: Date;
|
|
2784
|
+
CreatedAt?: Date | undefined;
|
|
2785
2785
|
/**
|
|
2786
2786
|
* <p>Describes the error associated with the Connect peer request.</p>
|
|
2787
2787
|
* @public
|
|
2788
2788
|
*/
|
|
2789
|
-
LastModificationErrors?: PeeringError[];
|
|
2789
|
+
LastModificationErrors?: PeeringError[] | undefined;
|
|
2790
2790
|
}
|
|
2791
2791
|
/**
|
|
2792
2792
|
* <p>Describes a transit gateway peering attachment.</p>
|
|
@@ -2797,17 +2797,17 @@ export interface TransitGatewayPeering {
|
|
|
2797
2797
|
* <p>Describes a transit gateway peer connection.</p>
|
|
2798
2798
|
* @public
|
|
2799
2799
|
*/
|
|
2800
|
-
Peering?: Peering;
|
|
2800
|
+
Peering?: Peering | undefined;
|
|
2801
2801
|
/**
|
|
2802
2802
|
* <p>The ARN of the transit gateway.</p>
|
|
2803
2803
|
* @public
|
|
2804
2804
|
*/
|
|
2805
|
-
TransitGatewayArn?: string;
|
|
2805
|
+
TransitGatewayArn?: string | undefined;
|
|
2806
2806
|
/**
|
|
2807
2807
|
* <p>The ID of the transit gateway peering attachment.</p>
|
|
2808
2808
|
* @public
|
|
2809
2809
|
*/
|
|
2810
|
-
TransitGatewayPeeringAttachmentId?: string;
|
|
2810
|
+
TransitGatewayPeeringAttachmentId?: string | undefined;
|
|
2811
2811
|
}
|
|
2812
2812
|
/**
|
|
2813
2813
|
* @public
|
|
@@ -2817,7 +2817,7 @@ export interface CreateTransitGatewayPeeringResponse {
|
|
|
2817
2817
|
* <p>Returns information about the transit gateway peering connection request.</p>
|
|
2818
2818
|
* @public
|
|
2819
2819
|
*/
|
|
2820
|
-
TransitGatewayPeering?: TransitGatewayPeering;
|
|
2820
|
+
TransitGatewayPeering?: TransitGatewayPeering | undefined;
|
|
2821
2821
|
}
|
|
2822
2822
|
/**
|
|
2823
2823
|
* @public
|
|
@@ -2837,12 +2837,12 @@ export interface CreateTransitGatewayRouteTableAttachmentRequest {
|
|
|
2837
2837
|
* <p>The list of key-value tags associated with the request.</p>
|
|
2838
2838
|
* @public
|
|
2839
2839
|
*/
|
|
2840
|
-
Tags?: Tag[];
|
|
2840
|
+
Tags?: Tag[] | undefined;
|
|
2841
2841
|
/**
|
|
2842
2842
|
* <p>The client token associated with the request.</p>
|
|
2843
2843
|
* @public
|
|
2844
2844
|
*/
|
|
2845
|
-
ClientToken?: string;
|
|
2845
|
+
ClientToken?: string | undefined;
|
|
2846
2846
|
}
|
|
2847
2847
|
/**
|
|
2848
2848
|
* <p>Describes a transit gateway route table attachment.</p>
|
|
@@ -2853,17 +2853,17 @@ export interface TransitGatewayRouteTableAttachment {
|
|
|
2853
2853
|
* <p>Describes a core network attachment.</p>
|
|
2854
2854
|
* @public
|
|
2855
2855
|
*/
|
|
2856
|
-
Attachment?: Attachment;
|
|
2856
|
+
Attachment?: Attachment | undefined;
|
|
2857
2857
|
/**
|
|
2858
2858
|
* <p>The ID of the peering attachment.</p>
|
|
2859
2859
|
* @public
|
|
2860
2860
|
*/
|
|
2861
|
-
PeeringId?: string;
|
|
2861
|
+
PeeringId?: string | undefined;
|
|
2862
2862
|
/**
|
|
2863
2863
|
* <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>
|
|
2864
2864
|
* @public
|
|
2865
2865
|
*/
|
|
2866
|
-
TransitGatewayRouteTableArn?: string;
|
|
2866
|
+
TransitGatewayRouteTableArn?: string | undefined;
|
|
2867
2867
|
}
|
|
2868
2868
|
/**
|
|
2869
2869
|
* @public
|
|
@@ -2873,7 +2873,7 @@ export interface CreateTransitGatewayRouteTableAttachmentResponse {
|
|
|
2873
2873
|
* <p>The route table associated with the create transit gateway route table attachment request.</p>
|
|
2874
2874
|
* @public
|
|
2875
2875
|
*/
|
|
2876
|
-
TransitGatewayRouteTableAttachment?: TransitGatewayRouteTableAttachment;
|
|
2876
|
+
TransitGatewayRouteTableAttachment?: TransitGatewayRouteTableAttachment | undefined;
|
|
2877
2877
|
}
|
|
2878
2878
|
/**
|
|
2879
2879
|
* <p>Describes the VPC options.</p>
|
|
@@ -2884,12 +2884,12 @@ export interface VpcOptions {
|
|
|
2884
2884
|
* <p>Indicates whether IPv6 is supported.</p>
|
|
2885
2885
|
* @public
|
|
2886
2886
|
*/
|
|
2887
|
-
Ipv6Support?: boolean;
|
|
2887
|
+
Ipv6Support?: boolean | undefined;
|
|
2888
2888
|
/**
|
|
2889
2889
|
* <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>
|
|
2890
2890
|
* @public
|
|
2891
2891
|
*/
|
|
2892
|
-
ApplianceModeSupport?: boolean;
|
|
2892
|
+
ApplianceModeSupport?: boolean | undefined;
|
|
2893
2893
|
}
|
|
2894
2894
|
/**
|
|
2895
2895
|
* @public
|
|
@@ -2914,17 +2914,17 @@ export interface CreateVpcAttachmentRequest {
|
|
|
2914
2914
|
* <p>Options for the VPC attachment.</p>
|
|
2915
2915
|
* @public
|
|
2916
2916
|
*/
|
|
2917
|
-
Options?: VpcOptions;
|
|
2917
|
+
Options?: VpcOptions | undefined;
|
|
2918
2918
|
/**
|
|
2919
2919
|
* <p>The key-value tags associated with the request.</p>
|
|
2920
2920
|
* @public
|
|
2921
2921
|
*/
|
|
2922
|
-
Tags?: Tag[];
|
|
2922
|
+
Tags?: Tag[] | undefined;
|
|
2923
2923
|
/**
|
|
2924
2924
|
* <p>The client token associated with the request.</p>
|
|
2925
2925
|
* @public
|
|
2926
2926
|
*/
|
|
2927
|
-
ClientToken?: string;
|
|
2927
|
+
ClientToken?: string | undefined;
|
|
2928
2928
|
}
|
|
2929
2929
|
/**
|
|
2930
2930
|
* <p>Describes a VPC attachment.</p>
|
|
@@ -2935,17 +2935,17 @@ export interface VpcAttachment {
|
|
|
2935
2935
|
* <p>Provides details about the VPC attachment.</p>
|
|
2936
2936
|
* @public
|
|
2937
2937
|
*/
|
|
2938
|
-
Attachment?: Attachment;
|
|
2938
|
+
Attachment?: Attachment | undefined;
|
|
2939
2939
|
/**
|
|
2940
2940
|
* <p>The subnet ARNs.</p>
|
|
2941
2941
|
* @public
|
|
2942
2942
|
*/
|
|
2943
|
-
SubnetArns?: string[];
|
|
2943
|
+
SubnetArns?: string[] | undefined;
|
|
2944
2944
|
/**
|
|
2945
2945
|
* <p>Provides details about the VPC attachment.</p>
|
|
2946
2946
|
* @public
|
|
2947
2947
|
*/
|
|
2948
|
-
Options?: VpcOptions;
|
|
2948
|
+
Options?: VpcOptions | undefined;
|
|
2949
2949
|
}
|
|
2950
2950
|
/**
|
|
2951
2951
|
* @public
|
|
@@ -2955,7 +2955,7 @@ export interface CreateVpcAttachmentResponse {
|
|
|
2955
2955
|
* <p>Provides details about the VPC attachment.</p>
|
|
2956
2956
|
* @public
|
|
2957
2957
|
*/
|
|
2958
|
-
VpcAttachment?: VpcAttachment;
|
|
2958
|
+
VpcAttachment?: VpcAttachment | undefined;
|
|
2959
2959
|
}
|
|
2960
2960
|
/**
|
|
2961
2961
|
* @public
|
|
@@ -2975,7 +2975,7 @@ export interface DeleteAttachmentResponse {
|
|
|
2975
2975
|
* <p>Information about the deleted attachment.</p>
|
|
2976
2976
|
* @public
|
|
2977
2977
|
*/
|
|
2978
|
-
Attachment?: Attachment;
|
|
2978
|
+
Attachment?: Attachment | undefined;
|
|
2979
2979
|
}
|
|
2980
2980
|
/**
|
|
2981
2981
|
* @public
|
|
@@ -3000,7 +3000,7 @@ export interface DeleteConnectionResponse {
|
|
|
3000
3000
|
* <p>Information about the connection.</p>
|
|
3001
3001
|
* @public
|
|
3002
3002
|
*/
|
|
3003
|
-
Connection?: Connection;
|
|
3003
|
+
Connection?: Connection | undefined;
|
|
3004
3004
|
}
|
|
3005
3005
|
/**
|
|
3006
3006
|
* @public
|
|
@@ -3020,7 +3020,7 @@ export interface DeleteConnectPeerResponse {
|
|
|
3020
3020
|
* <p>Information about the deleted Connect peer.</p>
|
|
3021
3021
|
* @public
|
|
3022
3022
|
*/
|
|
3023
|
-
ConnectPeer?: ConnectPeer;
|
|
3023
|
+
ConnectPeer?: ConnectPeer | undefined;
|
|
3024
3024
|
}
|
|
3025
3025
|
/**
|
|
3026
3026
|
* @public
|
|
@@ -3040,7 +3040,7 @@ export interface DeleteCoreNetworkResponse {
|
|
|
3040
3040
|
* <p>Information about the deleted core network.</p>
|
|
3041
3041
|
* @public
|
|
3042
3042
|
*/
|
|
3043
|
-
CoreNetwork?: CoreNetwork;
|
|
3043
|
+
CoreNetwork?: CoreNetwork | undefined;
|
|
3044
3044
|
}
|
|
3045
3045
|
/**
|
|
3046
3046
|
* @public
|
|
@@ -3065,7 +3065,7 @@ export interface DeleteCoreNetworkPolicyVersionResponse {
|
|
|
3065
3065
|
* <p>Returns information about the deleted policy version. </p>
|
|
3066
3066
|
* @public
|
|
3067
3067
|
*/
|
|
3068
|
-
CoreNetworkPolicy?: CoreNetworkPolicy;
|
|
3068
|
+
CoreNetworkPolicy?: CoreNetworkPolicy | undefined;
|
|
3069
3069
|
}
|
|
3070
3070
|
/**
|
|
3071
3071
|
* @public
|
|
@@ -3090,7 +3090,7 @@ export interface DeleteDeviceResponse {
|
|
|
3090
3090
|
* <p>Information about the device.</p>
|
|
3091
3091
|
* @public
|
|
3092
3092
|
*/
|
|
3093
|
-
Device?: Device;
|
|
3093
|
+
Device?: Device | undefined;
|
|
3094
3094
|
}
|
|
3095
3095
|
/**
|
|
3096
3096
|
* @public
|
|
@@ -3110,7 +3110,7 @@ export interface DeleteGlobalNetworkResponse {
|
|
|
3110
3110
|
* <p>Information about the global network.</p>
|
|
3111
3111
|
* @public
|
|
3112
3112
|
*/
|
|
3113
|
-
GlobalNetwork?: GlobalNetwork;
|
|
3113
|
+
GlobalNetwork?: GlobalNetwork | undefined;
|
|
3114
3114
|
}
|
|
3115
3115
|
/**
|
|
3116
3116
|
* @public
|
|
@@ -3135,7 +3135,7 @@ export interface DeleteLinkResponse {
|
|
|
3135
3135
|
* <p>Information about the link.</p>
|
|
3136
3136
|
* @public
|
|
3137
3137
|
*/
|
|
3138
|
-
Link?: Link;
|
|
3138
|
+
Link?: Link | undefined;
|
|
3139
3139
|
}
|
|
3140
3140
|
/**
|
|
3141
3141
|
* @public
|
|
@@ -3155,7 +3155,7 @@ export interface DeletePeeringResponse {
|
|
|
3155
3155
|
* <p>Information about a deleted peering connection.</p>
|
|
3156
3156
|
* @public
|
|
3157
3157
|
*/
|
|
3158
|
-
Peering?: Peering;
|
|
3158
|
+
Peering?: Peering | undefined;
|
|
3159
3159
|
}
|
|
3160
3160
|
/**
|
|
3161
3161
|
* @public
|
|
@@ -3195,7 +3195,7 @@ export interface DeleteSiteResponse {
|
|
|
3195
3195
|
* <p>Information about the site.</p>
|
|
3196
3196
|
* @public
|
|
3197
3197
|
*/
|
|
3198
|
-
Site?: Site;
|
|
3198
|
+
Site?: Site | undefined;
|
|
3199
3199
|
}
|
|
3200
3200
|
/**
|
|
3201
3201
|
* @public
|
|
@@ -3236,12 +3236,12 @@ export interface TransitGatewayRegistrationStateReason {
|
|
|
3236
3236
|
* <p>The code for the state reason.</p>
|
|
3237
3237
|
* @public
|
|
3238
3238
|
*/
|
|
3239
|
-
Code?: TransitGatewayRegistrationState;
|
|
3239
|
+
Code?: TransitGatewayRegistrationState | undefined;
|
|
3240
3240
|
/**
|
|
3241
3241
|
* <p>The message for the state reason.</p>
|
|
3242
3242
|
* @public
|
|
3243
3243
|
*/
|
|
3244
|
-
Message?: string;
|
|
3244
|
+
Message?: string | undefined;
|
|
3245
3245
|
}
|
|
3246
3246
|
/**
|
|
3247
3247
|
* <p>Describes the registration of a transit gateway to a global network.</p>
|
|
@@ -3252,17 +3252,17 @@ export interface TransitGatewayRegistration {
|
|
|
3252
3252
|
* <p>The ID of the global network.</p>
|
|
3253
3253
|
* @public
|
|
3254
3254
|
*/
|
|
3255
|
-
GlobalNetworkId?: string;
|
|
3255
|
+
GlobalNetworkId?: string | undefined;
|
|
3256
3256
|
/**
|
|
3257
3257
|
* <p>The Amazon Resource Name (ARN) of the transit gateway.</p>
|
|
3258
3258
|
* @public
|
|
3259
3259
|
*/
|
|
3260
|
-
TransitGatewayArn?: string;
|
|
3260
|
+
TransitGatewayArn?: string | undefined;
|
|
3261
3261
|
/**
|
|
3262
3262
|
* <p>The state of the transit gateway registration.</p>
|
|
3263
3263
|
* @public
|
|
3264
3264
|
*/
|
|
3265
|
-
State?: TransitGatewayRegistrationStateReason;
|
|
3265
|
+
State?: TransitGatewayRegistrationStateReason | undefined;
|
|
3266
3266
|
}
|
|
3267
3267
|
/**
|
|
3268
3268
|
* @public
|
|
@@ -3272,7 +3272,7 @@ export interface DeregisterTransitGatewayResponse {
|
|
|
3272
3272
|
* <p>The transit gateway registration information.</p>
|
|
3273
3273
|
* @public
|
|
3274
3274
|
*/
|
|
3275
|
-
TransitGatewayRegistration?: TransitGatewayRegistration;
|
|
3275
|
+
TransitGatewayRegistration?: TransitGatewayRegistration | undefined;
|
|
3276
3276
|
}
|
|
3277
3277
|
/**
|
|
3278
3278
|
* @public
|
|
@@ -3282,17 +3282,17 @@ export interface DescribeGlobalNetworksRequest {
|
|
|
3282
3282
|
* <p>The IDs of one or more global networks. The maximum is 10.</p>
|
|
3283
3283
|
* @public
|
|
3284
3284
|
*/
|
|
3285
|
-
GlobalNetworkIds?: string[];
|
|
3285
|
+
GlobalNetworkIds?: string[] | undefined;
|
|
3286
3286
|
/**
|
|
3287
3287
|
* <p>The maximum number of results to return.</p>
|
|
3288
3288
|
* @public
|
|
3289
3289
|
*/
|
|
3290
|
-
MaxResults?: number;
|
|
3290
|
+
MaxResults?: number | undefined;
|
|
3291
3291
|
/**
|
|
3292
3292
|
* <p>The token for the next page of results.</p>
|
|
3293
3293
|
* @public
|
|
3294
3294
|
*/
|
|
3295
|
-
NextToken?: string;
|
|
3295
|
+
NextToken?: string | undefined;
|
|
3296
3296
|
}
|
|
3297
3297
|
/**
|
|
3298
3298
|
* @public
|
|
@@ -3302,12 +3302,12 @@ export interface DescribeGlobalNetworksResponse {
|
|
|
3302
3302
|
* <p>Information about the global networks.</p>
|
|
3303
3303
|
* @public
|
|
3304
3304
|
*/
|
|
3305
|
-
GlobalNetworks?: GlobalNetwork[];
|
|
3305
|
+
GlobalNetworks?: GlobalNetwork[] | undefined;
|
|
3306
3306
|
/**
|
|
3307
3307
|
* <p>The token for the next page of results.</p>
|
|
3308
3308
|
* @public
|
|
3309
3309
|
*/
|
|
3310
|
-
NextToken?: string;
|
|
3310
|
+
NextToken?: string | undefined;
|
|
3311
3311
|
}
|
|
3312
3312
|
/**
|
|
3313
3313
|
* @public
|
|
@@ -3332,7 +3332,7 @@ export interface DisassociateConnectPeerResponse {
|
|
|
3332
3332
|
* <p>Describes the Connect peer association.</p>
|
|
3333
3333
|
* @public
|
|
3334
3334
|
*/
|
|
3335
|
-
ConnectPeerAssociation?: ConnectPeerAssociation;
|
|
3335
|
+
ConnectPeerAssociation?: ConnectPeerAssociation | undefined;
|
|
3336
3336
|
}
|
|
3337
3337
|
/**
|
|
3338
3338
|
* @public
|
|
@@ -3357,7 +3357,7 @@ export interface DisassociateCustomerGatewayResponse {
|
|
|
3357
3357
|
* <p>Information about the customer gateway association.</p>
|
|
3358
3358
|
* @public
|
|
3359
3359
|
*/
|
|
3360
|
-
CustomerGatewayAssociation?: CustomerGatewayAssociation;
|
|
3360
|
+
CustomerGatewayAssociation?: CustomerGatewayAssociation | undefined;
|
|
3361
3361
|
}
|
|
3362
3362
|
/**
|
|
3363
3363
|
* @public
|
|
@@ -3387,7 +3387,7 @@ export interface DisassociateLinkResponse {
|
|
|
3387
3387
|
* <p>Information about the link association.</p>
|
|
3388
3388
|
* @public
|
|
3389
3389
|
*/
|
|
3390
|
-
LinkAssociation?: LinkAssociation;
|
|
3390
|
+
LinkAssociation?: LinkAssociation | undefined;
|
|
3391
3391
|
}
|
|
3392
3392
|
/**
|
|
3393
3393
|
* @public
|
|
@@ -3412,7 +3412,7 @@ export interface DisassociateTransitGatewayConnectPeerResponse {
|
|
|
3412
3412
|
* <p>The transit gateway Connect peer association.</p>
|
|
3413
3413
|
* @public
|
|
3414
3414
|
*/
|
|
3415
|
-
TransitGatewayConnectPeerAssociation?: TransitGatewayConnectPeerAssociation;
|
|
3415
|
+
TransitGatewayConnectPeerAssociation?: TransitGatewayConnectPeerAssociation | undefined;
|
|
3416
3416
|
}
|
|
3417
3417
|
/**
|
|
3418
3418
|
* @public
|
|
@@ -3452,7 +3452,7 @@ export interface GetConnectAttachmentResponse {
|
|
|
3452
3452
|
* <p>Details about the Connect attachment.</p>
|
|
3453
3453
|
* @public
|
|
3454
3454
|
*/
|
|
3455
|
-
ConnectAttachment?: ConnectAttachment;
|
|
3455
|
+
ConnectAttachment?: ConnectAttachment | undefined;
|
|
3456
3456
|
}
|
|
3457
3457
|
/**
|
|
3458
3458
|
* @public
|
|
@@ -3467,22 +3467,22 @@ export interface GetConnectionsRequest {
|
|
|
3467
3467
|
* <p>One or more connection IDs.</p>
|
|
3468
3468
|
* @public
|
|
3469
3469
|
*/
|
|
3470
|
-
ConnectionIds?: string[];
|
|
3470
|
+
ConnectionIds?: string[] | undefined;
|
|
3471
3471
|
/**
|
|
3472
3472
|
* <p>The ID of the device.</p>
|
|
3473
3473
|
* @public
|
|
3474
3474
|
*/
|
|
3475
|
-
DeviceId?: string;
|
|
3475
|
+
DeviceId?: string | undefined;
|
|
3476
3476
|
/**
|
|
3477
3477
|
* <p>The maximum number of results to return.</p>
|
|
3478
3478
|
* @public
|
|
3479
3479
|
*/
|
|
3480
|
-
MaxResults?: number;
|
|
3480
|
+
MaxResults?: number | undefined;
|
|
3481
3481
|
/**
|
|
3482
3482
|
* <p>The token for the next page of results.</p>
|
|
3483
3483
|
* @public
|
|
3484
3484
|
*/
|
|
3485
|
-
NextToken?: string;
|
|
3485
|
+
NextToken?: string | undefined;
|
|
3486
3486
|
}
|
|
3487
3487
|
/**
|
|
3488
3488
|
* @public
|
|
@@ -3492,12 +3492,12 @@ export interface GetConnectionsResponse {
|
|
|
3492
3492
|
* <p>Information about the connections.</p>
|
|
3493
3493
|
* @public
|
|
3494
3494
|
*/
|
|
3495
|
-
Connections?: Connection[];
|
|
3495
|
+
Connections?: Connection[] | undefined;
|
|
3496
3496
|
/**
|
|
3497
3497
|
* <p>The token to use for the next page of results.</p>
|
|
3498
3498
|
* @public
|
|
3499
3499
|
*/
|
|
3500
|
-
NextToken?: string;
|
|
3500
|
+
NextToken?: string | undefined;
|
|
3501
3501
|
}
|
|
3502
3502
|
/**
|
|
3503
3503
|
* @public
|
|
@@ -3517,7 +3517,7 @@ export interface GetConnectPeerResponse {
|
|
|
3517
3517
|
* <p>Returns information about a core network Connect peer.</p>
|
|
3518
3518
|
* @public
|
|
3519
3519
|
*/
|
|
3520
|
-
ConnectPeer?: ConnectPeer;
|
|
3520
|
+
ConnectPeer?: ConnectPeer | undefined;
|
|
3521
3521
|
}
|
|
3522
3522
|
/**
|
|
3523
3523
|
* @public
|
|
@@ -3532,17 +3532,17 @@ export interface GetConnectPeerAssociationsRequest {
|
|
|
3532
3532
|
* <p>The IDs of the Connect peers.</p>
|
|
3533
3533
|
* @public
|
|
3534
3534
|
*/
|
|
3535
|
-
ConnectPeerIds?: string[];
|
|
3535
|
+
ConnectPeerIds?: string[] | undefined;
|
|
3536
3536
|
/**
|
|
3537
3537
|
* <p>The maximum number of results to return.</p>
|
|
3538
3538
|
* @public
|
|
3539
3539
|
*/
|
|
3540
|
-
MaxResults?: number;
|
|
3540
|
+
MaxResults?: number | undefined;
|
|
3541
3541
|
/**
|
|
3542
3542
|
* <p>The token for the next page of results.</p>
|
|
3543
3543
|
* @public
|
|
3544
3544
|
*/
|
|
3545
|
-
NextToken?: string;
|
|
3545
|
+
NextToken?: string | undefined;
|
|
3546
3546
|
}
|
|
3547
3547
|
/**
|
|
3548
3548
|
* @public
|
|
@@ -3552,12 +3552,12 @@ export interface GetConnectPeerAssociationsResponse {
|
|
|
3552
3552
|
* <p>Displays a list of Connect peer associations.</p>
|
|
3553
3553
|
* @public
|
|
3554
3554
|
*/
|
|
3555
|
-
ConnectPeerAssociations?: ConnectPeerAssociation[];
|
|
3555
|
+
ConnectPeerAssociations?: ConnectPeerAssociation[] | undefined;
|
|
3556
3556
|
/**
|
|
3557
3557
|
* <p>The token for the next page of results.</p>
|
|
3558
3558
|
* @public
|
|
3559
3559
|
*/
|
|
3560
|
-
NextToken?: string;
|
|
3560
|
+
NextToken?: string | undefined;
|
|
3561
3561
|
}
|
|
3562
3562
|
/**
|
|
3563
3563
|
* @public
|
|
@@ -3577,7 +3577,7 @@ export interface GetCoreNetworkResponse {
|
|
|
3577
3577
|
* <p>Details about a core network.</p>
|
|
3578
3578
|
* @public
|
|
3579
3579
|
*/
|
|
3580
|
-
CoreNetwork?: CoreNetwork;
|
|
3580
|
+
CoreNetwork?: CoreNetwork | undefined;
|
|
3581
3581
|
}
|
|
3582
3582
|
/**
|
|
3583
3583
|
* @public
|
|
@@ -3597,12 +3597,12 @@ export interface GetCoreNetworkChangeEventsRequest {
|
|
|
3597
3597
|
* <p>The maximum number of results to return.</p>
|
|
3598
3598
|
* @public
|
|
3599
3599
|
*/
|
|
3600
|
-
MaxResults?: number;
|
|
3600
|
+
MaxResults?: number | undefined;
|
|
3601
3601
|
/**
|
|
3602
3602
|
* <p>The token for the next page of results.</p>
|
|
3603
3603
|
* @public
|
|
3604
3604
|
*/
|
|
3605
|
-
NextToken?: string;
|
|
3605
|
+
NextToken?: string | undefined;
|
|
3606
3606
|
}
|
|
3607
3607
|
/**
|
|
3608
3608
|
* @public
|
|
@@ -3612,12 +3612,12 @@ export interface GetCoreNetworkChangeEventsResponse {
|
|
|
3612
3612
|
* <p>The response to <code>GetCoreNetworkChangeEventsRequest</code>.</p>
|
|
3613
3613
|
* @public
|
|
3614
3614
|
*/
|
|
3615
|
-
CoreNetworkChangeEvents?: CoreNetworkChangeEvent[];
|
|
3615
|
+
CoreNetworkChangeEvents?: CoreNetworkChangeEvent[] | undefined;
|
|
3616
3616
|
/**
|
|
3617
3617
|
* <p>The token for the next page of results.</p>
|
|
3618
3618
|
* @public
|
|
3619
3619
|
*/
|
|
3620
|
-
NextToken?: string;
|
|
3620
|
+
NextToken?: string | undefined;
|
|
3621
3621
|
}
|
|
3622
3622
|
/**
|
|
3623
3623
|
* @public
|
|
@@ -3637,12 +3637,12 @@ export interface GetCoreNetworkChangeSetRequest {
|
|
|
3637
3637
|
* <p>The maximum number of results to return.</p>
|
|
3638
3638
|
* @public
|
|
3639
3639
|
*/
|
|
3640
|
-
MaxResults?: number;
|
|
3640
|
+
MaxResults?: number | undefined;
|
|
3641
3641
|
/**
|
|
3642
3642
|
* <p>The token for the next page of results.</p>
|
|
3643
3643
|
* @public
|
|
3644
3644
|
*/
|
|
3645
|
-
NextToken?: string;
|
|
3645
|
+
NextToken?: string | undefined;
|
|
3646
3646
|
}
|
|
3647
3647
|
/**
|
|
3648
3648
|
* @public
|
|
@@ -3652,12 +3652,12 @@ export interface GetCoreNetworkChangeSetResponse {
|
|
|
3652
3652
|
* <p>Describes a core network changes.</p>
|
|
3653
3653
|
* @public
|
|
3654
3654
|
*/
|
|
3655
|
-
CoreNetworkChanges?: CoreNetworkChange[];
|
|
3655
|
+
CoreNetworkChanges?: CoreNetworkChange[] | undefined;
|
|
3656
3656
|
/**
|
|
3657
3657
|
* <p>The token for the next page of results.</p>
|
|
3658
3658
|
* @public
|
|
3659
3659
|
*/
|
|
3660
|
-
NextToken?: string;
|
|
3660
|
+
NextToken?: string | undefined;
|
|
3661
3661
|
}
|
|
3662
3662
|
/**
|
|
3663
3663
|
* @public
|
|
@@ -3672,12 +3672,12 @@ export interface GetCoreNetworkPolicyRequest {
|
|
|
3672
3672
|
* <p>The ID of a core network policy version.</p>
|
|
3673
3673
|
* @public
|
|
3674
3674
|
*/
|
|
3675
|
-
PolicyVersionId?: number;
|
|
3675
|
+
PolicyVersionId?: number | undefined;
|
|
3676
3676
|
/**
|
|
3677
3677
|
* <p>The alias of a core network policy </p>
|
|
3678
3678
|
* @public
|
|
3679
3679
|
*/
|
|
3680
|
-
Alias?: CoreNetworkPolicyAlias;
|
|
3680
|
+
Alias?: CoreNetworkPolicyAlias | undefined;
|
|
3681
3681
|
}
|
|
3682
3682
|
/**
|
|
3683
3683
|
* @public
|
|
@@ -3687,7 +3687,7 @@ export interface GetCoreNetworkPolicyResponse {
|
|
|
3687
3687
|
* <p>The details about a core network policy.</p>
|
|
3688
3688
|
* @public
|
|
3689
3689
|
*/
|
|
3690
|
-
CoreNetworkPolicy?: CoreNetworkPolicy;
|
|
3690
|
+
CoreNetworkPolicy?: CoreNetworkPolicy | undefined;
|
|
3691
3691
|
}
|
|
3692
3692
|
/**
|
|
3693
3693
|
* @public
|
|
@@ -3702,17 +3702,17 @@ export interface GetCustomerGatewayAssociationsRequest {
|
|
|
3702
3702
|
* <p>One or more customer gateway Amazon Resource Names (ARNs). The maximum is 10.</p>
|
|
3703
3703
|
* @public
|
|
3704
3704
|
*/
|
|
3705
|
-
CustomerGatewayArns?: string[];
|
|
3705
|
+
CustomerGatewayArns?: string[] | undefined;
|
|
3706
3706
|
/**
|
|
3707
3707
|
* <p>The maximum number of results to return.</p>
|
|
3708
3708
|
* @public
|
|
3709
3709
|
*/
|
|
3710
|
-
MaxResults?: number;
|
|
3710
|
+
MaxResults?: number | undefined;
|
|
3711
3711
|
/**
|
|
3712
3712
|
* <p>The token for the next page of results.</p>
|
|
3713
3713
|
* @public
|
|
3714
3714
|
*/
|
|
3715
|
-
NextToken?: string;
|
|
3715
|
+
NextToken?: string | undefined;
|
|
3716
3716
|
}
|
|
3717
3717
|
/**
|
|
3718
3718
|
* @public
|
|
@@ -3722,12 +3722,12 @@ export interface GetCustomerGatewayAssociationsResponse {
|
|
|
3722
3722
|
* <p>The customer gateway associations.</p>
|
|
3723
3723
|
* @public
|
|
3724
3724
|
*/
|
|
3725
|
-
CustomerGatewayAssociations?: CustomerGatewayAssociation[];
|
|
3725
|
+
CustomerGatewayAssociations?: CustomerGatewayAssociation[] | undefined;
|
|
3726
3726
|
/**
|
|
3727
3727
|
* <p>The token for the next page of results.</p>
|
|
3728
3728
|
* @public
|
|
3729
3729
|
*/
|
|
3730
|
-
NextToken?: string;
|
|
3730
|
+
NextToken?: string | undefined;
|
|
3731
3731
|
}
|
|
3732
3732
|
/**
|
|
3733
3733
|
* @public
|
|
@@ -3742,22 +3742,22 @@ export interface GetDevicesRequest {
|
|
|
3742
3742
|
* <p>One or more device IDs. The maximum is 10.</p>
|
|
3743
3743
|
* @public
|
|
3744
3744
|
*/
|
|
3745
|
-
DeviceIds?: string[];
|
|
3745
|
+
DeviceIds?: string[] | undefined;
|
|
3746
3746
|
/**
|
|
3747
3747
|
* <p>The ID of the site.</p>
|
|
3748
3748
|
* @public
|
|
3749
3749
|
*/
|
|
3750
|
-
SiteId?: string;
|
|
3750
|
+
SiteId?: string | undefined;
|
|
3751
3751
|
/**
|
|
3752
3752
|
* <p>The maximum number of results to return.</p>
|
|
3753
3753
|
* @public
|
|
3754
3754
|
*/
|
|
3755
|
-
MaxResults?: number;
|
|
3755
|
+
MaxResults?: number | undefined;
|
|
3756
3756
|
/**
|
|
3757
3757
|
* <p>The token for the next page of results.</p>
|
|
3758
3758
|
* @public
|
|
3759
3759
|
*/
|
|
3760
|
-
NextToken?: string;
|
|
3760
|
+
NextToken?: string | undefined;
|
|
3761
3761
|
}
|
|
3762
3762
|
/**
|
|
3763
3763
|
* @public
|
|
@@ -3767,12 +3767,12 @@ export interface GetDevicesResponse {
|
|
|
3767
3767
|
* <p>The devices.</p>
|
|
3768
3768
|
* @public
|
|
3769
3769
|
*/
|
|
3770
|
-
Devices?: Device[];
|
|
3770
|
+
Devices?: Device[] | undefined;
|
|
3771
3771
|
/**
|
|
3772
3772
|
* <p>The token for the next page of results.</p>
|
|
3773
3773
|
* @public
|
|
3774
3774
|
*/
|
|
3775
|
-
NextToken?: string;
|
|
3775
|
+
NextToken?: string | undefined;
|
|
3776
3776
|
}
|
|
3777
3777
|
/**
|
|
3778
3778
|
* @public
|
|
@@ -3787,22 +3787,22 @@ export interface GetLinkAssociationsRequest {
|
|
|
3787
3787
|
* <p>The ID of the device.</p>
|
|
3788
3788
|
* @public
|
|
3789
3789
|
*/
|
|
3790
|
-
DeviceId?: string;
|
|
3790
|
+
DeviceId?: string | undefined;
|
|
3791
3791
|
/**
|
|
3792
3792
|
* <p>The ID of the link.</p>
|
|
3793
3793
|
* @public
|
|
3794
3794
|
*/
|
|
3795
|
-
LinkId?: string;
|
|
3795
|
+
LinkId?: string | undefined;
|
|
3796
3796
|
/**
|
|
3797
3797
|
* <p>The maximum number of results to return.</p>
|
|
3798
3798
|
* @public
|
|
3799
3799
|
*/
|
|
3800
|
-
MaxResults?: number;
|
|
3800
|
+
MaxResults?: number | undefined;
|
|
3801
3801
|
/**
|
|
3802
3802
|
* <p>The token for the next page of results.</p>
|
|
3803
3803
|
* @public
|
|
3804
3804
|
*/
|
|
3805
|
-
NextToken?: string;
|
|
3805
|
+
NextToken?: string | undefined;
|
|
3806
3806
|
}
|
|
3807
3807
|
/**
|
|
3808
3808
|
* @public
|
|
@@ -3812,12 +3812,12 @@ export interface GetLinkAssociationsResponse {
|
|
|
3812
3812
|
* <p>The link associations.</p>
|
|
3813
3813
|
* @public
|
|
3814
3814
|
*/
|
|
3815
|
-
LinkAssociations?: LinkAssociation[];
|
|
3815
|
+
LinkAssociations?: LinkAssociation[] | undefined;
|
|
3816
3816
|
/**
|
|
3817
3817
|
* <p>The token for the next page of results.</p>
|
|
3818
3818
|
* @public
|
|
3819
3819
|
*/
|
|
3820
|
-
NextToken?: string;
|
|
3820
|
+
NextToken?: string | undefined;
|
|
3821
3821
|
}
|
|
3822
3822
|
/**
|
|
3823
3823
|
* @public
|
|
@@ -3832,32 +3832,32 @@ export interface GetLinksRequest {
|
|
|
3832
3832
|
* <p>One or more link IDs. The maximum is 10.</p>
|
|
3833
3833
|
* @public
|
|
3834
3834
|
*/
|
|
3835
|
-
LinkIds?: string[];
|
|
3835
|
+
LinkIds?: string[] | undefined;
|
|
3836
3836
|
/**
|
|
3837
3837
|
* <p>The ID of the site.</p>
|
|
3838
3838
|
* @public
|
|
3839
3839
|
*/
|
|
3840
|
-
SiteId?: string;
|
|
3840
|
+
SiteId?: string | undefined;
|
|
3841
3841
|
/**
|
|
3842
3842
|
* <p>The link type.</p>
|
|
3843
3843
|
* @public
|
|
3844
3844
|
*/
|
|
3845
|
-
Type?: string;
|
|
3845
|
+
Type?: string | undefined;
|
|
3846
3846
|
/**
|
|
3847
3847
|
* <p>The link provider.</p>
|
|
3848
3848
|
* @public
|
|
3849
3849
|
*/
|
|
3850
|
-
Provider?: string;
|
|
3850
|
+
Provider?: string | undefined;
|
|
3851
3851
|
/**
|
|
3852
3852
|
* <p>The maximum number of results to return.</p>
|
|
3853
3853
|
* @public
|
|
3854
3854
|
*/
|
|
3855
|
-
MaxResults?: number;
|
|
3855
|
+
MaxResults?: number | undefined;
|
|
3856
3856
|
/**
|
|
3857
3857
|
* <p>The token for the next page of results.</p>
|
|
3858
3858
|
* @public
|
|
3859
3859
|
*/
|
|
3860
|
-
NextToken?: string;
|
|
3860
|
+
NextToken?: string | undefined;
|
|
3861
3861
|
}
|
|
3862
3862
|
/**
|
|
3863
3863
|
* @public
|
|
@@ -3867,12 +3867,12 @@ export interface GetLinksResponse {
|
|
|
3867
3867
|
* <p>The links.</p>
|
|
3868
3868
|
* @public
|
|
3869
3869
|
*/
|
|
3870
|
-
Links?: Link[];
|
|
3870
|
+
Links?: Link[] | undefined;
|
|
3871
3871
|
/**
|
|
3872
3872
|
* <p>The token for the next page of results.</p>
|
|
3873
3873
|
* @public
|
|
3874
3874
|
*/
|
|
3875
|
-
NextToken?: string;
|
|
3875
|
+
NextToken?: string | undefined;
|
|
3876
3876
|
}
|
|
3877
3877
|
/**
|
|
3878
3878
|
* @public
|
|
@@ -3981,17 +3981,17 @@ export interface GetNetworkResourceCountsRequest {
|
|
|
3981
3981
|
* </ul>
|
|
3982
3982
|
* @public
|
|
3983
3983
|
*/
|
|
3984
|
-
ResourceType?: string;
|
|
3984
|
+
ResourceType?: string | undefined;
|
|
3985
3985
|
/**
|
|
3986
3986
|
* <p>The maximum number of results to return.</p>
|
|
3987
3987
|
* @public
|
|
3988
3988
|
*/
|
|
3989
|
-
MaxResults?: number;
|
|
3989
|
+
MaxResults?: number | undefined;
|
|
3990
3990
|
/**
|
|
3991
3991
|
* <p>The token for the next page of results.</p>
|
|
3992
3992
|
* @public
|
|
3993
3993
|
*/
|
|
3994
|
-
NextToken?: string;
|
|
3994
|
+
NextToken?: string | undefined;
|
|
3995
3995
|
}
|
|
3996
3996
|
/**
|
|
3997
3997
|
* <p>Describes a resource count.</p>
|
|
@@ -4002,12 +4002,12 @@ export interface NetworkResourceCount {
|
|
|
4002
4002
|
* <p>The resource type.</p>
|
|
4003
4003
|
* @public
|
|
4004
4004
|
*/
|
|
4005
|
-
ResourceType?: string;
|
|
4005
|
+
ResourceType?: string | undefined;
|
|
4006
4006
|
/**
|
|
4007
4007
|
* <p>The resource count.</p>
|
|
4008
4008
|
* @public
|
|
4009
4009
|
*/
|
|
4010
|
-
Count?: number;
|
|
4010
|
+
Count?: number | undefined;
|
|
4011
4011
|
}
|
|
4012
4012
|
/**
|
|
4013
4013
|
* @public
|
|
@@ -4017,12 +4017,12 @@ export interface GetNetworkResourceCountsResponse {
|
|
|
4017
4017
|
* <p>The count of resources.</p>
|
|
4018
4018
|
* @public
|
|
4019
4019
|
*/
|
|
4020
|
-
NetworkResourceCounts?: NetworkResourceCount[];
|
|
4020
|
+
NetworkResourceCounts?: NetworkResourceCount[] | undefined;
|
|
4021
4021
|
/**
|
|
4022
4022
|
* <p>The token for the next page of results.</p>
|
|
4023
4023
|
* @public
|
|
4024
4024
|
*/
|
|
4025
|
-
NextToken?: string;
|
|
4025
|
+
NextToken?: string | undefined;
|
|
4026
4026
|
}
|
|
4027
4027
|
/**
|
|
4028
4028
|
* @public
|
|
@@ -4037,22 +4037,22 @@ export interface GetNetworkResourceRelationshipsRequest {
|
|
|
4037
4037
|
* <p>The ID of a core network.</p>
|
|
4038
4038
|
* @public
|
|
4039
4039
|
*/
|
|
4040
|
-
CoreNetworkId?: string;
|
|
4040
|
+
CoreNetworkId?: string | undefined;
|
|
4041
4041
|
/**
|
|
4042
4042
|
* <p>The ARN of the registered gateway.</p>
|
|
4043
4043
|
* @public
|
|
4044
4044
|
*/
|
|
4045
|
-
RegisteredGatewayArn?: string;
|
|
4045
|
+
RegisteredGatewayArn?: string | undefined;
|
|
4046
4046
|
/**
|
|
4047
4047
|
* <p>The Amazon Web Services Region.</p>
|
|
4048
4048
|
* @public
|
|
4049
4049
|
*/
|
|
4050
|
-
AwsRegion?: string;
|
|
4050
|
+
AwsRegion?: string | undefined;
|
|
4051
4051
|
/**
|
|
4052
4052
|
* <p>The Amazon Web Services account ID.</p>
|
|
4053
4053
|
* @public
|
|
4054
4054
|
*/
|
|
4055
|
-
AccountId?: string;
|
|
4055
|
+
AccountId?: string | undefined;
|
|
4056
4056
|
/**
|
|
4057
4057
|
* <p>The resource type.</p>
|
|
4058
4058
|
* <p>The following are the supported resource types for Direct Connect:</p>
|
|
@@ -4151,22 +4151,22 @@ export interface GetNetworkResourceRelationshipsRequest {
|
|
|
4151
4151
|
* </ul>
|
|
4152
4152
|
* @public
|
|
4153
4153
|
*/
|
|
4154
|
-
ResourceType?: string;
|
|
4154
|
+
ResourceType?: string | undefined;
|
|
4155
4155
|
/**
|
|
4156
4156
|
* <p>The ARN of the gateway.</p>
|
|
4157
4157
|
* @public
|
|
4158
4158
|
*/
|
|
4159
|
-
ResourceArn?: string;
|
|
4159
|
+
ResourceArn?: string | undefined;
|
|
4160
4160
|
/**
|
|
4161
4161
|
* <p>The maximum number of results to return.</p>
|
|
4162
4162
|
* @public
|
|
4163
4163
|
*/
|
|
4164
|
-
MaxResults?: number;
|
|
4164
|
+
MaxResults?: number | undefined;
|
|
4165
4165
|
/**
|
|
4166
4166
|
* <p>The token for the next page of results.</p>
|
|
4167
4167
|
* @public
|
|
4168
4168
|
*/
|
|
4169
|
-
NextToken?: string;
|
|
4169
|
+
NextToken?: string | undefined;
|
|
4170
4170
|
}
|
|
4171
4171
|
/**
|
|
4172
4172
|
* <p>Describes a resource relationship.</p>
|
|
@@ -4177,12 +4177,12 @@ export interface Relationship {
|
|
|
4177
4177
|
* <p>The ARN of the resource.</p>
|
|
4178
4178
|
* @public
|
|
4179
4179
|
*/
|
|
4180
|
-
From?: string;
|
|
4180
|
+
From?: string | undefined;
|
|
4181
4181
|
/**
|
|
4182
4182
|
* <p>The ARN of the resource.</p>
|
|
4183
4183
|
* @public
|
|
4184
4184
|
*/
|
|
4185
|
-
To?: string;
|
|
4185
|
+
To?: string | undefined;
|
|
4186
4186
|
}
|
|
4187
4187
|
/**
|
|
4188
4188
|
* @public
|
|
@@ -4192,12 +4192,12 @@ export interface GetNetworkResourceRelationshipsResponse {
|
|
|
4192
4192
|
* <p>The resource relationships.</p>
|
|
4193
4193
|
* @public
|
|
4194
4194
|
*/
|
|
4195
|
-
Relationships?: Relationship[];
|
|
4195
|
+
Relationships?: Relationship[] | undefined;
|
|
4196
4196
|
/**
|
|
4197
4197
|
* <p>The token for the next page of results.</p>
|
|
4198
4198
|
* @public
|
|
4199
4199
|
*/
|
|
4200
|
-
NextToken?: string;
|
|
4200
|
+
NextToken?: string | undefined;
|
|
4201
4201
|
}
|
|
4202
4202
|
/**
|
|
4203
4203
|
* @public
|
|
@@ -4212,22 +4212,22 @@ export interface GetNetworkResourcesRequest {
|
|
|
4212
4212
|
* <p>The ID of a core network.</p>
|
|
4213
4213
|
* @public
|
|
4214
4214
|
*/
|
|
4215
|
-
CoreNetworkId?: string;
|
|
4215
|
+
CoreNetworkId?: string | undefined;
|
|
4216
4216
|
/**
|
|
4217
4217
|
* <p>The ARN of the gateway.</p>
|
|
4218
4218
|
* @public
|
|
4219
4219
|
*/
|
|
4220
|
-
RegisteredGatewayArn?: string;
|
|
4220
|
+
RegisteredGatewayArn?: string | undefined;
|
|
4221
4221
|
/**
|
|
4222
4222
|
* <p>The Amazon Web Services Region.</p>
|
|
4223
4223
|
* @public
|
|
4224
4224
|
*/
|
|
4225
|
-
AwsRegion?: string;
|
|
4225
|
+
AwsRegion?: string | undefined;
|
|
4226
4226
|
/**
|
|
4227
4227
|
* <p>The Amazon Web Services account ID.</p>
|
|
4228
4228
|
* @public
|
|
4229
4229
|
*/
|
|
4230
|
-
AccountId?: string;
|
|
4230
|
+
AccountId?: string | undefined;
|
|
4231
4231
|
/**
|
|
4232
4232
|
* <p>The resource type.</p>
|
|
4233
4233
|
* <p>The following are the supported resource types for Direct Connect:</p>
|
|
@@ -4326,22 +4326,22 @@ export interface GetNetworkResourcesRequest {
|
|
|
4326
4326
|
* </ul>
|
|
4327
4327
|
* @public
|
|
4328
4328
|
*/
|
|
4329
|
-
ResourceType?: string;
|
|
4329
|
+
ResourceType?: string | undefined;
|
|
4330
4330
|
/**
|
|
4331
4331
|
* <p>The ARN of the resource.</p>
|
|
4332
4332
|
* @public
|
|
4333
4333
|
*/
|
|
4334
|
-
ResourceArn?: string;
|
|
4334
|
+
ResourceArn?: string | undefined;
|
|
4335
4335
|
/**
|
|
4336
4336
|
* <p>The maximum number of results to return.</p>
|
|
4337
4337
|
* @public
|
|
4338
4338
|
*/
|
|
4339
|
-
MaxResults?: number;
|
|
4339
|
+
MaxResults?: number | undefined;
|
|
4340
4340
|
/**
|
|
4341
4341
|
* <p>The token for the next page of results.</p>
|
|
4342
4342
|
* @public
|
|
4343
4343
|
*/
|
|
4344
|
-
NextToken?: string;
|
|
4344
|
+
NextToken?: string | undefined;
|
|
4345
4345
|
}
|
|
4346
4346
|
/**
|
|
4347
4347
|
* <p>Describes a network resource.</p>
|
|
@@ -4352,22 +4352,22 @@ export interface NetworkResource {
|
|
|
4352
4352
|
* <p>The ARN of the gateway.</p>
|
|
4353
4353
|
* @public
|
|
4354
4354
|
*/
|
|
4355
|
-
RegisteredGatewayArn?: string;
|
|
4355
|
+
RegisteredGatewayArn?: string | undefined;
|
|
4356
4356
|
/**
|
|
4357
4357
|
* <p>The ID of a core network.</p>
|
|
4358
4358
|
* @public
|
|
4359
4359
|
*/
|
|
4360
|
-
CoreNetworkId?: string;
|
|
4360
|
+
CoreNetworkId?: string | undefined;
|
|
4361
4361
|
/**
|
|
4362
4362
|
* <p>The Amazon Web Services Region.</p>
|
|
4363
4363
|
* @public
|
|
4364
4364
|
*/
|
|
4365
|
-
AwsRegion?: string;
|
|
4365
|
+
AwsRegion?: string | undefined;
|
|
4366
4366
|
/**
|
|
4367
4367
|
* <p>The Amazon Web Services account ID.</p>
|
|
4368
4368
|
* @public
|
|
4369
4369
|
*/
|
|
4370
|
-
AccountId?: string;
|
|
4370
|
+
AccountId?: string | undefined;
|
|
4371
4371
|
/**
|
|
4372
4372
|
* <p>The resource type.</p>
|
|
4373
4373
|
* <p>The following are the supported resource types for Direct Connect:</p>
|
|
@@ -4466,37 +4466,37 @@ export interface NetworkResource {
|
|
|
4466
4466
|
* </ul>
|
|
4467
4467
|
* @public
|
|
4468
4468
|
*/
|
|
4469
|
-
ResourceType?: string;
|
|
4469
|
+
ResourceType?: string | undefined;
|
|
4470
4470
|
/**
|
|
4471
4471
|
* <p>The ID of the resource.</p>
|
|
4472
4472
|
* @public
|
|
4473
4473
|
*/
|
|
4474
|
-
ResourceId?: string;
|
|
4474
|
+
ResourceId?: string | undefined;
|
|
4475
4475
|
/**
|
|
4476
4476
|
* <p>The ARN of the resource.</p>
|
|
4477
4477
|
* @public
|
|
4478
4478
|
*/
|
|
4479
|
-
ResourceArn?: string;
|
|
4479
|
+
ResourceArn?: string | undefined;
|
|
4480
4480
|
/**
|
|
4481
4481
|
* <p>Information about the resource, in JSON format. Network Manager gets this information by describing the resource using its Describe API call.</p>
|
|
4482
4482
|
* @public
|
|
4483
4483
|
*/
|
|
4484
|
-
Definition?: string;
|
|
4484
|
+
Definition?: string | undefined;
|
|
4485
4485
|
/**
|
|
4486
4486
|
* <p>The time that the resource definition was retrieved.</p>
|
|
4487
4487
|
* @public
|
|
4488
4488
|
*/
|
|
4489
|
-
DefinitionTimestamp?: Date;
|
|
4489
|
+
DefinitionTimestamp?: Date | undefined;
|
|
4490
4490
|
/**
|
|
4491
4491
|
* <p>The tags.</p>
|
|
4492
4492
|
* @public
|
|
4493
4493
|
*/
|
|
4494
|
-
Tags?: Tag[];
|
|
4494
|
+
Tags?: Tag[] | undefined;
|
|
4495
4495
|
/**
|
|
4496
4496
|
* <p>The resource metadata.</p>
|
|
4497
4497
|
* @public
|
|
4498
4498
|
*/
|
|
4499
|
-
Metadata?: Record<string, string
|
|
4499
|
+
Metadata?: Record<string, string> | undefined;
|
|
4500
4500
|
}
|
|
4501
4501
|
/**
|
|
4502
4502
|
* @public
|
|
@@ -4506,12 +4506,12 @@ export interface GetNetworkResourcesResponse {
|
|
|
4506
4506
|
* <p>The network resources.</p>
|
|
4507
4507
|
* @public
|
|
4508
4508
|
*/
|
|
4509
|
-
NetworkResources?: NetworkResource[];
|
|
4509
|
+
NetworkResources?: NetworkResource[] | undefined;
|
|
4510
4510
|
/**
|
|
4511
4511
|
* <p>The token for the next page of results.</p>
|
|
4512
4512
|
* @public
|
|
4513
4513
|
*/
|
|
4514
|
-
NextToken?: string;
|
|
4514
|
+
NextToken?: string | undefined;
|
|
4515
4515
|
}
|
|
4516
4516
|
/**
|
|
4517
4517
|
* <p>Describes a route table.</p>
|
|
@@ -4522,17 +4522,17 @@ export interface RouteTableIdentifier {
|
|
|
4522
4522
|
* <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>
|
|
4523
4523
|
* @public
|
|
4524
4524
|
*/
|
|
4525
|
-
TransitGatewayRouteTableArn?: string;
|
|
4525
|
+
TransitGatewayRouteTableArn?: string | undefined;
|
|
4526
4526
|
/**
|
|
4527
4527
|
* <p>The segment edge in a core network.</p>
|
|
4528
4528
|
* @public
|
|
4529
4529
|
*/
|
|
4530
|
-
CoreNetworkSegmentEdge?: CoreNetworkSegmentEdgeIdentifier;
|
|
4530
|
+
CoreNetworkSegmentEdge?: CoreNetworkSegmentEdgeIdentifier | undefined;
|
|
4531
4531
|
/**
|
|
4532
4532
|
* <p>The route table identifier associated with the network function group.</p>
|
|
4533
4533
|
* @public
|
|
4534
4534
|
*/
|
|
4535
|
-
CoreNetworkNetworkFunctionGroup?: CoreNetworkNetworkFunctionGroupIdentifier;
|
|
4535
|
+
CoreNetworkNetworkFunctionGroup?: CoreNetworkNetworkFunctionGroupIdentifier | undefined;
|
|
4536
4536
|
}
|
|
4537
4537
|
/**
|
|
4538
4538
|
* @public
|
|
@@ -4576,42 +4576,42 @@ export interface GetNetworkRoutesRequest {
|
|
|
4576
4576
|
* <p>An exact CIDR block.</p>
|
|
4577
4577
|
* @public
|
|
4578
4578
|
*/
|
|
4579
|
-
ExactCidrMatches?: string[];
|
|
4579
|
+
ExactCidrMatches?: string[] | undefined;
|
|
4580
4580
|
/**
|
|
4581
4581
|
* <p>The most specific route that matches the traffic (longest prefix match).</p>
|
|
4582
4582
|
* @public
|
|
4583
4583
|
*/
|
|
4584
|
-
LongestPrefixMatches?: string[];
|
|
4584
|
+
LongestPrefixMatches?: string[] | undefined;
|
|
4585
4585
|
/**
|
|
4586
4586
|
* <p>The routes with a subnet that match the specified CIDR filter.</p>
|
|
4587
4587
|
* @public
|
|
4588
4588
|
*/
|
|
4589
|
-
SubnetOfMatches?: string[];
|
|
4589
|
+
SubnetOfMatches?: string[] | undefined;
|
|
4590
4590
|
/**
|
|
4591
4591
|
* <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>
|
|
4592
4592
|
* @public
|
|
4593
4593
|
*/
|
|
4594
|
-
SupernetOfMatches?: string[];
|
|
4594
|
+
SupernetOfMatches?: string[] | undefined;
|
|
4595
4595
|
/**
|
|
4596
4596
|
* <p>The IDs of the prefix lists.</p>
|
|
4597
4597
|
* @public
|
|
4598
4598
|
*/
|
|
4599
|
-
PrefixListIds?: string[];
|
|
4599
|
+
PrefixListIds?: string[] | undefined;
|
|
4600
4600
|
/**
|
|
4601
4601
|
* <p>The route states.</p>
|
|
4602
4602
|
* @public
|
|
4603
4603
|
*/
|
|
4604
|
-
States?: RouteState[];
|
|
4604
|
+
States?: RouteState[] | undefined;
|
|
4605
4605
|
/**
|
|
4606
4606
|
* <p>The route types.</p>
|
|
4607
4607
|
* @public
|
|
4608
4608
|
*/
|
|
4609
|
-
Types?: RouteType[];
|
|
4609
|
+
Types?: RouteType[] | undefined;
|
|
4610
4610
|
/**
|
|
4611
4611
|
* <p>Filter by route table destination. Possible Values: TRANSIT_GATEWAY_ATTACHMENT_ID, RESOURCE_ID, or RESOURCE_TYPE.</p>
|
|
4612
4612
|
* @public
|
|
4613
4613
|
*/
|
|
4614
|
-
DestinationFilters?: Record<string, string[]
|
|
4614
|
+
DestinationFilters?: Record<string, string[]> | undefined;
|
|
4615
4615
|
}
|
|
4616
4616
|
/**
|
|
4617
4617
|
* <p>Describes the destination of a network route.</p>
|
|
@@ -4622,37 +4622,37 @@ export interface NetworkRouteDestination {
|
|
|
4622
4622
|
* <p>The ID of a core network attachment.</p>
|
|
4623
4623
|
* @public
|
|
4624
4624
|
*/
|
|
4625
|
-
CoreNetworkAttachmentId?: string;
|
|
4625
|
+
CoreNetworkAttachmentId?: string | undefined;
|
|
4626
4626
|
/**
|
|
4627
4627
|
* <p>The ID of the transit gateway attachment.</p>
|
|
4628
4628
|
* @public
|
|
4629
4629
|
*/
|
|
4630
|
-
TransitGatewayAttachmentId?: string;
|
|
4630
|
+
TransitGatewayAttachmentId?: string | undefined;
|
|
4631
4631
|
/**
|
|
4632
4632
|
* <p>The name of the segment.</p>
|
|
4633
4633
|
* @public
|
|
4634
4634
|
*/
|
|
4635
|
-
SegmentName?: string;
|
|
4635
|
+
SegmentName?: string | undefined;
|
|
4636
4636
|
/**
|
|
4637
4637
|
* <p>The network function group name associated with the destination.</p>
|
|
4638
4638
|
* @public
|
|
4639
4639
|
*/
|
|
4640
|
-
NetworkFunctionGroupName?: string;
|
|
4640
|
+
NetworkFunctionGroupName?: string | undefined;
|
|
4641
4641
|
/**
|
|
4642
4642
|
* <p>The edge location for the network destination.</p>
|
|
4643
4643
|
* @public
|
|
4644
4644
|
*/
|
|
4645
|
-
EdgeLocation?: string;
|
|
4645
|
+
EdgeLocation?: string | undefined;
|
|
4646
4646
|
/**
|
|
4647
4647
|
* <p>The resource type.</p>
|
|
4648
4648
|
* @public
|
|
4649
4649
|
*/
|
|
4650
|
-
ResourceType?: string;
|
|
4650
|
+
ResourceType?: string | undefined;
|
|
4651
4651
|
/**
|
|
4652
4652
|
* <p>The ID of the resource.</p>
|
|
4653
4653
|
* @public
|
|
4654
4654
|
*/
|
|
4655
|
-
ResourceId?: string;
|
|
4655
|
+
ResourceId?: string | undefined;
|
|
4656
4656
|
}
|
|
4657
4657
|
/**
|
|
4658
4658
|
* <p>Describes a network route.</p>
|
|
@@ -4663,27 +4663,27 @@ export interface NetworkRoute {
|
|
|
4663
4663
|
* <p>A unique identifier for the route, such as a CIDR block.</p>
|
|
4664
4664
|
* @public
|
|
4665
4665
|
*/
|
|
4666
|
-
DestinationCidrBlock?: string;
|
|
4666
|
+
DestinationCidrBlock?: string | undefined;
|
|
4667
4667
|
/**
|
|
4668
4668
|
* <p>The destinations.</p>
|
|
4669
4669
|
* @public
|
|
4670
4670
|
*/
|
|
4671
|
-
Destinations?: NetworkRouteDestination[];
|
|
4671
|
+
Destinations?: NetworkRouteDestination[] | undefined;
|
|
4672
4672
|
/**
|
|
4673
4673
|
* <p>The ID of the prefix list.</p>
|
|
4674
4674
|
* @public
|
|
4675
4675
|
*/
|
|
4676
|
-
PrefixListId?: string;
|
|
4676
|
+
PrefixListId?: string | undefined;
|
|
4677
4677
|
/**
|
|
4678
4678
|
* <p>The route state. The possible values are <code>active</code> and <code>blackhole</code>.</p>
|
|
4679
4679
|
* @public
|
|
4680
4680
|
*/
|
|
4681
|
-
State?: RouteState;
|
|
4681
|
+
State?: RouteState | undefined;
|
|
4682
4682
|
/**
|
|
4683
4683
|
* <p>The route type. The possible values are <code>propagated</code> and <code>static</code>.</p>
|
|
4684
4684
|
* @public
|
|
4685
4685
|
*/
|
|
4686
|
-
Type?: RouteType;
|
|
4686
|
+
Type?: RouteType | undefined;
|
|
4687
4687
|
}
|
|
4688
4688
|
/**
|
|
4689
4689
|
* @public
|
|
@@ -4706,27 +4706,27 @@ export interface GetNetworkRoutesResponse {
|
|
|
4706
4706
|
* <p>The ARN of the route table.</p>
|
|
4707
4707
|
* @public
|
|
4708
4708
|
*/
|
|
4709
|
-
RouteTableArn?: string;
|
|
4709
|
+
RouteTableArn?: string | undefined;
|
|
4710
4710
|
/**
|
|
4711
4711
|
* <p>Describes a core network segment edge.</p>
|
|
4712
4712
|
* @public
|
|
4713
4713
|
*/
|
|
4714
|
-
CoreNetworkSegmentEdge?: CoreNetworkSegmentEdgeIdentifier;
|
|
4714
|
+
CoreNetworkSegmentEdge?: CoreNetworkSegmentEdgeIdentifier | undefined;
|
|
4715
4715
|
/**
|
|
4716
4716
|
* <p>The route table type.</p>
|
|
4717
4717
|
* @public
|
|
4718
4718
|
*/
|
|
4719
|
-
RouteTableType?: RouteTableType;
|
|
4719
|
+
RouteTableType?: RouteTableType | undefined;
|
|
4720
4720
|
/**
|
|
4721
4721
|
* <p>The route table creation time.</p>
|
|
4722
4722
|
* @public
|
|
4723
4723
|
*/
|
|
4724
|
-
RouteTableTimestamp?: Date;
|
|
4724
|
+
RouteTableTimestamp?: Date | undefined;
|
|
4725
4725
|
/**
|
|
4726
4726
|
* <p>The network routes.</p>
|
|
4727
4727
|
* @public
|
|
4728
4728
|
*/
|
|
4729
|
-
NetworkRoutes?: NetworkRoute[];
|
|
4729
|
+
NetworkRoutes?: NetworkRoute[] | undefined;
|
|
4730
4730
|
}
|
|
4731
4731
|
/**
|
|
4732
4732
|
* @public
|
|
@@ -4741,22 +4741,22 @@ export interface GetNetworkTelemetryRequest {
|
|
|
4741
4741
|
* <p>The ID of a core network.</p>
|
|
4742
4742
|
* @public
|
|
4743
4743
|
*/
|
|
4744
|
-
CoreNetworkId?: string;
|
|
4744
|
+
CoreNetworkId?: string | undefined;
|
|
4745
4745
|
/**
|
|
4746
4746
|
* <p>The ARN of the gateway.</p>
|
|
4747
4747
|
* @public
|
|
4748
4748
|
*/
|
|
4749
|
-
RegisteredGatewayArn?: string;
|
|
4749
|
+
RegisteredGatewayArn?: string | undefined;
|
|
4750
4750
|
/**
|
|
4751
4751
|
* <p>The Amazon Web Services Region.</p>
|
|
4752
4752
|
* @public
|
|
4753
4753
|
*/
|
|
4754
|
-
AwsRegion?: string;
|
|
4754
|
+
AwsRegion?: string | undefined;
|
|
4755
4755
|
/**
|
|
4756
4756
|
* <p>The Amazon Web Services account ID.</p>
|
|
4757
4757
|
* @public
|
|
4758
4758
|
*/
|
|
4759
|
-
AccountId?: string;
|
|
4759
|
+
AccountId?: string | undefined;
|
|
4760
4760
|
/**
|
|
4761
4761
|
* <p>The resource type. The following are the supported resource types:</p>
|
|
4762
4762
|
* <ul>
|
|
@@ -4778,22 +4778,22 @@ export interface GetNetworkTelemetryRequest {
|
|
|
4778
4778
|
* </ul>
|
|
4779
4779
|
* @public
|
|
4780
4780
|
*/
|
|
4781
|
-
ResourceType?: string;
|
|
4781
|
+
ResourceType?: string | undefined;
|
|
4782
4782
|
/**
|
|
4783
4783
|
* <p>The ARN of the resource.</p>
|
|
4784
4784
|
* @public
|
|
4785
4785
|
*/
|
|
4786
|
-
ResourceArn?: string;
|
|
4786
|
+
ResourceArn?: string | undefined;
|
|
4787
4787
|
/**
|
|
4788
4788
|
* <p>The maximum number of results to return.</p>
|
|
4789
4789
|
* @public
|
|
4790
4790
|
*/
|
|
4791
|
-
MaxResults?: number;
|
|
4791
|
+
MaxResults?: number | undefined;
|
|
4792
4792
|
/**
|
|
4793
4793
|
* <p>The token for the next page of results.</p>
|
|
4794
4794
|
* @public
|
|
4795
4795
|
*/
|
|
4796
|
-
NextToken?: string;
|
|
4796
|
+
NextToken?: string | undefined;
|
|
4797
4797
|
}
|
|
4798
4798
|
/**
|
|
4799
4799
|
* <p>Describes the telemetry information for a resource.</p>
|
|
@@ -4804,47 +4804,47 @@ export interface NetworkTelemetry {
|
|
|
4804
4804
|
* <p>The ARN of the gateway.</p>
|
|
4805
4805
|
* @public
|
|
4806
4806
|
*/
|
|
4807
|
-
RegisteredGatewayArn?: string;
|
|
4807
|
+
RegisteredGatewayArn?: string | undefined;
|
|
4808
4808
|
/**
|
|
4809
4809
|
* <p>The ID of a core network.</p>
|
|
4810
4810
|
* @public
|
|
4811
4811
|
*/
|
|
4812
|
-
CoreNetworkId?: string;
|
|
4812
|
+
CoreNetworkId?: string | undefined;
|
|
4813
4813
|
/**
|
|
4814
4814
|
* <p>The Amazon Web Services Region.</p>
|
|
4815
4815
|
* @public
|
|
4816
4816
|
*/
|
|
4817
|
-
AwsRegion?: string;
|
|
4817
|
+
AwsRegion?: string | undefined;
|
|
4818
4818
|
/**
|
|
4819
4819
|
* <p>The Amazon Web Services account ID.</p>
|
|
4820
4820
|
* @public
|
|
4821
4821
|
*/
|
|
4822
|
-
AccountId?: string;
|
|
4822
|
+
AccountId?: string | undefined;
|
|
4823
4823
|
/**
|
|
4824
4824
|
* <p>The resource type.</p>
|
|
4825
4825
|
* @public
|
|
4826
4826
|
*/
|
|
4827
|
-
ResourceType?: string;
|
|
4827
|
+
ResourceType?: string | undefined;
|
|
4828
4828
|
/**
|
|
4829
4829
|
* <p>The ID of the resource.</p>
|
|
4830
4830
|
* @public
|
|
4831
4831
|
*/
|
|
4832
|
-
ResourceId?: string;
|
|
4832
|
+
ResourceId?: string | undefined;
|
|
4833
4833
|
/**
|
|
4834
4834
|
* <p>The ARN of the resource.</p>
|
|
4835
4835
|
* @public
|
|
4836
4836
|
*/
|
|
4837
|
-
ResourceArn?: string;
|
|
4837
|
+
ResourceArn?: string | undefined;
|
|
4838
4838
|
/**
|
|
4839
4839
|
* <p>The address.</p>
|
|
4840
4840
|
* @public
|
|
4841
4841
|
*/
|
|
4842
|
-
Address?: string;
|
|
4842
|
+
Address?: string | undefined;
|
|
4843
4843
|
/**
|
|
4844
4844
|
* <p>The connection health.</p>
|
|
4845
4845
|
* @public
|
|
4846
4846
|
*/
|
|
4847
|
-
Health?: ConnectionHealth;
|
|
4847
|
+
Health?: ConnectionHealth | undefined;
|
|
4848
4848
|
}
|
|
4849
4849
|
/**
|
|
4850
4850
|
* @public
|
|
@@ -4854,12 +4854,12 @@ export interface GetNetworkTelemetryResponse {
|
|
|
4854
4854
|
* <p>The network telemetry.</p>
|
|
4855
4855
|
* @public
|
|
4856
4856
|
*/
|
|
4857
|
-
NetworkTelemetry?: NetworkTelemetry[];
|
|
4857
|
+
NetworkTelemetry?: NetworkTelemetry[] | undefined;
|
|
4858
4858
|
/**
|
|
4859
4859
|
* <p>The token for the next page of results.</p>
|
|
4860
4860
|
* @public
|
|
4861
4861
|
*/
|
|
4862
|
-
NextToken?: string;
|
|
4862
|
+
NextToken?: string | undefined;
|
|
4863
4863
|
}
|
|
4864
4864
|
/**
|
|
4865
4865
|
* @public
|
|
@@ -4879,7 +4879,7 @@ export interface GetResourcePolicyResponse {
|
|
|
4879
4879
|
* <p>The resource policy document.</p>
|
|
4880
4880
|
* @public
|
|
4881
4881
|
*/
|
|
4882
|
-
PolicyDocument?: __LazyJsonString | string;
|
|
4882
|
+
PolicyDocument?: __LazyJsonString | string | undefined;
|
|
4883
4883
|
}
|
|
4884
4884
|
/**
|
|
4885
4885
|
* @public
|
|
@@ -4905,17 +4905,17 @@ export interface RouteAnalysisEndpointOptions {
|
|
|
4905
4905
|
* <p>The ARN of the transit gateway attachment.</p>
|
|
4906
4906
|
* @public
|
|
4907
4907
|
*/
|
|
4908
|
-
TransitGatewayAttachmentArn?: string;
|
|
4908
|
+
TransitGatewayAttachmentArn?: string | undefined;
|
|
4909
4909
|
/**
|
|
4910
4910
|
* <p>The ARN of the transit gateway.</p>
|
|
4911
4911
|
* @public
|
|
4912
4912
|
*/
|
|
4913
|
-
TransitGatewayArn?: string;
|
|
4913
|
+
TransitGatewayArn?: string | undefined;
|
|
4914
4914
|
/**
|
|
4915
4915
|
* <p>The IP address.</p>
|
|
4916
4916
|
* @public
|
|
4917
4917
|
*/
|
|
4918
|
-
IpAddress?: string;
|
|
4918
|
+
IpAddress?: string | undefined;
|
|
4919
4919
|
}
|
|
4920
4920
|
/**
|
|
4921
4921
|
* @public
|
|
@@ -4960,7 +4960,7 @@ export interface RouteAnalysisCompletion {
|
|
|
4960
4960
|
* reason code.</p>
|
|
4961
4961
|
* @public
|
|
4962
4962
|
*/
|
|
4963
|
-
ResultCode?: RouteAnalysisCompletionResultCode;
|
|
4963
|
+
ResultCode?: RouteAnalysisCompletionResultCode | undefined;
|
|
4964
4964
|
/**
|
|
4965
4965
|
* <p>The reason code. Available only if a connection is not found.</p>
|
|
4966
4966
|
* <ul>
|
|
@@ -5003,12 +5003,12 @@ export interface RouteAnalysisCompletion {
|
|
|
5003
5003
|
* </ul>
|
|
5004
5004
|
* @public
|
|
5005
5005
|
*/
|
|
5006
|
-
ReasonCode?: RouteAnalysisCompletionReasonCode;
|
|
5006
|
+
ReasonCode?: RouteAnalysisCompletionReasonCode | undefined;
|
|
5007
5007
|
/**
|
|
5008
5008
|
* <p>Additional information about the path. Available only if a connection is not found.</p>
|
|
5009
5009
|
* @public
|
|
5010
5010
|
*/
|
|
5011
|
-
ReasonContext?: Record<string, string
|
|
5011
|
+
ReasonContext?: Record<string, string> | undefined;
|
|
5012
5012
|
}
|
|
5013
5013
|
/**
|
|
5014
5014
|
* <p>Describes a network resource.</p>
|
|
@@ -5019,32 +5019,32 @@ export interface NetworkResourceSummary {
|
|
|
5019
5019
|
* <p>The ARN of the gateway.</p>
|
|
5020
5020
|
* @public
|
|
5021
5021
|
*/
|
|
5022
|
-
RegisteredGatewayArn?: string;
|
|
5022
|
+
RegisteredGatewayArn?: string | undefined;
|
|
5023
5023
|
/**
|
|
5024
5024
|
* <p>The ARN of the resource.</p>
|
|
5025
5025
|
* @public
|
|
5026
5026
|
*/
|
|
5027
|
-
ResourceArn?: string;
|
|
5027
|
+
ResourceArn?: string | undefined;
|
|
5028
5028
|
/**
|
|
5029
5029
|
* <p>The resource type.</p>
|
|
5030
5030
|
* @public
|
|
5031
5031
|
*/
|
|
5032
|
-
ResourceType?: string;
|
|
5032
|
+
ResourceType?: string | undefined;
|
|
5033
5033
|
/**
|
|
5034
5034
|
* <p>Information about the resource, in JSON format. Network Manager gets this information by describing the resource using its Describe API call.</p>
|
|
5035
5035
|
* @public
|
|
5036
5036
|
*/
|
|
5037
|
-
Definition?: string;
|
|
5037
|
+
Definition?: string | undefined;
|
|
5038
5038
|
/**
|
|
5039
5039
|
* <p>The value for the Name tag.</p>
|
|
5040
5040
|
* @public
|
|
5041
5041
|
*/
|
|
5042
|
-
NameTag?: string;
|
|
5042
|
+
NameTag?: string | undefined;
|
|
5043
5043
|
/**
|
|
5044
5044
|
* <p>Indicates whether this is a middlebox appliance.</p>
|
|
5045
5045
|
* @public
|
|
5046
5046
|
*/
|
|
5047
|
-
IsMiddlebox?: boolean;
|
|
5047
|
+
IsMiddlebox?: boolean | undefined;
|
|
5048
5048
|
}
|
|
5049
5049
|
/**
|
|
5050
5050
|
* <p>Describes a path component.</p>
|
|
@@ -5055,17 +5055,17 @@ export interface PathComponent {
|
|
|
5055
5055
|
* <p>The sequence number in the path. The destination is 0.</p>
|
|
5056
5056
|
* @public
|
|
5057
5057
|
*/
|
|
5058
|
-
Sequence?: number;
|
|
5058
|
+
Sequence?: number | undefined;
|
|
5059
5059
|
/**
|
|
5060
5060
|
* <p>The resource.</p>
|
|
5061
5061
|
* @public
|
|
5062
5062
|
*/
|
|
5063
|
-
Resource?: NetworkResourceSummary;
|
|
5063
|
+
Resource?: NetworkResourceSummary | undefined;
|
|
5064
5064
|
/**
|
|
5065
5065
|
* <p>The destination CIDR block in the route table.</p>
|
|
5066
5066
|
* @public
|
|
5067
5067
|
*/
|
|
5068
|
-
DestinationCidrBlock?: string;
|
|
5068
|
+
DestinationCidrBlock?: string | undefined;
|
|
5069
5069
|
}
|
|
5070
5070
|
/**
|
|
5071
5071
|
* <p>Describes a route analysis path.</p>
|
|
@@ -5076,12 +5076,12 @@ export interface RouteAnalysisPath {
|
|
|
5076
5076
|
* <p>The status of the analysis at completion.</p>
|
|
5077
5077
|
* @public
|
|
5078
5078
|
*/
|
|
5079
|
-
CompletionStatus?: RouteAnalysisCompletion;
|
|
5079
|
+
CompletionStatus?: RouteAnalysisCompletion | undefined;
|
|
5080
5080
|
/**
|
|
5081
5081
|
* <p>The route analysis path.</p>
|
|
5082
5082
|
* @public
|
|
5083
5083
|
*/
|
|
5084
|
-
Path?: PathComponent[];
|
|
5084
|
+
Path?: PathComponent[] | undefined;
|
|
5085
5085
|
}
|
|
5086
5086
|
/**
|
|
5087
5087
|
* @public
|
|
@@ -5105,58 +5105,58 @@ export interface RouteAnalysis {
|
|
|
5105
5105
|
* <p>The ID of the global network.</p>
|
|
5106
5106
|
* @public
|
|
5107
5107
|
*/
|
|
5108
|
-
GlobalNetworkId?: string;
|
|
5108
|
+
GlobalNetworkId?: string | undefined;
|
|
5109
5109
|
/**
|
|
5110
5110
|
* <p>The ID of the AWS account that created the route analysis.</p>
|
|
5111
5111
|
* @public
|
|
5112
5112
|
*/
|
|
5113
|
-
OwnerAccountId?: string;
|
|
5113
|
+
OwnerAccountId?: string | undefined;
|
|
5114
5114
|
/**
|
|
5115
5115
|
* <p>The ID of the route analysis.</p>
|
|
5116
5116
|
* @public
|
|
5117
5117
|
*/
|
|
5118
|
-
RouteAnalysisId?: string;
|
|
5118
|
+
RouteAnalysisId?: string | undefined;
|
|
5119
5119
|
/**
|
|
5120
5120
|
* <p>The time that the analysis started.</p>
|
|
5121
5121
|
* @public
|
|
5122
5122
|
*/
|
|
5123
|
-
StartTimestamp?: Date;
|
|
5123
|
+
StartTimestamp?: Date | undefined;
|
|
5124
5124
|
/**
|
|
5125
5125
|
* <p>The status of the route analysis.</p>
|
|
5126
5126
|
* @public
|
|
5127
5127
|
*/
|
|
5128
|
-
Status?: RouteAnalysisStatus;
|
|
5128
|
+
Status?: RouteAnalysisStatus | undefined;
|
|
5129
5129
|
/**
|
|
5130
5130
|
* <p>The source.</p>
|
|
5131
5131
|
* @public
|
|
5132
5132
|
*/
|
|
5133
|
-
Source?: RouteAnalysisEndpointOptions;
|
|
5133
|
+
Source?: RouteAnalysisEndpointOptions | undefined;
|
|
5134
5134
|
/**
|
|
5135
5135
|
* <p>The destination.</p>
|
|
5136
5136
|
* @public
|
|
5137
5137
|
*/
|
|
5138
|
-
Destination?: RouteAnalysisEndpointOptions;
|
|
5138
|
+
Destination?: RouteAnalysisEndpointOptions | undefined;
|
|
5139
5139
|
/**
|
|
5140
5140
|
* <p>Indicates whether to analyze the return path. The return path is not analyzed if the forward path
|
|
5141
5141
|
* analysis does not succeed.</p>
|
|
5142
5142
|
* @public
|
|
5143
5143
|
*/
|
|
5144
|
-
IncludeReturnPath?: boolean;
|
|
5144
|
+
IncludeReturnPath?: boolean | undefined;
|
|
5145
5145
|
/**
|
|
5146
5146
|
* <p>Indicates whether to include the location of middlebox appliances in the route analysis.</p>
|
|
5147
5147
|
* @public
|
|
5148
5148
|
*/
|
|
5149
|
-
UseMiddleboxes?: boolean;
|
|
5149
|
+
UseMiddleboxes?: boolean | undefined;
|
|
5150
5150
|
/**
|
|
5151
5151
|
* <p>The forward path.</p>
|
|
5152
5152
|
* @public
|
|
5153
5153
|
*/
|
|
5154
|
-
ForwardPath?: RouteAnalysisPath;
|
|
5154
|
+
ForwardPath?: RouteAnalysisPath | undefined;
|
|
5155
5155
|
/**
|
|
5156
5156
|
* <p>The return path.</p>
|
|
5157
5157
|
* @public
|
|
5158
5158
|
*/
|
|
5159
|
-
ReturnPath?: RouteAnalysisPath;
|
|
5159
|
+
ReturnPath?: RouteAnalysisPath | undefined;
|
|
5160
5160
|
}
|
|
5161
5161
|
/**
|
|
5162
5162
|
* @public
|
|
@@ -5166,7 +5166,7 @@ export interface GetRouteAnalysisResponse {
|
|
|
5166
5166
|
* <p>The route analysis.</p>
|
|
5167
5167
|
* @public
|
|
5168
5168
|
*/
|
|
5169
|
-
RouteAnalysis?: RouteAnalysis;
|
|
5169
|
+
RouteAnalysis?: RouteAnalysis | undefined;
|
|
5170
5170
|
}
|
|
5171
5171
|
/**
|
|
5172
5172
|
* @public
|
|
@@ -5181,17 +5181,17 @@ export interface GetSitesRequest {
|
|
|
5181
5181
|
* <p>One or more site IDs. The maximum is 10.</p>
|
|
5182
5182
|
* @public
|
|
5183
5183
|
*/
|
|
5184
|
-
SiteIds?: string[];
|
|
5184
|
+
SiteIds?: string[] | undefined;
|
|
5185
5185
|
/**
|
|
5186
5186
|
* <p>The maximum number of results to return.</p>
|
|
5187
5187
|
* @public
|
|
5188
5188
|
*/
|
|
5189
|
-
MaxResults?: number;
|
|
5189
|
+
MaxResults?: number | undefined;
|
|
5190
5190
|
/**
|
|
5191
5191
|
* <p>The token for the next page of results.</p>
|
|
5192
5192
|
* @public
|
|
5193
5193
|
*/
|
|
5194
|
-
NextToken?: string;
|
|
5194
|
+
NextToken?: string | undefined;
|
|
5195
5195
|
}
|
|
5196
5196
|
/**
|
|
5197
5197
|
* @public
|
|
@@ -5201,12 +5201,12 @@ export interface GetSitesResponse {
|
|
|
5201
5201
|
* <p>The sites.</p>
|
|
5202
5202
|
* @public
|
|
5203
5203
|
*/
|
|
5204
|
-
Sites?: Site[];
|
|
5204
|
+
Sites?: Site[] | undefined;
|
|
5205
5205
|
/**
|
|
5206
5206
|
* <p>The token for the next page of results.</p>
|
|
5207
5207
|
* @public
|
|
5208
5208
|
*/
|
|
5209
|
-
NextToken?: string;
|
|
5209
|
+
NextToken?: string | undefined;
|
|
5210
5210
|
}
|
|
5211
5211
|
/**
|
|
5212
5212
|
* @public
|
|
@@ -5226,7 +5226,7 @@ export interface GetSiteToSiteVpnAttachmentResponse {
|
|
|
5226
5226
|
* <p>Describes the site-to-site attachment.</p>
|
|
5227
5227
|
* @public
|
|
5228
5228
|
*/
|
|
5229
|
-
SiteToSiteVpnAttachment?: SiteToSiteVpnAttachment;
|
|
5229
|
+
SiteToSiteVpnAttachment?: SiteToSiteVpnAttachment | undefined;
|
|
5230
5230
|
}
|
|
5231
5231
|
/**
|
|
5232
5232
|
* @public
|
|
@@ -5241,17 +5241,17 @@ export interface GetTransitGatewayConnectPeerAssociationsRequest {
|
|
|
5241
5241
|
* <p>One or more transit gateway Connect peer Amazon Resource Names (ARNs).</p>
|
|
5242
5242
|
* @public
|
|
5243
5243
|
*/
|
|
5244
|
-
TransitGatewayConnectPeerArns?: string[];
|
|
5244
|
+
TransitGatewayConnectPeerArns?: string[] | undefined;
|
|
5245
5245
|
/**
|
|
5246
5246
|
* <p>The maximum number of results to return.</p>
|
|
5247
5247
|
* @public
|
|
5248
5248
|
*/
|
|
5249
|
-
MaxResults?: number;
|
|
5249
|
+
MaxResults?: number | undefined;
|
|
5250
5250
|
/**
|
|
5251
5251
|
* <p>The token for the next page of results.</p>
|
|
5252
5252
|
* @public
|
|
5253
5253
|
*/
|
|
5254
|
-
NextToken?: string;
|
|
5254
|
+
NextToken?: string | undefined;
|
|
5255
5255
|
}
|
|
5256
5256
|
/**
|
|
5257
5257
|
* @public
|
|
@@ -5261,12 +5261,12 @@ export interface GetTransitGatewayConnectPeerAssociationsResponse {
|
|
|
5261
5261
|
* <p>Information about the transit gateway Connect peer associations.</p>
|
|
5262
5262
|
* @public
|
|
5263
5263
|
*/
|
|
5264
|
-
TransitGatewayConnectPeerAssociations?: TransitGatewayConnectPeerAssociation[];
|
|
5264
|
+
TransitGatewayConnectPeerAssociations?: TransitGatewayConnectPeerAssociation[] | undefined;
|
|
5265
5265
|
/**
|
|
5266
5266
|
* <p>The token to use for the next page of results.</p>
|
|
5267
5267
|
* @public
|
|
5268
5268
|
*/
|
|
5269
|
-
NextToken?: string;
|
|
5269
|
+
NextToken?: string | undefined;
|
|
5270
5270
|
}
|
|
5271
5271
|
/**
|
|
5272
5272
|
* @public
|
|
@@ -5286,7 +5286,7 @@ export interface GetTransitGatewayPeeringResponse {
|
|
|
5286
5286
|
* <p>Returns information about a transit gateway peering. </p>
|
|
5287
5287
|
* @public
|
|
5288
5288
|
*/
|
|
5289
|
-
TransitGatewayPeering?: TransitGatewayPeering;
|
|
5289
|
+
TransitGatewayPeering?: TransitGatewayPeering | undefined;
|
|
5290
5290
|
}
|
|
5291
5291
|
/**
|
|
5292
5292
|
* @public
|
|
@@ -5302,17 +5302,17 @@ export interface GetTransitGatewayRegistrationsRequest {
|
|
|
5302
5302
|
* 10.</p>
|
|
5303
5303
|
* @public
|
|
5304
5304
|
*/
|
|
5305
|
-
TransitGatewayArns?: string[];
|
|
5305
|
+
TransitGatewayArns?: string[] | undefined;
|
|
5306
5306
|
/**
|
|
5307
5307
|
* <p>The maximum number of results to return.</p>
|
|
5308
5308
|
* @public
|
|
5309
5309
|
*/
|
|
5310
|
-
MaxResults?: number;
|
|
5310
|
+
MaxResults?: number | undefined;
|
|
5311
5311
|
/**
|
|
5312
5312
|
* <p>The token for the next page of results.</p>
|
|
5313
5313
|
* @public
|
|
5314
5314
|
*/
|
|
5315
|
-
NextToken?: string;
|
|
5315
|
+
NextToken?: string | undefined;
|
|
5316
5316
|
}
|
|
5317
5317
|
/**
|
|
5318
5318
|
* @public
|
|
@@ -5322,12 +5322,12 @@ export interface GetTransitGatewayRegistrationsResponse {
|
|
|
5322
5322
|
* <p>The transit gateway registrations.</p>
|
|
5323
5323
|
* @public
|
|
5324
5324
|
*/
|
|
5325
|
-
TransitGatewayRegistrations?: TransitGatewayRegistration[];
|
|
5325
|
+
TransitGatewayRegistrations?: TransitGatewayRegistration[] | undefined;
|
|
5326
5326
|
/**
|
|
5327
5327
|
* <p>The token for the next page of results.</p>
|
|
5328
5328
|
* @public
|
|
5329
5329
|
*/
|
|
5330
|
-
NextToken?: string;
|
|
5330
|
+
NextToken?: string | undefined;
|
|
5331
5331
|
}
|
|
5332
5332
|
/**
|
|
5333
5333
|
* @public
|
|
@@ -5347,7 +5347,7 @@ export interface GetTransitGatewayRouteTableAttachmentResponse {
|
|
|
5347
5347
|
* <p>Returns information about the transit gateway route table attachment.</p>
|
|
5348
5348
|
* @public
|
|
5349
5349
|
*/
|
|
5350
|
-
TransitGatewayRouteTableAttachment?: TransitGatewayRouteTableAttachment;
|
|
5350
|
+
TransitGatewayRouteTableAttachment?: TransitGatewayRouteTableAttachment | undefined;
|
|
5351
5351
|
}
|
|
5352
5352
|
/**
|
|
5353
5353
|
* @public
|
|
@@ -5367,7 +5367,7 @@ export interface GetVpcAttachmentResponse {
|
|
|
5367
5367
|
* <p>Returns details about a VPC attachment.</p>
|
|
5368
5368
|
* @public
|
|
5369
5369
|
*/
|
|
5370
|
-
VpcAttachment?: VpcAttachment;
|
|
5370
|
+
VpcAttachment?: VpcAttachment | undefined;
|
|
5371
5371
|
}
|
|
5372
5372
|
/**
|
|
5373
5373
|
* @public
|
|
@@ -5377,32 +5377,32 @@ export interface ListAttachmentsRequest {
|
|
|
5377
5377
|
* <p>The ID of a core network.</p>
|
|
5378
5378
|
* @public
|
|
5379
5379
|
*/
|
|
5380
|
-
CoreNetworkId?: string;
|
|
5380
|
+
CoreNetworkId?: string | undefined;
|
|
5381
5381
|
/**
|
|
5382
5382
|
* <p>The type of attachment.</p>
|
|
5383
5383
|
* @public
|
|
5384
5384
|
*/
|
|
5385
|
-
AttachmentType?: AttachmentType;
|
|
5385
|
+
AttachmentType?: AttachmentType | undefined;
|
|
5386
5386
|
/**
|
|
5387
5387
|
* <p>The Region where the edge is located.</p>
|
|
5388
5388
|
* @public
|
|
5389
5389
|
*/
|
|
5390
|
-
EdgeLocation?: string;
|
|
5390
|
+
EdgeLocation?: string | undefined;
|
|
5391
5391
|
/**
|
|
5392
5392
|
* <p>The state of the attachment.</p>
|
|
5393
5393
|
* @public
|
|
5394
5394
|
*/
|
|
5395
|
-
State?: AttachmentState;
|
|
5395
|
+
State?: AttachmentState | undefined;
|
|
5396
5396
|
/**
|
|
5397
5397
|
* <p>The maximum number of results to return.</p>
|
|
5398
5398
|
* @public
|
|
5399
5399
|
*/
|
|
5400
|
-
MaxResults?: number;
|
|
5400
|
+
MaxResults?: number | undefined;
|
|
5401
5401
|
/**
|
|
5402
5402
|
* <p>The token for the next page of results.</p>
|
|
5403
5403
|
* @public
|
|
5404
5404
|
*/
|
|
5405
|
-
NextToken?: string;
|
|
5405
|
+
NextToken?: string | undefined;
|
|
5406
5406
|
}
|
|
5407
5407
|
/**
|
|
5408
5408
|
* @public
|
|
@@ -5412,12 +5412,12 @@ export interface ListAttachmentsResponse {
|
|
|
5412
5412
|
* <p>Describes the list of attachments.</p>
|
|
5413
5413
|
* @public
|
|
5414
5414
|
*/
|
|
5415
|
-
Attachments?: Attachment[];
|
|
5415
|
+
Attachments?: Attachment[] | undefined;
|
|
5416
5416
|
/**
|
|
5417
5417
|
* <p>The token for the next page of results.</p>
|
|
5418
5418
|
* @public
|
|
5419
5419
|
*/
|
|
5420
|
-
NextToken?: string;
|
|
5420
|
+
NextToken?: string | undefined;
|
|
5421
5421
|
}
|
|
5422
5422
|
/**
|
|
5423
5423
|
* @public
|
|
@@ -5427,22 +5427,22 @@ export interface ListConnectPeersRequest {
|
|
|
5427
5427
|
* <p>The ID of a core network.</p>
|
|
5428
5428
|
* @public
|
|
5429
5429
|
*/
|
|
5430
|
-
CoreNetworkId?: string;
|
|
5430
|
+
CoreNetworkId?: string | undefined;
|
|
5431
5431
|
/**
|
|
5432
5432
|
* <p>The ID of the attachment.</p>
|
|
5433
5433
|
* @public
|
|
5434
5434
|
*/
|
|
5435
|
-
ConnectAttachmentId?: string;
|
|
5435
|
+
ConnectAttachmentId?: string | undefined;
|
|
5436
5436
|
/**
|
|
5437
5437
|
* <p>The maximum number of results to return.</p>
|
|
5438
5438
|
* @public
|
|
5439
5439
|
*/
|
|
5440
|
-
MaxResults?: number;
|
|
5440
|
+
MaxResults?: number | undefined;
|
|
5441
5441
|
/**
|
|
5442
5442
|
* <p>The token for the next page of results.</p>
|
|
5443
5443
|
* @public
|
|
5444
5444
|
*/
|
|
5445
|
-
NextToken?: string;
|
|
5445
|
+
NextToken?: string | undefined;
|
|
5446
5446
|
}
|
|
5447
5447
|
/**
|
|
5448
5448
|
* @public
|
|
@@ -5452,12 +5452,12 @@ export interface ListConnectPeersResponse {
|
|
|
5452
5452
|
* <p>Describes the Connect peers.</p>
|
|
5453
5453
|
* @public
|
|
5454
5454
|
*/
|
|
5455
|
-
ConnectPeers?: ConnectPeerSummary[];
|
|
5455
|
+
ConnectPeers?: ConnectPeerSummary[] | undefined;
|
|
5456
5456
|
/**
|
|
5457
5457
|
* <p>The token for the next page of results.</p>
|
|
5458
5458
|
* @public
|
|
5459
5459
|
*/
|
|
5460
|
-
NextToken?: string;
|
|
5460
|
+
NextToken?: string | undefined;
|
|
5461
5461
|
}
|
|
5462
5462
|
/**
|
|
5463
5463
|
* @public
|
|
@@ -5472,12 +5472,12 @@ export interface ListCoreNetworkPolicyVersionsRequest {
|
|
|
5472
5472
|
* <p>The maximum number of results to return.</p>
|
|
5473
5473
|
* @public
|
|
5474
5474
|
*/
|
|
5475
|
-
MaxResults?: number;
|
|
5475
|
+
MaxResults?: number | undefined;
|
|
5476
5476
|
/**
|
|
5477
5477
|
* <p>The token for the next page of results.</p>
|
|
5478
5478
|
* @public
|
|
5479
5479
|
*/
|
|
5480
|
-
NextToken?: string;
|
|
5480
|
+
NextToken?: string | undefined;
|
|
5481
5481
|
}
|
|
5482
5482
|
/**
|
|
5483
5483
|
* @public
|
|
@@ -5487,12 +5487,12 @@ export interface ListCoreNetworkPolicyVersionsResponse {
|
|
|
5487
5487
|
* <p>Describes core network policy versions.</p>
|
|
5488
5488
|
* @public
|
|
5489
5489
|
*/
|
|
5490
|
-
CoreNetworkPolicyVersions?: CoreNetworkPolicyVersion[];
|
|
5490
|
+
CoreNetworkPolicyVersions?: CoreNetworkPolicyVersion[] | undefined;
|
|
5491
5491
|
/**
|
|
5492
5492
|
* <p>The token for the next page of results.</p>
|
|
5493
5493
|
* @public
|
|
5494
5494
|
*/
|
|
5495
|
-
NextToken?: string;
|
|
5495
|
+
NextToken?: string | undefined;
|
|
5496
5496
|
}
|
|
5497
5497
|
/**
|
|
5498
5498
|
* @public
|
|
@@ -5502,12 +5502,12 @@ export interface ListCoreNetworksRequest {
|
|
|
5502
5502
|
* <p>The maximum number of results to return.</p>
|
|
5503
5503
|
* @public
|
|
5504
5504
|
*/
|
|
5505
|
-
MaxResults?: number;
|
|
5505
|
+
MaxResults?: number | undefined;
|
|
5506
5506
|
/**
|
|
5507
5507
|
* <p>The token for the next page of results.</p>
|
|
5508
5508
|
* @public
|
|
5509
5509
|
*/
|
|
5510
|
-
NextToken?: string;
|
|
5510
|
+
NextToken?: string | undefined;
|
|
5511
5511
|
}
|
|
5512
5512
|
/**
|
|
5513
5513
|
* @public
|
|
@@ -5517,12 +5517,12 @@ export interface ListCoreNetworksResponse {
|
|
|
5517
5517
|
* <p>Describes the list of core networks.</p>
|
|
5518
5518
|
* @public
|
|
5519
5519
|
*/
|
|
5520
|
-
CoreNetworks?: CoreNetworkSummary[];
|
|
5520
|
+
CoreNetworks?: CoreNetworkSummary[] | undefined;
|
|
5521
5521
|
/**
|
|
5522
5522
|
* <p>The token for the next page of results.</p>
|
|
5523
5523
|
* @public
|
|
5524
5524
|
*/
|
|
5525
|
-
NextToken?: string;
|
|
5525
|
+
NextToken?: string | undefined;
|
|
5526
5526
|
}
|
|
5527
5527
|
/**
|
|
5528
5528
|
* @public
|
|
@@ -5532,12 +5532,12 @@ export interface ListOrganizationServiceAccessStatusRequest {
|
|
|
5532
5532
|
* <p>The maximum number of results to return.</p>
|
|
5533
5533
|
* @public
|
|
5534
5534
|
*/
|
|
5535
|
-
MaxResults?: number;
|
|
5535
|
+
MaxResults?: number | undefined;
|
|
5536
5536
|
/**
|
|
5537
5537
|
* <p>The token for the next page of results.</p>
|
|
5538
5538
|
* @public
|
|
5539
5539
|
*/
|
|
5540
|
-
NextToken?: string;
|
|
5540
|
+
NextToken?: string | undefined;
|
|
5541
5541
|
}
|
|
5542
5542
|
/**
|
|
5543
5543
|
* <p>The status of an Amazon Web Services Organization and the accounts within that organization.</p>
|
|
@@ -5548,22 +5548,22 @@ export interface OrganizationStatus {
|
|
|
5548
5548
|
* <p>The ID of an Amazon Web Services Organization.</p>
|
|
5549
5549
|
* @public
|
|
5550
5550
|
*/
|
|
5551
|
-
OrganizationId?: string;
|
|
5551
|
+
OrganizationId?: string | undefined;
|
|
5552
5552
|
/**
|
|
5553
5553
|
* <p>The status of the organization's AWS service access. This will be <code>ENABLED</code> or <code>DISABLED</code>.</p>
|
|
5554
5554
|
* @public
|
|
5555
5555
|
*/
|
|
5556
|
-
OrganizationAwsServiceAccessStatus?: string;
|
|
5556
|
+
OrganizationAwsServiceAccessStatus?: string | undefined;
|
|
5557
5557
|
/**
|
|
5558
5558
|
* <p>The status of the SLR deployment for the account. This will be either <code>SUCCEEDED</code> or <code>IN_PROGRESS</code>.</p>
|
|
5559
5559
|
* @public
|
|
5560
5560
|
*/
|
|
5561
|
-
SLRDeploymentStatus?: string;
|
|
5561
|
+
SLRDeploymentStatus?: string | undefined;
|
|
5562
5562
|
/**
|
|
5563
5563
|
* <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>
|
|
5564
5564
|
* @public
|
|
5565
5565
|
*/
|
|
5566
|
-
AccountStatusList?: AccountStatus[];
|
|
5566
|
+
AccountStatusList?: AccountStatus[] | undefined;
|
|
5567
5567
|
}
|
|
5568
5568
|
/**
|
|
5569
5569
|
* @public
|
|
@@ -5573,12 +5573,12 @@ export interface ListOrganizationServiceAccessStatusResponse {
|
|
|
5573
5573
|
* <p>Displays the status of an Amazon Web Services Organization.</p>
|
|
5574
5574
|
* @public
|
|
5575
5575
|
*/
|
|
5576
|
-
OrganizationStatus?: OrganizationStatus;
|
|
5576
|
+
OrganizationStatus?: OrganizationStatus | undefined;
|
|
5577
5577
|
/**
|
|
5578
5578
|
* <p>The token for the next page of results.</p>
|
|
5579
5579
|
* @public
|
|
5580
5580
|
*/
|
|
5581
|
-
NextToken?: string;
|
|
5581
|
+
NextToken?: string | undefined;
|
|
5582
5582
|
}
|
|
5583
5583
|
/**
|
|
5584
5584
|
* @public
|
|
@@ -5588,32 +5588,32 @@ export interface ListPeeringsRequest {
|
|
|
5588
5588
|
* <p>The ID of a core network.</p>
|
|
5589
5589
|
* @public
|
|
5590
5590
|
*/
|
|
5591
|
-
CoreNetworkId?: string;
|
|
5591
|
+
CoreNetworkId?: string | undefined;
|
|
5592
5592
|
/**
|
|
5593
5593
|
* <p>Returns a list of a peering requests.</p>
|
|
5594
5594
|
* @public
|
|
5595
5595
|
*/
|
|
5596
|
-
PeeringType?: PeeringType;
|
|
5596
|
+
PeeringType?: PeeringType | undefined;
|
|
5597
5597
|
/**
|
|
5598
5598
|
* <p>Returns a list edge locations for the </p>
|
|
5599
5599
|
* @public
|
|
5600
5600
|
*/
|
|
5601
|
-
EdgeLocation?: string;
|
|
5601
|
+
EdgeLocation?: string | undefined;
|
|
5602
5602
|
/**
|
|
5603
5603
|
* <p>Returns a list of the peering request states.</p>
|
|
5604
5604
|
* @public
|
|
5605
5605
|
*/
|
|
5606
|
-
State?: PeeringState;
|
|
5606
|
+
State?: PeeringState | undefined;
|
|
5607
5607
|
/**
|
|
5608
5608
|
* <p>The maximum number of results to return.</p>
|
|
5609
5609
|
* @public
|
|
5610
5610
|
*/
|
|
5611
|
-
MaxResults?: number;
|
|
5611
|
+
MaxResults?: number | undefined;
|
|
5612
5612
|
/**
|
|
5613
5613
|
* <p>The token for the next page of results.</p>
|
|
5614
5614
|
* @public
|
|
5615
5615
|
*/
|
|
5616
|
-
NextToken?: string;
|
|
5616
|
+
NextToken?: string | undefined;
|
|
5617
5617
|
}
|
|
5618
5618
|
/**
|
|
5619
5619
|
* @public
|
|
@@ -5623,12 +5623,12 @@ export interface ListPeeringsResponse {
|
|
|
5623
5623
|
* <p>Lists the transit gateway peerings for the <code>ListPeerings</code> request.</p>
|
|
5624
5624
|
* @public
|
|
5625
5625
|
*/
|
|
5626
|
-
Peerings?: Peering[];
|
|
5626
|
+
Peerings?: Peering[] | undefined;
|
|
5627
5627
|
/**
|
|
5628
5628
|
* <p>The token for the next page of results.</p>
|
|
5629
5629
|
* @public
|
|
5630
5630
|
*/
|
|
5631
|
-
NextToken?: string;
|
|
5631
|
+
NextToken?: string | undefined;
|
|
5632
5632
|
}
|
|
5633
5633
|
/**
|
|
5634
5634
|
* @public
|
|
@@ -5648,7 +5648,7 @@ export interface ListTagsForResourceResponse {
|
|
|
5648
5648
|
* <p>The list of tags.</p>
|
|
5649
5649
|
* @public
|
|
5650
5650
|
*/
|
|
5651
|
-
TagList?: Tag[];
|
|
5651
|
+
TagList?: Tag[] | undefined;
|
|
5652
5652
|
}
|
|
5653
5653
|
/**
|
|
5654
5654
|
* @public
|
|
@@ -5668,17 +5668,17 @@ export interface PutCoreNetworkPolicyRequest {
|
|
|
5668
5668
|
* <p>a core network policy description.</p>
|
|
5669
5669
|
* @public
|
|
5670
5670
|
*/
|
|
5671
|
-
Description?: string;
|
|
5671
|
+
Description?: string | undefined;
|
|
5672
5672
|
/**
|
|
5673
5673
|
* <p>The ID of a core network policy. </p>
|
|
5674
5674
|
* @public
|
|
5675
5675
|
*/
|
|
5676
|
-
LatestVersionId?: number;
|
|
5676
|
+
LatestVersionId?: number | undefined;
|
|
5677
5677
|
/**
|
|
5678
5678
|
* <p>The client token associated with the request.</p>
|
|
5679
5679
|
* @public
|
|
5680
5680
|
*/
|
|
5681
|
-
ClientToken?: string;
|
|
5681
|
+
ClientToken?: string | undefined;
|
|
5682
5682
|
}
|
|
5683
5683
|
/**
|
|
5684
5684
|
* @public
|
|
@@ -5688,7 +5688,7 @@ export interface PutCoreNetworkPolicyResponse {
|
|
|
5688
5688
|
* <p>Describes the changed core network policy.</p>
|
|
5689
5689
|
* @public
|
|
5690
5690
|
*/
|
|
5691
|
-
CoreNetworkPolicy?: CoreNetworkPolicy;
|
|
5691
|
+
CoreNetworkPolicy?: CoreNetworkPolicy | undefined;
|
|
5692
5692
|
}
|
|
5693
5693
|
/**
|
|
5694
5694
|
* @public
|
|
@@ -5733,7 +5733,7 @@ export interface RegisterTransitGatewayResponse {
|
|
|
5733
5733
|
* <p>Information about the transit gateway registration.</p>
|
|
5734
5734
|
* @public
|
|
5735
5735
|
*/
|
|
5736
|
-
TransitGatewayRegistration?: TransitGatewayRegistration;
|
|
5736
|
+
TransitGatewayRegistration?: TransitGatewayRegistration | undefined;
|
|
5737
5737
|
}
|
|
5738
5738
|
/**
|
|
5739
5739
|
* @public
|
|
@@ -5753,7 +5753,7 @@ export interface RejectAttachmentResponse {
|
|
|
5753
5753
|
* <p>Describes the rejected attachment request.</p>
|
|
5754
5754
|
* @public
|
|
5755
5755
|
*/
|
|
5756
|
-
Attachment?: Attachment;
|
|
5756
|
+
Attachment?: Attachment | undefined;
|
|
5757
5757
|
}
|
|
5758
5758
|
/**
|
|
5759
5759
|
* @public
|
|
@@ -5778,7 +5778,7 @@ export interface RestoreCoreNetworkPolicyVersionResponse {
|
|
|
5778
5778
|
* <p>Describes the restored core network policy.</p>
|
|
5779
5779
|
* @public
|
|
5780
5780
|
*/
|
|
5781
|
-
CoreNetworkPolicy?: CoreNetworkPolicy;
|
|
5781
|
+
CoreNetworkPolicy?: CoreNetworkPolicy | undefined;
|
|
5782
5782
|
}
|
|
5783
5783
|
/**
|
|
5784
5784
|
* @public
|
|
@@ -5798,7 +5798,7 @@ export interface StartOrganizationServiceAccessUpdateResponse {
|
|
|
5798
5798
|
* <p>The status of the service access update request for an Amazon Web Services Organization.</p>
|
|
5799
5799
|
* @public
|
|
5800
5800
|
*/
|
|
5801
|
-
OrganizationStatus?: OrganizationStatus;
|
|
5801
|
+
OrganizationStatus?: OrganizationStatus | undefined;
|
|
5802
5802
|
}
|
|
5803
5803
|
/**
|
|
5804
5804
|
* <p>Describes a source or a destination.</p>
|
|
@@ -5809,12 +5809,12 @@ export interface RouteAnalysisEndpointOptionsSpecification {
|
|
|
5809
5809
|
* <p>The ARN of the transit gateway attachment.</p>
|
|
5810
5810
|
* @public
|
|
5811
5811
|
*/
|
|
5812
|
-
TransitGatewayAttachmentArn?: string;
|
|
5812
|
+
TransitGatewayAttachmentArn?: string | undefined;
|
|
5813
5813
|
/**
|
|
5814
5814
|
* <p>The IP address.</p>
|
|
5815
5815
|
* @public
|
|
5816
5816
|
*/
|
|
5817
|
-
IpAddress?: string;
|
|
5817
|
+
IpAddress?: string | undefined;
|
|
5818
5818
|
}
|
|
5819
5819
|
/**
|
|
5820
5820
|
* @public
|
|
@@ -5839,13 +5839,13 @@ export interface StartRouteAnalysisRequest {
|
|
|
5839
5839
|
* <p>Indicates whether to analyze the return path. The default is <code>false</code>.</p>
|
|
5840
5840
|
* @public
|
|
5841
5841
|
*/
|
|
5842
|
-
IncludeReturnPath?: boolean;
|
|
5842
|
+
IncludeReturnPath?: boolean | undefined;
|
|
5843
5843
|
/**
|
|
5844
5844
|
* <p>Indicates whether to include the location of middlebox appliances in the route analysis.
|
|
5845
5845
|
* The default is <code>false</code>.</p>
|
|
5846
5846
|
* @public
|
|
5847
5847
|
*/
|
|
5848
|
-
UseMiddleboxes?: boolean;
|
|
5848
|
+
UseMiddleboxes?: boolean | undefined;
|
|
5849
5849
|
}
|
|
5850
5850
|
/**
|
|
5851
5851
|
* @public
|
|
@@ -5855,7 +5855,7 @@ export interface StartRouteAnalysisResponse {
|
|
|
5855
5855
|
* <p>The route analysis.</p>
|
|
5856
5856
|
* @public
|
|
5857
5857
|
*/
|
|
5858
|
-
RouteAnalysis?: RouteAnalysis;
|
|
5858
|
+
RouteAnalysis?: RouteAnalysis | undefined;
|
|
5859
5859
|
}
|
|
5860
5860
|
/**
|
|
5861
5861
|
* @public
|
|
@@ -5915,18 +5915,18 @@ export interface UpdateConnectionRequest {
|
|
|
5915
5915
|
* <p>The ID of the link for the first device in the connection.</p>
|
|
5916
5916
|
* @public
|
|
5917
5917
|
*/
|
|
5918
|
-
LinkId?: string;
|
|
5918
|
+
LinkId?: string | undefined;
|
|
5919
5919
|
/**
|
|
5920
5920
|
* <p>The ID of the link for the second device in the connection.</p>
|
|
5921
5921
|
* @public
|
|
5922
5922
|
*/
|
|
5923
|
-
ConnectedLinkId?: string;
|
|
5923
|
+
ConnectedLinkId?: string | undefined;
|
|
5924
5924
|
/**
|
|
5925
5925
|
* <p>A description of the connection.</p>
|
|
5926
5926
|
* <p>Length Constraints: Maximum length of 256 characters.</p>
|
|
5927
5927
|
* @public
|
|
5928
5928
|
*/
|
|
5929
|
-
Description?: string;
|
|
5929
|
+
Description?: string | undefined;
|
|
5930
5930
|
}
|
|
5931
5931
|
/**
|
|
5932
5932
|
* @public
|
|
@@ -5936,7 +5936,7 @@ export interface UpdateConnectionResponse {
|
|
|
5936
5936
|
* <p>Information about the connection.</p>
|
|
5937
5937
|
* @public
|
|
5938
5938
|
*/
|
|
5939
|
-
Connection?: Connection;
|
|
5939
|
+
Connection?: Connection | undefined;
|
|
5940
5940
|
}
|
|
5941
5941
|
/**
|
|
5942
5942
|
* @public
|
|
@@ -5951,7 +5951,7 @@ export interface UpdateCoreNetworkRequest {
|
|
|
5951
5951
|
* <p>The description of the update.</p>
|
|
5952
5952
|
* @public
|
|
5953
5953
|
*/
|
|
5954
|
-
Description?: string;
|
|
5954
|
+
Description?: string | undefined;
|
|
5955
5955
|
}
|
|
5956
5956
|
/**
|
|
5957
5957
|
* @public
|
|
@@ -5961,7 +5961,7 @@ export interface UpdateCoreNetworkResponse {
|
|
|
5961
5961
|
* <p>Returns information about a core network update.</p>
|
|
5962
5962
|
* @public
|
|
5963
5963
|
*/
|
|
5964
|
-
CoreNetwork?: CoreNetwork;
|
|
5964
|
+
CoreNetwork?: CoreNetwork | undefined;
|
|
5965
5965
|
}
|
|
5966
5966
|
/**
|
|
5967
5967
|
* @public
|
|
@@ -5981,46 +5981,46 @@ export interface UpdateDeviceRequest {
|
|
|
5981
5981
|
* <p>The Amazon Web Services location of the device, if applicable. For an on-premises device, you can omit this parameter.</p>
|
|
5982
5982
|
* @public
|
|
5983
5983
|
*/
|
|
5984
|
-
AWSLocation?: AWSLocation;
|
|
5984
|
+
AWSLocation?: AWSLocation | undefined;
|
|
5985
5985
|
/**
|
|
5986
5986
|
* <p>A description of the device.</p>
|
|
5987
5987
|
* <p>Constraints: Maximum length of 256 characters.</p>
|
|
5988
5988
|
* @public
|
|
5989
5989
|
*/
|
|
5990
|
-
Description?: string;
|
|
5990
|
+
Description?: string | undefined;
|
|
5991
5991
|
/**
|
|
5992
5992
|
* <p>The type of the device.</p>
|
|
5993
5993
|
* @public
|
|
5994
5994
|
*/
|
|
5995
|
-
Type?: string;
|
|
5995
|
+
Type?: string | undefined;
|
|
5996
5996
|
/**
|
|
5997
5997
|
* <p>The vendor of the device.</p>
|
|
5998
5998
|
* <p>Constraints: Maximum length of 128 characters.</p>
|
|
5999
5999
|
* @public
|
|
6000
6000
|
*/
|
|
6001
|
-
Vendor?: string;
|
|
6001
|
+
Vendor?: string | undefined;
|
|
6002
6002
|
/**
|
|
6003
6003
|
* <p>The model of the device.</p>
|
|
6004
6004
|
* <p>Constraints: Maximum length of 128 characters.</p>
|
|
6005
6005
|
* @public
|
|
6006
6006
|
*/
|
|
6007
|
-
Model?: string;
|
|
6007
|
+
Model?: string | undefined;
|
|
6008
6008
|
/**
|
|
6009
6009
|
* <p>The serial number of the device.</p>
|
|
6010
6010
|
* <p>Constraints: Maximum length of 128 characters.</p>
|
|
6011
6011
|
* @public
|
|
6012
6012
|
*/
|
|
6013
|
-
SerialNumber?: string;
|
|
6013
|
+
SerialNumber?: string | undefined;
|
|
6014
6014
|
/**
|
|
6015
6015
|
* <p>Describes a location.</p>
|
|
6016
6016
|
* @public
|
|
6017
6017
|
*/
|
|
6018
|
-
Location?: Location;
|
|
6018
|
+
Location?: Location | undefined;
|
|
6019
6019
|
/**
|
|
6020
6020
|
* <p>The ID of the site.</p>
|
|
6021
6021
|
* @public
|
|
6022
6022
|
*/
|
|
6023
|
-
SiteId?: string;
|
|
6023
|
+
SiteId?: string | undefined;
|
|
6024
6024
|
}
|
|
6025
6025
|
/**
|
|
6026
6026
|
* @public
|
|
@@ -6030,7 +6030,7 @@ export interface UpdateDeviceResponse {
|
|
|
6030
6030
|
* <p>Information about the device.</p>
|
|
6031
6031
|
* @public
|
|
6032
6032
|
*/
|
|
6033
|
-
Device?: Device;
|
|
6033
|
+
Device?: Device | undefined;
|
|
6034
6034
|
}
|
|
6035
6035
|
/**
|
|
6036
6036
|
* @public
|
|
@@ -6046,7 +6046,7 @@ export interface UpdateGlobalNetworkRequest {
|
|
|
6046
6046
|
* <p>Constraints: Maximum length of 256 characters.</p>
|
|
6047
6047
|
* @public
|
|
6048
6048
|
*/
|
|
6049
|
-
Description?: string;
|
|
6049
|
+
Description?: string | undefined;
|
|
6050
6050
|
}
|
|
6051
6051
|
/**
|
|
6052
6052
|
* @public
|
|
@@ -6056,7 +6056,7 @@ export interface UpdateGlobalNetworkResponse {
|
|
|
6056
6056
|
* <p>Information about the global network object.</p>
|
|
6057
6057
|
* @public
|
|
6058
6058
|
*/
|
|
6059
|
-
GlobalNetwork?: GlobalNetwork;
|
|
6059
|
+
GlobalNetwork?: GlobalNetwork | undefined;
|
|
6060
6060
|
}
|
|
6061
6061
|
/**
|
|
6062
6062
|
* @public
|
|
@@ -6077,24 +6077,24 @@ export interface UpdateLinkRequest {
|
|
|
6077
6077
|
* <p>Constraints: Maximum length of 256 characters.</p>
|
|
6078
6078
|
* @public
|
|
6079
6079
|
*/
|
|
6080
|
-
Description?: string;
|
|
6080
|
+
Description?: string | undefined;
|
|
6081
6081
|
/**
|
|
6082
6082
|
* <p>The type of the link.</p>
|
|
6083
6083
|
* <p>Constraints: Maximum length of 128 characters.</p>
|
|
6084
6084
|
* @public
|
|
6085
6085
|
*/
|
|
6086
|
-
Type?: string;
|
|
6086
|
+
Type?: string | undefined;
|
|
6087
6087
|
/**
|
|
6088
6088
|
* <p>The upload and download speed in Mbps. </p>
|
|
6089
6089
|
* @public
|
|
6090
6090
|
*/
|
|
6091
|
-
Bandwidth?: Bandwidth;
|
|
6091
|
+
Bandwidth?: Bandwidth | undefined;
|
|
6092
6092
|
/**
|
|
6093
6093
|
* <p>The provider of the link.</p>
|
|
6094
6094
|
* <p>Constraints: Maximum length of 128 characters.</p>
|
|
6095
6095
|
* @public
|
|
6096
6096
|
*/
|
|
6097
|
-
Provider?: string;
|
|
6097
|
+
Provider?: string | undefined;
|
|
6098
6098
|
}
|
|
6099
6099
|
/**
|
|
6100
6100
|
* @public
|
|
@@ -6104,7 +6104,7 @@ export interface UpdateLinkResponse {
|
|
|
6104
6104
|
* <p>Information about the link.</p>
|
|
6105
6105
|
* @public
|
|
6106
6106
|
*/
|
|
6107
|
-
Link?: Link;
|
|
6107
|
+
Link?: Link | undefined;
|
|
6108
6108
|
}
|
|
6109
6109
|
/**
|
|
6110
6110
|
* @public
|
|
@@ -6134,12 +6134,12 @@ export interface UpdateNetworkResourceMetadataResponse {
|
|
|
6134
6134
|
* <p>The ARN of the resource.</p>
|
|
6135
6135
|
* @public
|
|
6136
6136
|
*/
|
|
6137
|
-
ResourceArn?: string;
|
|
6137
|
+
ResourceArn?: string | undefined;
|
|
6138
6138
|
/**
|
|
6139
6139
|
* <p>The updated resource metadata.</p>
|
|
6140
6140
|
* @public
|
|
6141
6141
|
*/
|
|
6142
|
-
Metadata?: Record<string, string
|
|
6142
|
+
Metadata?: Record<string, string> | undefined;
|
|
6143
6143
|
}
|
|
6144
6144
|
/**
|
|
6145
6145
|
* @public
|
|
@@ -6160,7 +6160,7 @@ export interface UpdateSiteRequest {
|
|
|
6160
6160
|
* <p>Constraints: Maximum length of 256 characters.</p>
|
|
6161
6161
|
* @public
|
|
6162
6162
|
*/
|
|
6163
|
-
Description?: string;
|
|
6163
|
+
Description?: string | undefined;
|
|
6164
6164
|
/**
|
|
6165
6165
|
* <p>The site location:</p>
|
|
6166
6166
|
* <ul>
|
|
@@ -6179,7 +6179,7 @@ export interface UpdateSiteRequest {
|
|
|
6179
6179
|
* </ul>
|
|
6180
6180
|
* @public
|
|
6181
6181
|
*/
|
|
6182
|
-
Location?: Location;
|
|
6182
|
+
Location?: Location | undefined;
|
|
6183
6183
|
}
|
|
6184
6184
|
/**
|
|
6185
6185
|
* @public
|
|
@@ -6189,7 +6189,7 @@ export interface UpdateSiteResponse {
|
|
|
6189
6189
|
* <p>Information about the site.</p>
|
|
6190
6190
|
* @public
|
|
6191
6191
|
*/
|
|
6192
|
-
Site?: Site;
|
|
6192
|
+
Site?: Site | undefined;
|
|
6193
6193
|
}
|
|
6194
6194
|
/**
|
|
6195
6195
|
* @public
|
|
@@ -6204,17 +6204,17 @@ export interface UpdateVpcAttachmentRequest {
|
|
|
6204
6204
|
* <p>Adds a subnet ARN to the VPC attachment.</p>
|
|
6205
6205
|
* @public
|
|
6206
6206
|
*/
|
|
6207
|
-
AddSubnetArns?: string[];
|
|
6207
|
+
AddSubnetArns?: string[] | undefined;
|
|
6208
6208
|
/**
|
|
6209
6209
|
* <p>Removes a subnet ARN from the attachment.</p>
|
|
6210
6210
|
* @public
|
|
6211
6211
|
*/
|
|
6212
|
-
RemoveSubnetArns?: string[];
|
|
6212
|
+
RemoveSubnetArns?: string[] | undefined;
|
|
6213
6213
|
/**
|
|
6214
6214
|
* <p>Additional options for updating the VPC attachment. </p>
|
|
6215
6215
|
* @public
|
|
6216
6216
|
*/
|
|
6217
|
-
Options?: VpcOptions;
|
|
6217
|
+
Options?: VpcOptions | undefined;
|
|
6218
6218
|
}
|
|
6219
6219
|
/**
|
|
6220
6220
|
* @public
|
|
@@ -6224,7 +6224,7 @@ export interface UpdateVpcAttachmentResponse {
|
|
|
6224
6224
|
* <p>Describes the updated VPC attachment.</p>
|
|
6225
6225
|
* @public
|
|
6226
6226
|
*/
|
|
6227
|
-
VpcAttachment?: VpcAttachment;
|
|
6227
|
+
VpcAttachment?: VpcAttachment | undefined;
|
|
6228
6228
|
}
|
|
6229
6229
|
/**
|
|
6230
6230
|
* @internal
|