@aws-sdk/client-vpc-lattice 3.935.0 → 3.939.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 +171 -0
- package/dist-es/index.js +1 -0
- package/dist-es/models/enums.js +145 -0
- package/dist-es/models/models_0.js +1 -145
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +585 -0
- package/dist-types/models/errors.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +1 -585
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +190 -0
- package/dist-types/ts3.4/models/errors.d.ts +2 -4
- package/dist-types/ts3.4/models/models_0.d.ts +26 -190
- package/package.json +12 -12
|
@@ -0,0 +1,585 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const ServiceNetworkLogType: {
|
|
6
|
+
/**
|
|
7
|
+
* Indicates logs for Lattice resource configurations.
|
|
8
|
+
*/
|
|
9
|
+
readonly RESOURCE: "RESOURCE";
|
|
10
|
+
/**
|
|
11
|
+
* Indicates logs for Lattice services.
|
|
12
|
+
*/
|
|
13
|
+
readonly SERVICE: "SERVICE";
|
|
14
|
+
};
|
|
15
|
+
/**
|
|
16
|
+
* @public
|
|
17
|
+
*/
|
|
18
|
+
export type ServiceNetworkLogType = (typeof ServiceNetworkLogType)[keyof typeof ServiceNetworkLogType];
|
|
19
|
+
/**
|
|
20
|
+
* @public
|
|
21
|
+
* @enum
|
|
22
|
+
*/
|
|
23
|
+
export declare const ValidationExceptionReason: {
|
|
24
|
+
readonly CANNOT_PARSE: "cannotParse";
|
|
25
|
+
readonly FIELD_VALIDATION_FAILED: "fieldValidationFailed";
|
|
26
|
+
readonly OTHER: "other";
|
|
27
|
+
readonly UNKNOWN_OPERATION: "unknownOperation";
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
32
|
+
export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
33
|
+
/**
|
|
34
|
+
* @public
|
|
35
|
+
* @enum
|
|
36
|
+
*/
|
|
37
|
+
export declare const AuthPolicyState: {
|
|
38
|
+
readonly Active: "Active";
|
|
39
|
+
readonly Inactive: "Inactive";
|
|
40
|
+
};
|
|
41
|
+
/**
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
44
|
+
export type AuthPolicyState = (typeof AuthPolicyState)[keyof typeof AuthPolicyState];
|
|
45
|
+
/**
|
|
46
|
+
* @public
|
|
47
|
+
* @enum
|
|
48
|
+
*/
|
|
49
|
+
export declare const AuthType: {
|
|
50
|
+
readonly AWS_IAM: "AWS_IAM";
|
|
51
|
+
readonly NONE: "NONE";
|
|
52
|
+
};
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
56
|
+
export type AuthType = (typeof AuthType)[keyof typeof AuthType];
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
* @enum
|
|
60
|
+
*/
|
|
61
|
+
export declare const ListenerProtocol: {
|
|
62
|
+
/**
|
|
63
|
+
* Indicates HTTP protocol
|
|
64
|
+
*/
|
|
65
|
+
readonly HTTP: "HTTP";
|
|
66
|
+
/**
|
|
67
|
+
* Indicates HTTPS protocol
|
|
68
|
+
*/
|
|
69
|
+
readonly HTTPS: "HTTPS";
|
|
70
|
+
/**
|
|
71
|
+
* Indicates TLS_PASSTHROUGH protocol
|
|
72
|
+
*/
|
|
73
|
+
readonly TLS_PASSTHROUGH: "TLS_PASSTHROUGH";
|
|
74
|
+
};
|
|
75
|
+
/**
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
78
|
+
export type ListenerProtocol = (typeof ListenerProtocol)[keyof typeof ListenerProtocol];
|
|
79
|
+
/**
|
|
80
|
+
* @public
|
|
81
|
+
* @enum
|
|
82
|
+
*/
|
|
83
|
+
export declare const ProtocolType: {
|
|
84
|
+
/**
|
|
85
|
+
* Resource Configuration protocol type TCP
|
|
86
|
+
*/
|
|
87
|
+
readonly TCP: "TCP";
|
|
88
|
+
};
|
|
89
|
+
/**
|
|
90
|
+
* @public
|
|
91
|
+
*/
|
|
92
|
+
export type ProtocolType = (typeof ProtocolType)[keyof typeof ProtocolType];
|
|
93
|
+
/**
|
|
94
|
+
* @public
|
|
95
|
+
* @enum
|
|
96
|
+
*/
|
|
97
|
+
export declare const ResourceConfigurationIpAddressType: {
|
|
98
|
+
/**
|
|
99
|
+
* Dualstack ip address type for dns type resource configs
|
|
100
|
+
*/
|
|
101
|
+
readonly DUALSTACK: "DUALSTACK";
|
|
102
|
+
/**
|
|
103
|
+
* Ipv4 ip address type for dns type resource configs
|
|
104
|
+
*/
|
|
105
|
+
readonly IPV4: "IPV4";
|
|
106
|
+
/**
|
|
107
|
+
* IPv6 ip address type for dns type resource configs
|
|
108
|
+
*/
|
|
109
|
+
readonly IPV6: "IPV6";
|
|
110
|
+
};
|
|
111
|
+
/**
|
|
112
|
+
* @public
|
|
113
|
+
*/
|
|
114
|
+
export type ResourceConfigurationIpAddressType = (typeof ResourceConfigurationIpAddressType)[keyof typeof ResourceConfigurationIpAddressType];
|
|
115
|
+
/**
|
|
116
|
+
* @public
|
|
117
|
+
* @enum
|
|
118
|
+
*/
|
|
119
|
+
export declare const ResourceConfigurationType: {
|
|
120
|
+
/**
|
|
121
|
+
* Resource Configuration of type ARN
|
|
122
|
+
*/
|
|
123
|
+
readonly ARN: "ARN";
|
|
124
|
+
/**
|
|
125
|
+
* Resource Configuration of type CHILD
|
|
126
|
+
*/
|
|
127
|
+
readonly CHILD: "CHILD";
|
|
128
|
+
/**
|
|
129
|
+
* Resource Configuration of type GROUP
|
|
130
|
+
*/
|
|
131
|
+
readonly GROUP: "GROUP";
|
|
132
|
+
/**
|
|
133
|
+
* Resource Configuration of type SINGLE
|
|
134
|
+
*/
|
|
135
|
+
readonly SINGLE: "SINGLE";
|
|
136
|
+
};
|
|
137
|
+
/**
|
|
138
|
+
* @public
|
|
139
|
+
*/
|
|
140
|
+
export type ResourceConfigurationType = (typeof ResourceConfigurationType)[keyof typeof ResourceConfigurationType];
|
|
141
|
+
/**
|
|
142
|
+
* @public
|
|
143
|
+
* @enum
|
|
144
|
+
*/
|
|
145
|
+
export declare const ResourceConfigurationStatus: {
|
|
146
|
+
/**
|
|
147
|
+
* Resource Configuration is active.
|
|
148
|
+
*/
|
|
149
|
+
readonly ACTIVE: "ACTIVE";
|
|
150
|
+
/**
|
|
151
|
+
* Resource Configuration creation failed
|
|
152
|
+
*/
|
|
153
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
154
|
+
/**
|
|
155
|
+
* Resource Configuration creation in progress.
|
|
156
|
+
*/
|
|
157
|
+
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
158
|
+
/**
|
|
159
|
+
* Resource Configuration deletion failed.
|
|
160
|
+
*/
|
|
161
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
162
|
+
/**
|
|
163
|
+
* Resource Configuration deletion in progress
|
|
164
|
+
*/
|
|
165
|
+
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
166
|
+
/**
|
|
167
|
+
* Resource Configuration update failed
|
|
168
|
+
*/
|
|
169
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
170
|
+
/**
|
|
171
|
+
* Resource Configuration update in progress.
|
|
172
|
+
*/
|
|
173
|
+
readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
|
|
174
|
+
};
|
|
175
|
+
/**
|
|
176
|
+
* @public
|
|
177
|
+
*/
|
|
178
|
+
export type ResourceConfigurationStatus = (typeof ResourceConfigurationStatus)[keyof typeof ResourceConfigurationStatus];
|
|
179
|
+
/**
|
|
180
|
+
* @public
|
|
181
|
+
* @enum
|
|
182
|
+
*/
|
|
183
|
+
export declare const ResourceGatewayIpAddressType: {
|
|
184
|
+
/**
|
|
185
|
+
* Dualstack ip address type for resource gateway
|
|
186
|
+
*/
|
|
187
|
+
readonly DUALSTACK: "DUALSTACK";
|
|
188
|
+
/**
|
|
189
|
+
* Ipv4 ip address type for resource gateway
|
|
190
|
+
*/
|
|
191
|
+
readonly IPV4: "IPV4";
|
|
192
|
+
/**
|
|
193
|
+
* IPv6 ip address type for resource gateway
|
|
194
|
+
*/
|
|
195
|
+
readonly IPV6: "IPV6";
|
|
196
|
+
};
|
|
197
|
+
/**
|
|
198
|
+
* @public
|
|
199
|
+
*/
|
|
200
|
+
export type ResourceGatewayIpAddressType = (typeof ResourceGatewayIpAddressType)[keyof typeof ResourceGatewayIpAddressType];
|
|
201
|
+
/**
|
|
202
|
+
* @public
|
|
203
|
+
* @enum
|
|
204
|
+
*/
|
|
205
|
+
export declare const ResourceGatewayStatus: {
|
|
206
|
+
/**
|
|
207
|
+
* Resource Gateway is active.
|
|
208
|
+
*/
|
|
209
|
+
readonly ACTIVE: "ACTIVE";
|
|
210
|
+
/**
|
|
211
|
+
* Resource Gateway creation failed
|
|
212
|
+
*/
|
|
213
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
214
|
+
/**
|
|
215
|
+
* Resource Gateway creation in progress.
|
|
216
|
+
*/
|
|
217
|
+
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
218
|
+
/**
|
|
219
|
+
* Resource Gateway deletion failed.
|
|
220
|
+
*/
|
|
221
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
222
|
+
/**
|
|
223
|
+
* Resource Gateway deletion in progress
|
|
224
|
+
*/
|
|
225
|
+
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
226
|
+
/**
|
|
227
|
+
* Reosurce Gateway update failed
|
|
228
|
+
*/
|
|
229
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
230
|
+
/**
|
|
231
|
+
* Resource Gateway update in progress.
|
|
232
|
+
*/
|
|
233
|
+
readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
|
|
234
|
+
};
|
|
235
|
+
/**
|
|
236
|
+
* @public
|
|
237
|
+
*/
|
|
238
|
+
export type ResourceGatewayStatus = (typeof ResourceGatewayStatus)[keyof typeof ResourceGatewayStatus];
|
|
239
|
+
/**
|
|
240
|
+
* @public
|
|
241
|
+
* @enum
|
|
242
|
+
*/
|
|
243
|
+
export declare const ServiceStatus: {
|
|
244
|
+
/**
|
|
245
|
+
* Service is active.
|
|
246
|
+
*/
|
|
247
|
+
readonly ACTIVE: "ACTIVE";
|
|
248
|
+
/**
|
|
249
|
+
* Service creation failed
|
|
250
|
+
*/
|
|
251
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
252
|
+
/**
|
|
253
|
+
* Service creation in progress.
|
|
254
|
+
*/
|
|
255
|
+
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
256
|
+
/**
|
|
257
|
+
* Service deletion failed.
|
|
258
|
+
*/
|
|
259
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
260
|
+
/**
|
|
261
|
+
* Service deletion in progress
|
|
262
|
+
*/
|
|
263
|
+
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
264
|
+
};
|
|
265
|
+
/**
|
|
266
|
+
* @public
|
|
267
|
+
*/
|
|
268
|
+
export type ServiceStatus = (typeof ServiceStatus)[keyof typeof ServiceStatus];
|
|
269
|
+
/**
|
|
270
|
+
* @public
|
|
271
|
+
* @enum
|
|
272
|
+
*/
|
|
273
|
+
export declare const ServiceNetworkResourceAssociationStatus: {
|
|
274
|
+
/**
|
|
275
|
+
* ServiceNetwork and Service association is active
|
|
276
|
+
*/
|
|
277
|
+
readonly ACTIVE: "ACTIVE";
|
|
278
|
+
/**
|
|
279
|
+
* ServiceNetwork and Service association creation failed.
|
|
280
|
+
*/
|
|
281
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
282
|
+
/**
|
|
283
|
+
* ServiceNetwork and Service association creation in progress
|
|
284
|
+
*/
|
|
285
|
+
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
286
|
+
/**
|
|
287
|
+
* ServiceNetwork and Service association deletion failed
|
|
288
|
+
*/
|
|
289
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
290
|
+
/**
|
|
291
|
+
* ServiceNetwork and Service association deletion in progress
|
|
292
|
+
*/
|
|
293
|
+
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
294
|
+
/**
|
|
295
|
+
* ServiceNetwork and Service association is partial
|
|
296
|
+
*/
|
|
297
|
+
readonly PARTIAL: "PARTIAL";
|
|
298
|
+
};
|
|
299
|
+
/**
|
|
300
|
+
* @public
|
|
301
|
+
*/
|
|
302
|
+
export type ServiceNetworkResourceAssociationStatus = (typeof ServiceNetworkResourceAssociationStatus)[keyof typeof ServiceNetworkResourceAssociationStatus];
|
|
303
|
+
/**
|
|
304
|
+
* @public
|
|
305
|
+
* @enum
|
|
306
|
+
*/
|
|
307
|
+
export declare const ServiceNetworkServiceAssociationStatus: {
|
|
308
|
+
/**
|
|
309
|
+
* ServiceNetwork and Service association is active
|
|
310
|
+
*/
|
|
311
|
+
readonly ACTIVE: "ACTIVE";
|
|
312
|
+
/**
|
|
313
|
+
* ServiceNetwork and Service association creation failed.
|
|
314
|
+
*/
|
|
315
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
316
|
+
/**
|
|
317
|
+
* ServiceNetwork and Service association creation in progress
|
|
318
|
+
*/
|
|
319
|
+
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
320
|
+
/**
|
|
321
|
+
* ServiceNetwork and Service association deletion failed
|
|
322
|
+
*/
|
|
323
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
324
|
+
/**
|
|
325
|
+
* ServiceNetwork and Service association deletion in progress
|
|
326
|
+
*/
|
|
327
|
+
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
328
|
+
};
|
|
329
|
+
/**
|
|
330
|
+
* @public
|
|
331
|
+
*/
|
|
332
|
+
export type ServiceNetworkServiceAssociationStatus = (typeof ServiceNetworkServiceAssociationStatus)[keyof typeof ServiceNetworkServiceAssociationStatus];
|
|
333
|
+
/**
|
|
334
|
+
* @public
|
|
335
|
+
* @enum
|
|
336
|
+
*/
|
|
337
|
+
export declare const PrivateDnsPreference: {
|
|
338
|
+
readonly ALL_DOMAINS: "ALL_DOMAINS";
|
|
339
|
+
readonly SPECIFIED_DOMAINS_ONLY: "SPECIFIED_DOMAINS_ONLY";
|
|
340
|
+
readonly VERIFIED_DOMAINS_AND_SPECIFIED_DOMAINS: "VERIFIED_DOMAINS_AND_SPECIFIED_DOMAINS";
|
|
341
|
+
readonly VERIFIED_DOMAINS_ONLY: "VERIFIED_DOMAINS_ONLY";
|
|
342
|
+
};
|
|
343
|
+
/**
|
|
344
|
+
* @public
|
|
345
|
+
*/
|
|
346
|
+
export type PrivateDnsPreference = (typeof PrivateDnsPreference)[keyof typeof PrivateDnsPreference];
|
|
347
|
+
/**
|
|
348
|
+
* @public
|
|
349
|
+
* @enum
|
|
350
|
+
*/
|
|
351
|
+
export declare const ServiceNetworkVpcAssociationStatus: {
|
|
352
|
+
/**
|
|
353
|
+
* ServiceNetwork and Vpc association is active
|
|
354
|
+
*/
|
|
355
|
+
readonly ACTIVE: "ACTIVE";
|
|
356
|
+
/**
|
|
357
|
+
* ServiceNetwork and Vpc association creation failed.
|
|
358
|
+
*/
|
|
359
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
360
|
+
/**
|
|
361
|
+
* ServiceNetwork and Vpc association creation in progress
|
|
362
|
+
*/
|
|
363
|
+
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
364
|
+
/**
|
|
365
|
+
* ServiceNetwork and Vpc association deletion failed
|
|
366
|
+
*/
|
|
367
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
368
|
+
/**
|
|
369
|
+
* ServiceNetwork and Vpc association deletion in progress
|
|
370
|
+
*/
|
|
371
|
+
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
372
|
+
/**
|
|
373
|
+
* ServiceNetwork and Vpc association update failed
|
|
374
|
+
*/
|
|
375
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
376
|
+
/**
|
|
377
|
+
* ServiceNetwork and Vpc association update in progress
|
|
378
|
+
*/
|
|
379
|
+
readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
|
|
380
|
+
};
|
|
381
|
+
/**
|
|
382
|
+
* @public
|
|
383
|
+
*/
|
|
384
|
+
export type ServiceNetworkVpcAssociationStatus = (typeof ServiceNetworkVpcAssociationStatus)[keyof typeof ServiceNetworkVpcAssociationStatus];
|
|
385
|
+
/**
|
|
386
|
+
* @public
|
|
387
|
+
* @enum
|
|
388
|
+
*/
|
|
389
|
+
export declare const TargetGroupProtocol: {
|
|
390
|
+
/**
|
|
391
|
+
* Indicates HTTP protocol
|
|
392
|
+
*/
|
|
393
|
+
readonly HTTP: "HTTP";
|
|
394
|
+
/**
|
|
395
|
+
* Indicates HTTPS protocol
|
|
396
|
+
*/
|
|
397
|
+
readonly HTTPS: "HTTPS";
|
|
398
|
+
/**
|
|
399
|
+
* Indicates TCP protocol
|
|
400
|
+
*/
|
|
401
|
+
readonly TCP: "TCP";
|
|
402
|
+
};
|
|
403
|
+
/**
|
|
404
|
+
* @public
|
|
405
|
+
*/
|
|
406
|
+
export type TargetGroupProtocol = (typeof TargetGroupProtocol)[keyof typeof TargetGroupProtocol];
|
|
407
|
+
/**
|
|
408
|
+
* @public
|
|
409
|
+
* @enum
|
|
410
|
+
*/
|
|
411
|
+
export declare const HealthCheckProtocolVersion: {
|
|
412
|
+
/**
|
|
413
|
+
* Indicates use of HTTP/1.1 to send requests to target
|
|
414
|
+
*/
|
|
415
|
+
readonly HTTP1: "HTTP1";
|
|
416
|
+
/**
|
|
417
|
+
* Indicates use of HTTP/2 to send requests to target
|
|
418
|
+
*/
|
|
419
|
+
readonly HTTP2: "HTTP2";
|
|
420
|
+
};
|
|
421
|
+
/**
|
|
422
|
+
* @public
|
|
423
|
+
*/
|
|
424
|
+
export type HealthCheckProtocolVersion = (typeof HealthCheckProtocolVersion)[keyof typeof HealthCheckProtocolVersion];
|
|
425
|
+
/**
|
|
426
|
+
* @public
|
|
427
|
+
* @enum
|
|
428
|
+
*/
|
|
429
|
+
export declare const IpAddressType: {
|
|
430
|
+
/**
|
|
431
|
+
* Indicates IPv4 address type
|
|
432
|
+
*/
|
|
433
|
+
readonly IPV4: "IPV4";
|
|
434
|
+
/**
|
|
435
|
+
* Indicates IPv6 address type
|
|
436
|
+
*/
|
|
437
|
+
readonly IPV6: "IPV6";
|
|
438
|
+
};
|
|
439
|
+
/**
|
|
440
|
+
* @public
|
|
441
|
+
*/
|
|
442
|
+
export type IpAddressType = (typeof IpAddressType)[keyof typeof IpAddressType];
|
|
443
|
+
/**
|
|
444
|
+
* @public
|
|
445
|
+
* @enum
|
|
446
|
+
*/
|
|
447
|
+
export declare const LambdaEventStructureVersion: {
|
|
448
|
+
/**
|
|
449
|
+
* This is the default lambda event structure version
|
|
450
|
+
*/
|
|
451
|
+
readonly V1: "V1";
|
|
452
|
+
/**
|
|
453
|
+
* Indicates use of lambda event structure version 2
|
|
454
|
+
*/
|
|
455
|
+
readonly V2: "V2";
|
|
456
|
+
};
|
|
457
|
+
/**
|
|
458
|
+
* @public
|
|
459
|
+
*/
|
|
460
|
+
export type LambdaEventStructureVersion = (typeof LambdaEventStructureVersion)[keyof typeof LambdaEventStructureVersion];
|
|
461
|
+
/**
|
|
462
|
+
* @public
|
|
463
|
+
* @enum
|
|
464
|
+
*/
|
|
465
|
+
export declare const TargetGroupProtocolVersion: {
|
|
466
|
+
/**
|
|
467
|
+
* Indicates use of gRPC to send requests to target
|
|
468
|
+
*/
|
|
469
|
+
readonly GRPC: "GRPC";
|
|
470
|
+
/**
|
|
471
|
+
* Indicates use of HTTP/1.1 to send requests to target
|
|
472
|
+
*/
|
|
473
|
+
readonly HTTP1: "HTTP1";
|
|
474
|
+
/**
|
|
475
|
+
* Indicates use of HTTP/2 to send requests to target
|
|
476
|
+
*/
|
|
477
|
+
readonly HTTP2: "HTTP2";
|
|
478
|
+
};
|
|
479
|
+
/**
|
|
480
|
+
* @public
|
|
481
|
+
*/
|
|
482
|
+
export type TargetGroupProtocolVersion = (typeof TargetGroupProtocolVersion)[keyof typeof TargetGroupProtocolVersion];
|
|
483
|
+
/**
|
|
484
|
+
* @public
|
|
485
|
+
* @enum
|
|
486
|
+
*/
|
|
487
|
+
export declare const TargetGroupType: {
|
|
488
|
+
/**
|
|
489
|
+
* Indicates target in this target group is an ALB
|
|
490
|
+
*/
|
|
491
|
+
readonly ALB: "ALB";
|
|
492
|
+
/**
|
|
493
|
+
* Indicates targets in this target group are EC2 instances
|
|
494
|
+
*/
|
|
495
|
+
readonly INSTANCE: "INSTANCE";
|
|
496
|
+
/**
|
|
497
|
+
* Indicates targets in this target group are IP
|
|
498
|
+
*/
|
|
499
|
+
readonly IP: "IP";
|
|
500
|
+
/**
|
|
501
|
+
* Indicates targets in this target group are Lambda
|
|
502
|
+
*/
|
|
503
|
+
readonly LAMBDA: "LAMBDA";
|
|
504
|
+
};
|
|
505
|
+
/**
|
|
506
|
+
* @public
|
|
507
|
+
*/
|
|
508
|
+
export type TargetGroupType = (typeof TargetGroupType)[keyof typeof TargetGroupType];
|
|
509
|
+
/**
|
|
510
|
+
* @public
|
|
511
|
+
* @enum
|
|
512
|
+
*/
|
|
513
|
+
export declare const TargetGroupStatus: {
|
|
514
|
+
/**
|
|
515
|
+
* TargetGroup is active
|
|
516
|
+
*/
|
|
517
|
+
readonly ACTIVE: "ACTIVE";
|
|
518
|
+
/**
|
|
519
|
+
* TargetGroup creation failed.
|
|
520
|
+
*/
|
|
521
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
522
|
+
/**
|
|
523
|
+
* TargetGroup creation in progress
|
|
524
|
+
*/
|
|
525
|
+
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
526
|
+
/**
|
|
527
|
+
* TargetGroup deletion failed
|
|
528
|
+
*/
|
|
529
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
530
|
+
/**
|
|
531
|
+
* TargetGroup deletion in progress
|
|
532
|
+
*/
|
|
533
|
+
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
534
|
+
};
|
|
535
|
+
/**
|
|
536
|
+
* @public
|
|
537
|
+
*/
|
|
538
|
+
export type TargetGroupStatus = (typeof TargetGroupStatus)[keyof typeof TargetGroupStatus];
|
|
539
|
+
/**
|
|
540
|
+
* @public
|
|
541
|
+
* @enum
|
|
542
|
+
*/
|
|
543
|
+
export declare const VerificationStatus: {
|
|
544
|
+
readonly PENDING: "PENDING";
|
|
545
|
+
readonly VERIFICATION_TIMED_OUT: "VERIFICATION_TIMED_OUT";
|
|
546
|
+
readonly VERIFIED: "VERIFIED";
|
|
547
|
+
};
|
|
548
|
+
/**
|
|
549
|
+
* @public
|
|
550
|
+
*/
|
|
551
|
+
export type VerificationStatus = (typeof VerificationStatus)[keyof typeof VerificationStatus];
|
|
552
|
+
/**
|
|
553
|
+
* @public
|
|
554
|
+
* @enum
|
|
555
|
+
*/
|
|
556
|
+
export declare const TargetStatus: {
|
|
557
|
+
/**
|
|
558
|
+
* The target is deregistering and connection draining is in process.
|
|
559
|
+
*/
|
|
560
|
+
readonly DRAINING: "DRAINING";
|
|
561
|
+
/**
|
|
562
|
+
* The target is healthy.
|
|
563
|
+
*/
|
|
564
|
+
readonly HEALTHY: "HEALTHY";
|
|
565
|
+
/**
|
|
566
|
+
* The initial health check is in progress.
|
|
567
|
+
*/
|
|
568
|
+
readonly INITIAL: "INITIAL";
|
|
569
|
+
/**
|
|
570
|
+
* Health checks are disabled.
|
|
571
|
+
*/
|
|
572
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
573
|
+
/**
|
|
574
|
+
* The target failed the health check.
|
|
575
|
+
*/
|
|
576
|
+
readonly UNHEALTHY: "UNHEALTHY";
|
|
577
|
+
/**
|
|
578
|
+
* The target group is not used in a listener rule.
|
|
579
|
+
*/
|
|
580
|
+
readonly UNUSED: "UNUSED";
|
|
581
|
+
};
|
|
582
|
+
/**
|
|
583
|
+
* @public
|
|
584
|
+
*/
|
|
585
|
+
export type TargetStatus = (typeof TargetStatus)[keyof typeof TargetStatus];
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
-
import {
|
|
2
|
+
import { ValidationExceptionReason } from "./enums";
|
|
3
|
+
import { ValidationExceptionField } from "./models_0";
|
|
3
4
|
import { VPCLatticeServiceException as __BaseException } from "./VPCLatticeServiceException";
|
|
4
5
|
/**
|
|
5
6
|
* <p>The user does not have sufficient access to perform this action.</p>
|