@aws-sdk/client-global-accelerator 3.934.0 → 3.936.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +56 -55
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +55 -0
- package/dist-es/models/errors.js +281 -0
- package/dist-es/models/models_0.js +1 -336
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +143 -0
- package/dist-types/models/errors.d.ts +265 -0
- package/dist-types/models/models_0.d.ts +1 -408
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +74 -0
- package/dist-types/ts3.4/models/errors.d.ts +172 -0
- package/dist-types/ts3.4/models/models_0.d.ts +13 -246
- package/package.json +19 -19
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { GlobalAcceleratorServiceException as __BaseException } from "./GlobalAcceleratorServiceException";
|
|
1
|
+
import { AcceleratorStatus, ByoipCidrState, ClientAffinity, CustomRoutingAcceleratorStatus, CustomRoutingDestinationTrafficState, CustomRoutingProtocol, HealthCheckProtocol, HealthState, IpAddressFamily, IpAddressType, Protocol } from "./enums";
|
|
3
2
|
/**
|
|
4
3
|
* <p>A complex type that contains a <code>Timestamp</code> value and <code>Message</code> for changes
|
|
5
4
|
* that you make to an accelerator in Global Accelerator. Messages stored here provide progress or error information when
|
|
@@ -20,30 +19,6 @@ export interface AcceleratorEvent {
|
|
|
20
19
|
*/
|
|
21
20
|
Timestamp?: Date | undefined;
|
|
22
21
|
}
|
|
23
|
-
/**
|
|
24
|
-
* @public
|
|
25
|
-
* @enum
|
|
26
|
-
*/
|
|
27
|
-
export declare const IpAddressType: {
|
|
28
|
-
readonly DUAL_STACK: "DUAL_STACK";
|
|
29
|
-
readonly IPV4: "IPV4";
|
|
30
|
-
};
|
|
31
|
-
/**
|
|
32
|
-
* @public
|
|
33
|
-
*/
|
|
34
|
-
export type IpAddressType = (typeof IpAddressType)[keyof typeof IpAddressType];
|
|
35
|
-
/**
|
|
36
|
-
* @public
|
|
37
|
-
* @enum
|
|
38
|
-
*/
|
|
39
|
-
export declare const IpAddressFamily: {
|
|
40
|
-
readonly IPv4: "IPv4";
|
|
41
|
-
readonly IPv6: "IPv6";
|
|
42
|
-
};
|
|
43
|
-
/**
|
|
44
|
-
* @public
|
|
45
|
-
*/
|
|
46
|
-
export type IpAddressFamily = (typeof IpAddressFamily)[keyof typeof IpAddressFamily];
|
|
47
22
|
/**
|
|
48
23
|
* <p>A complex type for the set of IP addresses for an accelerator.</p>
|
|
49
24
|
* @public
|
|
@@ -67,18 +42,6 @@ export interface IpSet {
|
|
|
67
42
|
*/
|
|
68
43
|
IpAddressFamily?: IpAddressFamily | undefined;
|
|
69
44
|
}
|
|
70
|
-
/**
|
|
71
|
-
* @public
|
|
72
|
-
* @enum
|
|
73
|
-
*/
|
|
74
|
-
export declare const AcceleratorStatus: {
|
|
75
|
-
readonly DEPLOYED: "DEPLOYED";
|
|
76
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
77
|
-
};
|
|
78
|
-
/**
|
|
79
|
-
* @public
|
|
80
|
-
*/
|
|
81
|
-
export type AcceleratorStatus = (typeof AcceleratorStatus)[keyof typeof AcceleratorStatus];
|
|
82
45
|
/**
|
|
83
46
|
* <p>An accelerator is a complex type that includes one or more listeners that process inbound connections and then direct
|
|
84
47
|
* traffic to one or more endpoint groups, each of which includes endpoints, such as load balancers.</p>
|
|
@@ -186,45 +149,6 @@ export interface AcceleratorAttributes {
|
|
|
186
149
|
*/
|
|
187
150
|
FlowLogsS3Prefix?: string | undefined;
|
|
188
151
|
}
|
|
189
|
-
/**
|
|
190
|
-
* <p>The accelerator that you specified could not be disabled.</p>
|
|
191
|
-
* @public
|
|
192
|
-
*/
|
|
193
|
-
export declare class AcceleratorNotDisabledException extends __BaseException {
|
|
194
|
-
readonly name: "AcceleratorNotDisabledException";
|
|
195
|
-
readonly $fault: "client";
|
|
196
|
-
Message?: string | undefined;
|
|
197
|
-
/**
|
|
198
|
-
* @internal
|
|
199
|
-
*/
|
|
200
|
-
constructor(opts: __ExceptionOptionType<AcceleratorNotDisabledException, __BaseException>);
|
|
201
|
-
}
|
|
202
|
-
/**
|
|
203
|
-
* <p>The accelerator that you specified doesn't exist.</p>
|
|
204
|
-
* @public
|
|
205
|
-
*/
|
|
206
|
-
export declare class AcceleratorNotFoundException extends __BaseException {
|
|
207
|
-
readonly name: "AcceleratorNotFoundException";
|
|
208
|
-
readonly $fault: "client";
|
|
209
|
-
Message?: string | undefined;
|
|
210
|
-
/**
|
|
211
|
-
* @internal
|
|
212
|
-
*/
|
|
213
|
-
constructor(opts: __ExceptionOptionType<AcceleratorNotFoundException, __BaseException>);
|
|
214
|
-
}
|
|
215
|
-
/**
|
|
216
|
-
* <p>You don't have access permission.</p>
|
|
217
|
-
* @public
|
|
218
|
-
*/
|
|
219
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
220
|
-
readonly name: "AccessDeniedException";
|
|
221
|
-
readonly $fault: "client";
|
|
222
|
-
Message?: string | undefined;
|
|
223
|
-
/**
|
|
224
|
-
* @internal
|
|
225
|
-
*/
|
|
226
|
-
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
227
|
-
}
|
|
228
152
|
/**
|
|
229
153
|
* <p>The list of endpoint objects. For custom routing, this is a list of virtual private cloud (VPC) subnet IDs.</p>
|
|
230
154
|
* @public
|
|
@@ -286,84 +210,6 @@ export interface AddCustomRoutingEndpointsResponse {
|
|
|
286
210
|
*/
|
|
287
211
|
EndpointGroupArn?: string | undefined;
|
|
288
212
|
}
|
|
289
|
-
/**
|
|
290
|
-
* <p>You can't use both of those options.</p>
|
|
291
|
-
* @public
|
|
292
|
-
*/
|
|
293
|
-
export declare class ConflictException extends __BaseException {
|
|
294
|
-
readonly name: "ConflictException";
|
|
295
|
-
readonly $fault: "client";
|
|
296
|
-
Message?: string | undefined;
|
|
297
|
-
/**
|
|
298
|
-
* @internal
|
|
299
|
-
*/
|
|
300
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
301
|
-
}
|
|
302
|
-
/**
|
|
303
|
-
* <p>The endpoint that you specified doesn't exist.</p>
|
|
304
|
-
* @public
|
|
305
|
-
*/
|
|
306
|
-
export declare class EndpointAlreadyExistsException extends __BaseException {
|
|
307
|
-
readonly name: "EndpointAlreadyExistsException";
|
|
308
|
-
readonly $fault: "client";
|
|
309
|
-
Message?: string | undefined;
|
|
310
|
-
/**
|
|
311
|
-
* @internal
|
|
312
|
-
*/
|
|
313
|
-
constructor(opts: __ExceptionOptionType<EndpointAlreadyExistsException, __BaseException>);
|
|
314
|
-
}
|
|
315
|
-
/**
|
|
316
|
-
* <p>The endpoint group that you specified doesn't exist.</p>
|
|
317
|
-
* @public
|
|
318
|
-
*/
|
|
319
|
-
export declare class EndpointGroupNotFoundException extends __BaseException {
|
|
320
|
-
readonly name: "EndpointGroupNotFoundException";
|
|
321
|
-
readonly $fault: "client";
|
|
322
|
-
Message?: string | undefined;
|
|
323
|
-
/**
|
|
324
|
-
* @internal
|
|
325
|
-
*/
|
|
326
|
-
constructor(opts: __ExceptionOptionType<EndpointGroupNotFoundException, __BaseException>);
|
|
327
|
-
}
|
|
328
|
-
/**
|
|
329
|
-
* <p>There was an internal error for Global Accelerator.</p>
|
|
330
|
-
* @public
|
|
331
|
-
*/
|
|
332
|
-
export declare class InternalServiceErrorException extends __BaseException {
|
|
333
|
-
readonly name: "InternalServiceErrorException";
|
|
334
|
-
readonly $fault: "server";
|
|
335
|
-
Message?: string | undefined;
|
|
336
|
-
/**
|
|
337
|
-
* @internal
|
|
338
|
-
*/
|
|
339
|
-
constructor(opts: __ExceptionOptionType<InternalServiceErrorException, __BaseException>);
|
|
340
|
-
}
|
|
341
|
-
/**
|
|
342
|
-
* <p>An argument that you specified is invalid.</p>
|
|
343
|
-
* @public
|
|
344
|
-
*/
|
|
345
|
-
export declare class InvalidArgumentException extends __BaseException {
|
|
346
|
-
readonly name: "InvalidArgumentException";
|
|
347
|
-
readonly $fault: "client";
|
|
348
|
-
Message?: string | undefined;
|
|
349
|
-
/**
|
|
350
|
-
* @internal
|
|
351
|
-
*/
|
|
352
|
-
constructor(opts: __ExceptionOptionType<InvalidArgumentException, __BaseException>);
|
|
353
|
-
}
|
|
354
|
-
/**
|
|
355
|
-
* <p>Processing your request would cause you to exceed an Global Accelerator limit.</p>
|
|
356
|
-
* @public
|
|
357
|
-
*/
|
|
358
|
-
export declare class LimitExceededException extends __BaseException {
|
|
359
|
-
readonly name: "LimitExceededException";
|
|
360
|
-
readonly $fault: "client";
|
|
361
|
-
Message?: string | undefined;
|
|
362
|
-
/**
|
|
363
|
-
* @internal
|
|
364
|
-
*/
|
|
365
|
-
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
366
|
-
}
|
|
367
213
|
/**
|
|
368
214
|
* <p>A complex type for endpoints. A resource must be valid and active when you add it as an endpoint.</p>
|
|
369
215
|
* @public
|
|
@@ -422,19 +268,6 @@ export interface AddEndpointsRequest {
|
|
|
422
268
|
*/
|
|
423
269
|
EndpointGroupArn: string | undefined;
|
|
424
270
|
}
|
|
425
|
-
/**
|
|
426
|
-
* @public
|
|
427
|
-
* @enum
|
|
428
|
-
*/
|
|
429
|
-
export declare const HealthState: {
|
|
430
|
-
readonly HEALTHY: "HEALTHY";
|
|
431
|
-
readonly INITIAL: "INITIAL";
|
|
432
|
-
readonly UNHEALTHY: "UNHEALTHY";
|
|
433
|
-
};
|
|
434
|
-
/**
|
|
435
|
-
* @public
|
|
436
|
-
*/
|
|
437
|
-
export type HealthState = (typeof HealthState)[keyof typeof HealthState];
|
|
438
271
|
/**
|
|
439
272
|
* <p>A complex type for an endpoint. Each endpoint group can include one or more endpoints, such as load
|
|
440
273
|
* balancers.</p>
|
|
@@ -497,19 +330,6 @@ export interface AddEndpointsResponse {
|
|
|
497
330
|
*/
|
|
498
331
|
EndpointGroupArn?: string | undefined;
|
|
499
332
|
}
|
|
500
|
-
/**
|
|
501
|
-
* <p>There's already a transaction in progress. Another transaction can't be processed.</p>
|
|
502
|
-
* @public
|
|
503
|
-
*/
|
|
504
|
-
export declare class TransactionInProgressException extends __BaseException {
|
|
505
|
-
readonly name: "TransactionInProgressException";
|
|
506
|
-
readonly $fault: "client";
|
|
507
|
-
Message?: string | undefined;
|
|
508
|
-
/**
|
|
509
|
-
* @internal
|
|
510
|
-
*/
|
|
511
|
-
constructor(opts: __ExceptionOptionType<TransactionInProgressException, __BaseException>);
|
|
512
|
-
}
|
|
513
333
|
/**
|
|
514
334
|
* @public
|
|
515
335
|
*/
|
|
@@ -544,27 +364,6 @@ export interface ByoipCidrEvent {
|
|
|
544
364
|
*/
|
|
545
365
|
Timestamp?: Date | undefined;
|
|
546
366
|
}
|
|
547
|
-
/**
|
|
548
|
-
* @public
|
|
549
|
-
* @enum
|
|
550
|
-
*/
|
|
551
|
-
export declare const ByoipCidrState: {
|
|
552
|
-
readonly ADVERTISING: "ADVERTISING";
|
|
553
|
-
readonly DEPROVISIONED: "DEPROVISIONED";
|
|
554
|
-
readonly FAILED_ADVERTISING: "FAILED_ADVERTISING";
|
|
555
|
-
readonly FAILED_DEPROVISION: "FAILED_DEPROVISION";
|
|
556
|
-
readonly FAILED_PROVISION: "FAILED_PROVISION";
|
|
557
|
-
readonly FAILED_WITHDRAW: "FAILED_WITHDRAW";
|
|
558
|
-
readonly PENDING_ADVERTISING: "PENDING_ADVERTISING";
|
|
559
|
-
readonly PENDING_DEPROVISIONING: "PENDING_DEPROVISIONING";
|
|
560
|
-
readonly PENDING_PROVISIONING: "PENDING_PROVISIONING";
|
|
561
|
-
readonly PENDING_WITHDRAWING: "PENDING_WITHDRAWING";
|
|
562
|
-
readonly READY: "READY";
|
|
563
|
-
};
|
|
564
|
-
/**
|
|
565
|
-
* @public
|
|
566
|
-
*/
|
|
567
|
-
export type ByoipCidrState = (typeof ByoipCidrState)[keyof typeof ByoipCidrState];
|
|
568
367
|
/**
|
|
569
368
|
* <p>Information about an IP address range that is provisioned for use with your Amazon Web Services resources through
|
|
570
369
|
* bring your own IP address (BYOIP).</p>
|
|
@@ -669,33 +468,6 @@ export interface AdvertiseByoipCidrResponse {
|
|
|
669
468
|
*/
|
|
670
469
|
ByoipCidr?: ByoipCidr | undefined;
|
|
671
470
|
}
|
|
672
|
-
/**
|
|
673
|
-
* <p>The CIDR that you specified was not found or is incorrect.</p>
|
|
674
|
-
* @public
|
|
675
|
-
*/
|
|
676
|
-
export declare class ByoipCidrNotFoundException extends __BaseException {
|
|
677
|
-
readonly name: "ByoipCidrNotFoundException";
|
|
678
|
-
readonly $fault: "client";
|
|
679
|
-
Message?: string | undefined;
|
|
680
|
-
/**
|
|
681
|
-
* @internal
|
|
682
|
-
*/
|
|
683
|
-
constructor(opts: __ExceptionOptionType<ByoipCidrNotFoundException, __BaseException>);
|
|
684
|
-
}
|
|
685
|
-
/**
|
|
686
|
-
* <p>The CIDR that you specified is not valid for this action. For example, the state of the CIDR might be
|
|
687
|
-
* incorrect for this action.</p>
|
|
688
|
-
* @public
|
|
689
|
-
*/
|
|
690
|
-
export declare class IncorrectCidrStateException extends __BaseException {
|
|
691
|
-
readonly name: "IncorrectCidrStateException";
|
|
692
|
-
readonly $fault: "client";
|
|
693
|
-
Message?: string | undefined;
|
|
694
|
-
/**
|
|
695
|
-
* @internal
|
|
696
|
-
*/
|
|
697
|
-
constructor(opts: __ExceptionOptionType<IncorrectCidrStateException, __BaseException>);
|
|
698
|
-
}
|
|
699
471
|
/**
|
|
700
472
|
* @public
|
|
701
473
|
*/
|
|
@@ -737,34 +509,6 @@ export interface AllowCustomRoutingTrafficRequest {
|
|
|
737
509
|
*/
|
|
738
510
|
AllowAllTrafficToEndpoint?: boolean | undefined;
|
|
739
511
|
}
|
|
740
|
-
/**
|
|
741
|
-
* <p>The listener that you specified has an endpoint group associated with it. You must remove all dependent resources
|
|
742
|
-
* from a listener before you can delete it.</p>
|
|
743
|
-
* @public
|
|
744
|
-
*/
|
|
745
|
-
export declare class AssociatedEndpointGroupFoundException extends __BaseException {
|
|
746
|
-
readonly name: "AssociatedEndpointGroupFoundException";
|
|
747
|
-
readonly $fault: "client";
|
|
748
|
-
Message?: string | undefined;
|
|
749
|
-
/**
|
|
750
|
-
* @internal
|
|
751
|
-
*/
|
|
752
|
-
constructor(opts: __ExceptionOptionType<AssociatedEndpointGroupFoundException, __BaseException>);
|
|
753
|
-
}
|
|
754
|
-
/**
|
|
755
|
-
* <p>The accelerator that you specified has a listener associated with it. You must remove all dependent resources from an
|
|
756
|
-
* accelerator before you can delete it.</p>
|
|
757
|
-
* @public
|
|
758
|
-
*/
|
|
759
|
-
export declare class AssociatedListenerFoundException extends __BaseException {
|
|
760
|
-
readonly name: "AssociatedListenerFoundException";
|
|
761
|
-
readonly $fault: "client";
|
|
762
|
-
Message?: string | undefined;
|
|
763
|
-
/**
|
|
764
|
-
* @internal
|
|
765
|
-
*/
|
|
766
|
-
constructor(opts: __ExceptionOptionType<AssociatedListenerFoundException, __BaseException>);
|
|
767
|
-
}
|
|
768
512
|
/**
|
|
769
513
|
* <p>A resource is one of the following: the ARN for an Amazon Web Services resource that is supported by
|
|
770
514
|
* Global Accelerator to be added as an endpoint, or a CIDR range that specifies a bring your own IP (BYOIP) address pool.</p>
|
|
@@ -832,19 +576,6 @@ export interface Attachment {
|
|
|
832
576
|
*/
|
|
833
577
|
CreatedTime?: Date | undefined;
|
|
834
578
|
}
|
|
835
|
-
/**
|
|
836
|
-
* <p>No cross-account attachment was found.</p>
|
|
837
|
-
* @public
|
|
838
|
-
*/
|
|
839
|
-
export declare class AttachmentNotFoundException extends __BaseException {
|
|
840
|
-
readonly name: "AttachmentNotFoundException";
|
|
841
|
-
readonly $fault: "client";
|
|
842
|
-
Message?: string | undefined;
|
|
843
|
-
/**
|
|
844
|
-
* @internal
|
|
845
|
-
*/
|
|
846
|
-
constructor(opts: __ExceptionOptionType<AttachmentNotFoundException, __BaseException>);
|
|
847
|
-
}
|
|
848
579
|
/**
|
|
849
580
|
* <p>Provides authorization for Amazon to bring a specific IP address range to a specific Amazon Web Services
|
|
850
581
|
* account using bring your own IP addresses (BYOIP). </p>
|
|
@@ -864,18 +595,6 @@ export interface CidrAuthorizationContext {
|
|
|
864
595
|
*/
|
|
865
596
|
Signature: string | undefined;
|
|
866
597
|
}
|
|
867
|
-
/**
|
|
868
|
-
* @public
|
|
869
|
-
* @enum
|
|
870
|
-
*/
|
|
871
|
-
export declare const ClientAffinity: {
|
|
872
|
-
readonly NONE: "NONE";
|
|
873
|
-
readonly SOURCE_IP: "SOURCE_IP";
|
|
874
|
-
};
|
|
875
|
-
/**
|
|
876
|
-
* @public
|
|
877
|
-
*/
|
|
878
|
-
export type ClientAffinity = (typeof ClientAffinity)[keyof typeof ClientAffinity];
|
|
879
598
|
/**
|
|
880
599
|
* <p>A complex type that contains a <code>Tag</code> key and <code>Tag</code> value.</p>
|
|
881
600
|
* @public
|
|
@@ -1050,18 +769,6 @@ export interface CreateCustomRoutingAcceleratorRequest {
|
|
|
1050
769
|
*/
|
|
1051
770
|
Tags?: Tag[] | undefined;
|
|
1052
771
|
}
|
|
1053
|
-
/**
|
|
1054
|
-
* @public
|
|
1055
|
-
* @enum
|
|
1056
|
-
*/
|
|
1057
|
-
export declare const CustomRoutingAcceleratorStatus: {
|
|
1058
|
-
readonly DEPLOYED: "DEPLOYED";
|
|
1059
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
1060
|
-
};
|
|
1061
|
-
/**
|
|
1062
|
-
* @public
|
|
1063
|
-
*/
|
|
1064
|
-
export type CustomRoutingAcceleratorStatus = (typeof CustomRoutingAcceleratorStatus)[keyof typeof CustomRoutingAcceleratorStatus];
|
|
1065
772
|
/**
|
|
1066
773
|
* <p>Attributes of a custom routing accelerator.</p>
|
|
1067
774
|
* @public
|
|
@@ -1132,18 +839,6 @@ export interface CreateCustomRoutingAcceleratorResponse {
|
|
|
1132
839
|
*/
|
|
1133
840
|
Accelerator?: CustomRoutingAccelerator | undefined;
|
|
1134
841
|
}
|
|
1135
|
-
/**
|
|
1136
|
-
* @public
|
|
1137
|
-
* @enum
|
|
1138
|
-
*/
|
|
1139
|
-
export declare const CustomRoutingProtocol: {
|
|
1140
|
-
readonly TCP: "TCP";
|
|
1141
|
-
readonly UDP: "UDP";
|
|
1142
|
-
};
|
|
1143
|
-
/**
|
|
1144
|
-
* @public
|
|
1145
|
-
*/
|
|
1146
|
-
export type CustomRoutingProtocol = (typeof CustomRoutingProtocol)[keyof typeof CustomRoutingProtocol];
|
|
1147
842
|
/**
|
|
1148
843
|
* <p>For a custom routing accelerator, sets the port range and protocol for all endpoints (virtual
|
|
1149
844
|
* private cloud subnets) in an endpoint group to accept client traffic on.</p>
|
|
@@ -1194,18 +889,6 @@ export interface CreateCustomRoutingEndpointGroupRequest {
|
|
|
1194
889
|
*/
|
|
1195
890
|
IdempotencyToken?: string | undefined;
|
|
1196
891
|
}
|
|
1197
|
-
/**
|
|
1198
|
-
* @public
|
|
1199
|
-
* @enum
|
|
1200
|
-
*/
|
|
1201
|
-
export declare const Protocol: {
|
|
1202
|
-
readonly TCP: "TCP";
|
|
1203
|
-
readonly UDP: "UDP";
|
|
1204
|
-
};
|
|
1205
|
-
/**
|
|
1206
|
-
* @public
|
|
1207
|
-
*/
|
|
1208
|
-
export type Protocol = (typeof Protocol)[keyof typeof Protocol];
|
|
1209
892
|
/**
|
|
1210
893
|
* <p>For a custom routing accelerator, describes the port range and protocol for all endpoints
|
|
1211
894
|
* (virtual private cloud subnets) in an endpoint group to accept client traffic on.</p>
|
|
@@ -1267,45 +950,6 @@ export interface CreateCustomRoutingEndpointGroupResponse {
|
|
|
1267
950
|
*/
|
|
1268
951
|
EndpointGroup?: CustomRoutingEndpointGroup | undefined;
|
|
1269
952
|
}
|
|
1270
|
-
/**
|
|
1271
|
-
* <p>The endpoint group that you specified already exists.</p>
|
|
1272
|
-
* @public
|
|
1273
|
-
*/
|
|
1274
|
-
export declare class EndpointGroupAlreadyExistsException extends __BaseException {
|
|
1275
|
-
readonly name: "EndpointGroupAlreadyExistsException";
|
|
1276
|
-
readonly $fault: "client";
|
|
1277
|
-
Message?: string | undefined;
|
|
1278
|
-
/**
|
|
1279
|
-
* @internal
|
|
1280
|
-
*/
|
|
1281
|
-
constructor(opts: __ExceptionOptionType<EndpointGroupAlreadyExistsException, __BaseException>);
|
|
1282
|
-
}
|
|
1283
|
-
/**
|
|
1284
|
-
* <p>The port numbers that you specified are not valid numbers or are not unique for this accelerator.</p>
|
|
1285
|
-
* @public
|
|
1286
|
-
*/
|
|
1287
|
-
export declare class InvalidPortRangeException extends __BaseException {
|
|
1288
|
-
readonly name: "InvalidPortRangeException";
|
|
1289
|
-
readonly $fault: "client";
|
|
1290
|
-
Message?: string | undefined;
|
|
1291
|
-
/**
|
|
1292
|
-
* @internal
|
|
1293
|
-
*/
|
|
1294
|
-
constructor(opts: __ExceptionOptionType<InvalidPortRangeException, __BaseException>);
|
|
1295
|
-
}
|
|
1296
|
-
/**
|
|
1297
|
-
* <p>The listener that you specified doesn't exist.</p>
|
|
1298
|
-
* @public
|
|
1299
|
-
*/
|
|
1300
|
-
export declare class ListenerNotFoundException extends __BaseException {
|
|
1301
|
-
readonly name: "ListenerNotFoundException";
|
|
1302
|
-
readonly $fault: "client";
|
|
1303
|
-
Message?: string | undefined;
|
|
1304
|
-
/**
|
|
1305
|
-
* @internal
|
|
1306
|
-
*/
|
|
1307
|
-
constructor(opts: __ExceptionOptionType<ListenerNotFoundException, __BaseException>);
|
|
1308
|
-
}
|
|
1309
953
|
/**
|
|
1310
954
|
* <p>A complex type for a range of ports for a listener.</p>
|
|
1311
955
|
* @public
|
|
@@ -1373,19 +1017,6 @@ export interface CreateCustomRoutingListenerResponse {
|
|
|
1373
1017
|
*/
|
|
1374
1018
|
Listener?: CustomRoutingListener | undefined;
|
|
1375
1019
|
}
|
|
1376
|
-
/**
|
|
1377
|
-
* @public
|
|
1378
|
-
* @enum
|
|
1379
|
-
*/
|
|
1380
|
-
export declare const HealthCheckProtocol: {
|
|
1381
|
-
readonly HTTP: "HTTP";
|
|
1382
|
-
readonly HTTPS: "HTTPS";
|
|
1383
|
-
readonly TCP: "TCP";
|
|
1384
|
-
};
|
|
1385
|
-
/**
|
|
1386
|
-
* @public
|
|
1387
|
-
*/
|
|
1388
|
-
export type HealthCheckProtocol = (typeof HealthCheckProtocol)[keyof typeof HealthCheckProtocol];
|
|
1389
1020
|
/**
|
|
1390
1021
|
* <p>Override specific listener ports used to route traffic to endpoints that are part of an endpoint group.
|
|
1391
1022
|
* For example, you can create a port override in which the listener
|
|
@@ -1716,18 +1347,6 @@ export interface CustomRoutingAcceleratorAttributes {
|
|
|
1716
1347
|
*/
|
|
1717
1348
|
FlowLogsS3Prefix?: string | undefined;
|
|
1718
1349
|
}
|
|
1719
|
-
/**
|
|
1720
|
-
* @public
|
|
1721
|
-
* @enum
|
|
1722
|
-
*/
|
|
1723
|
-
export declare const CustomRoutingDestinationTrafficState: {
|
|
1724
|
-
readonly ALLOW: "ALLOW";
|
|
1725
|
-
readonly DENY: "DENY";
|
|
1726
|
-
};
|
|
1727
|
-
/**
|
|
1728
|
-
* @public
|
|
1729
|
-
*/
|
|
1730
|
-
export type CustomRoutingDestinationTrafficState = (typeof CustomRoutingDestinationTrafficState)[keyof typeof CustomRoutingDestinationTrafficState];
|
|
1731
1350
|
/**
|
|
1732
1351
|
* @public
|
|
1733
1352
|
*/
|
|
@@ -2128,32 +1747,6 @@ export interface EndpointIdentifier {
|
|
|
2128
1747
|
*/
|
|
2129
1748
|
ClientIPPreservationEnabled?: boolean | undefined;
|
|
2130
1749
|
}
|
|
2131
|
-
/**
|
|
2132
|
-
* <p>The endpoint that you specified doesn't exist.</p>
|
|
2133
|
-
* @public
|
|
2134
|
-
*/
|
|
2135
|
-
export declare class EndpointNotFoundException extends __BaseException {
|
|
2136
|
-
readonly name: "EndpointNotFoundException";
|
|
2137
|
-
readonly $fault: "client";
|
|
2138
|
-
Message?: string | undefined;
|
|
2139
|
-
/**
|
|
2140
|
-
* @internal
|
|
2141
|
-
*/
|
|
2142
|
-
constructor(opts: __ExceptionOptionType<EndpointNotFoundException, __BaseException>);
|
|
2143
|
-
}
|
|
2144
|
-
/**
|
|
2145
|
-
* <p>There isn't another item to return.</p>
|
|
2146
|
-
* @public
|
|
2147
|
-
*/
|
|
2148
|
-
export declare class InvalidNextTokenException extends __BaseException {
|
|
2149
|
-
readonly name: "InvalidNextTokenException";
|
|
2150
|
-
readonly $fault: "client";
|
|
2151
|
-
Message?: string | undefined;
|
|
2152
|
-
/**
|
|
2153
|
-
* @internal
|
|
2154
|
-
*/
|
|
2155
|
-
constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
|
|
2156
|
-
}
|
|
2157
1750
|
/**
|
|
2158
1751
|
* @public
|
|
2159
1752
|
*/
|
|
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { GlobalAcceleratorExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
-
export * from "./models";
|
|
8
|
+
export * from "./models/enums";
|
|
9
|
+
export * from "./models/errors";
|
|
10
|
+
export * from "./models/models_0";
|
|
9
11
|
export { GlobalAcceleratorServiceException } from "./models/GlobalAcceleratorServiceException";
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
export declare const IpAddressType: {
|
|
2
|
+
readonly DUAL_STACK: "DUAL_STACK";
|
|
3
|
+
readonly IPV4: "IPV4";
|
|
4
|
+
};
|
|
5
|
+
export type IpAddressType = (typeof IpAddressType)[keyof typeof IpAddressType];
|
|
6
|
+
export declare const IpAddressFamily: {
|
|
7
|
+
readonly IPv4: "IPv4";
|
|
8
|
+
readonly IPv6: "IPv6";
|
|
9
|
+
};
|
|
10
|
+
export type IpAddressFamily =
|
|
11
|
+
(typeof IpAddressFamily)[keyof typeof IpAddressFamily];
|
|
12
|
+
export declare const AcceleratorStatus: {
|
|
13
|
+
readonly DEPLOYED: "DEPLOYED";
|
|
14
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
15
|
+
};
|
|
16
|
+
export type AcceleratorStatus =
|
|
17
|
+
(typeof AcceleratorStatus)[keyof typeof AcceleratorStatus];
|
|
18
|
+
export declare const HealthState: {
|
|
19
|
+
readonly HEALTHY: "HEALTHY";
|
|
20
|
+
readonly INITIAL: "INITIAL";
|
|
21
|
+
readonly UNHEALTHY: "UNHEALTHY";
|
|
22
|
+
};
|
|
23
|
+
export type HealthState = (typeof HealthState)[keyof typeof HealthState];
|
|
24
|
+
export declare const ByoipCidrState: {
|
|
25
|
+
readonly ADVERTISING: "ADVERTISING";
|
|
26
|
+
readonly DEPROVISIONED: "DEPROVISIONED";
|
|
27
|
+
readonly FAILED_ADVERTISING: "FAILED_ADVERTISING";
|
|
28
|
+
readonly FAILED_DEPROVISION: "FAILED_DEPROVISION";
|
|
29
|
+
readonly FAILED_PROVISION: "FAILED_PROVISION";
|
|
30
|
+
readonly FAILED_WITHDRAW: "FAILED_WITHDRAW";
|
|
31
|
+
readonly PENDING_ADVERTISING: "PENDING_ADVERTISING";
|
|
32
|
+
readonly PENDING_DEPROVISIONING: "PENDING_DEPROVISIONING";
|
|
33
|
+
readonly PENDING_PROVISIONING: "PENDING_PROVISIONING";
|
|
34
|
+
readonly PENDING_WITHDRAWING: "PENDING_WITHDRAWING";
|
|
35
|
+
readonly READY: "READY";
|
|
36
|
+
};
|
|
37
|
+
export type ByoipCidrState =
|
|
38
|
+
(typeof ByoipCidrState)[keyof typeof ByoipCidrState];
|
|
39
|
+
export declare const ClientAffinity: {
|
|
40
|
+
readonly NONE: "NONE";
|
|
41
|
+
readonly SOURCE_IP: "SOURCE_IP";
|
|
42
|
+
};
|
|
43
|
+
export type ClientAffinity =
|
|
44
|
+
(typeof ClientAffinity)[keyof typeof ClientAffinity];
|
|
45
|
+
export declare const CustomRoutingAcceleratorStatus: {
|
|
46
|
+
readonly DEPLOYED: "DEPLOYED";
|
|
47
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
48
|
+
};
|
|
49
|
+
export type CustomRoutingAcceleratorStatus =
|
|
50
|
+
(typeof CustomRoutingAcceleratorStatus)[keyof typeof CustomRoutingAcceleratorStatus];
|
|
51
|
+
export declare const CustomRoutingProtocol: {
|
|
52
|
+
readonly TCP: "TCP";
|
|
53
|
+
readonly UDP: "UDP";
|
|
54
|
+
};
|
|
55
|
+
export type CustomRoutingProtocol =
|
|
56
|
+
(typeof CustomRoutingProtocol)[keyof typeof CustomRoutingProtocol];
|
|
57
|
+
export declare const Protocol: {
|
|
58
|
+
readonly TCP: "TCP";
|
|
59
|
+
readonly UDP: "UDP";
|
|
60
|
+
};
|
|
61
|
+
export type Protocol = (typeof Protocol)[keyof typeof Protocol];
|
|
62
|
+
export declare const HealthCheckProtocol: {
|
|
63
|
+
readonly HTTP: "HTTP";
|
|
64
|
+
readonly HTTPS: "HTTPS";
|
|
65
|
+
readonly TCP: "TCP";
|
|
66
|
+
};
|
|
67
|
+
export type HealthCheckProtocol =
|
|
68
|
+
(typeof HealthCheckProtocol)[keyof typeof HealthCheckProtocol];
|
|
69
|
+
export declare const CustomRoutingDestinationTrafficState: {
|
|
70
|
+
readonly ALLOW: "ALLOW";
|
|
71
|
+
readonly DENY: "DENY";
|
|
72
|
+
};
|
|
73
|
+
export type CustomRoutingDestinationTrafficState =
|
|
74
|
+
(typeof CustomRoutingDestinationTrafficState)[keyof typeof CustomRoutingDestinationTrafficState];
|