@aws-sdk/client-gamelift 3.301.0 → 3.303.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/models/models_0.js +443 -484
- package/dist-cjs/models/models_1.js +3 -4
- package/dist-es/models/models_0.js +443 -484
- package/dist-es/models/models_1.js +3 -4
- package/dist-types/models/models_0.d.ts +660 -455
- package/dist-types/models/models_1.d.ts +8 -3
- package/dist-types/ts3.4/models/models_0.d.ts +511 -443
- package/dist-types/ts3.4/models/models_1.d.ts +5 -3
- package/package.json +34 -34
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { GameLiftServiceException as __BaseException } from "./GameLiftServiceException";
|
|
3
|
-
export
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
})(AcceptanceType || (AcceptanceType = {}));
|
|
3
|
+
export const AcceptanceType = {
|
|
4
|
+
ACCEPT: "ACCEPT",
|
|
5
|
+
REJECT: "REJECT",
|
|
6
|
+
};
|
|
8
7
|
export class InternalServiceException extends __BaseException {
|
|
9
8
|
constructor(opts) {
|
|
10
9
|
super({
|
|
@@ -57,48 +56,40 @@ export class UnsupportedRegionException extends __BaseException {
|
|
|
57
56
|
this.Message = opts.Message;
|
|
58
57
|
}
|
|
59
58
|
}
|
|
60
|
-
export
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
(function (GameServerClaimStatus) {
|
|
95
|
-
GameServerClaimStatus["CLAIMED"] = "CLAIMED";
|
|
96
|
-
})(GameServerClaimStatus || (GameServerClaimStatus = {}));
|
|
97
|
-
export var GameServerUtilizationStatus;
|
|
98
|
-
(function (GameServerUtilizationStatus) {
|
|
99
|
-
GameServerUtilizationStatus["AVAILABLE"] = "AVAILABLE";
|
|
100
|
-
GameServerUtilizationStatus["UTILIZED"] = "UTILIZED";
|
|
101
|
-
})(GameServerUtilizationStatus || (GameServerUtilizationStatus = {}));
|
|
59
|
+
export const RoutingStrategyType = {
|
|
60
|
+
SIMPLE: "SIMPLE",
|
|
61
|
+
TERMINAL: "TERMINAL",
|
|
62
|
+
};
|
|
63
|
+
export const BackfillMode = {
|
|
64
|
+
AUTOMATIC: "AUTOMATIC",
|
|
65
|
+
MANUAL: "MANUAL",
|
|
66
|
+
};
|
|
67
|
+
export const BalancingStrategy = {
|
|
68
|
+
ON_DEMAND_ONLY: "ON_DEMAND_ONLY",
|
|
69
|
+
SPOT_ONLY: "SPOT_ONLY",
|
|
70
|
+
SPOT_PREFERRED: "SPOT_PREFERRED",
|
|
71
|
+
};
|
|
72
|
+
export const OperatingSystem = {
|
|
73
|
+
AMAZON_LINUX: "AMAZON_LINUX",
|
|
74
|
+
AMAZON_LINUX_2: "AMAZON_LINUX_2",
|
|
75
|
+
WINDOWS_2012: "WINDOWS_2012",
|
|
76
|
+
};
|
|
77
|
+
export const BuildStatus = {
|
|
78
|
+
FAILED: "FAILED",
|
|
79
|
+
INITIALIZED: "INITIALIZED",
|
|
80
|
+
READY: "READY",
|
|
81
|
+
};
|
|
82
|
+
export const CertificateType = {
|
|
83
|
+
Disabled: "DISABLED",
|
|
84
|
+
Generated: "GENERATED",
|
|
85
|
+
};
|
|
86
|
+
export const GameServerClaimStatus = {
|
|
87
|
+
CLAIMED: "CLAIMED",
|
|
88
|
+
};
|
|
89
|
+
export const GameServerUtilizationStatus = {
|
|
90
|
+
AVAILABLE: "AVAILABLE",
|
|
91
|
+
UTILIZED: "UTILIZED",
|
|
92
|
+
};
|
|
102
93
|
export class ConflictException extends __BaseException {
|
|
103
94
|
constructor(opts) {
|
|
104
95
|
super({
|
|
@@ -138,141 +129,137 @@ export class UnauthorizedException extends __BaseException {
|
|
|
138
129
|
this.Message = opts.Message;
|
|
139
130
|
}
|
|
140
131
|
}
|
|
141
|
-
export
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
(function (ComputeType) {
|
|
273
|
-
ComputeType["ANYWHERE"] = "ANYWHERE";
|
|
274
|
-
ComputeType["EC2"] = "EC2";
|
|
275
|
-
})(ComputeType || (ComputeType = {}));
|
|
132
|
+
export const ComparisonOperatorType = {
|
|
133
|
+
GreaterThanOrEqualToThreshold: "GreaterThanOrEqualToThreshold",
|
|
134
|
+
GreaterThanThreshold: "GreaterThanThreshold",
|
|
135
|
+
LessThanOrEqualToThreshold: "LessThanOrEqualToThreshold",
|
|
136
|
+
LessThanThreshold: "LessThanThreshold",
|
|
137
|
+
};
|
|
138
|
+
export const ComputeStatus = {
|
|
139
|
+
ACTIVE: "ACTIVE",
|
|
140
|
+
PENDING: "PENDING",
|
|
141
|
+
TERMINATING: "TERMINATING",
|
|
142
|
+
};
|
|
143
|
+
export const EC2InstanceType = {
|
|
144
|
+
c3_2xlarge: "c3.2xlarge",
|
|
145
|
+
c3_4xlarge: "c3.4xlarge",
|
|
146
|
+
c3_8xlarge: "c3.8xlarge",
|
|
147
|
+
c3_large: "c3.large",
|
|
148
|
+
c3_xlarge: "c3.xlarge",
|
|
149
|
+
c4_2xlarge: "c4.2xlarge",
|
|
150
|
+
c4_4xlarge: "c4.4xlarge",
|
|
151
|
+
c4_8xlarge: "c4.8xlarge",
|
|
152
|
+
c4_large: "c4.large",
|
|
153
|
+
c4_xlarge: "c4.xlarge",
|
|
154
|
+
c5_12xlarge: "c5.12xlarge",
|
|
155
|
+
c5_18xlarge: "c5.18xlarge",
|
|
156
|
+
c5_24xlarge: "c5.24xlarge",
|
|
157
|
+
c5_2xlarge: "c5.2xlarge",
|
|
158
|
+
c5_4xlarge: "c5.4xlarge",
|
|
159
|
+
c5_9xlarge: "c5.9xlarge",
|
|
160
|
+
c5_large: "c5.large",
|
|
161
|
+
c5_xlarge: "c5.xlarge",
|
|
162
|
+
c5a_12xlarge: "c5a.12xlarge",
|
|
163
|
+
c5a_16xlarge: "c5a.16xlarge",
|
|
164
|
+
c5a_24xlarge: "c5a.24xlarge",
|
|
165
|
+
c5a_2xlarge: "c5a.2xlarge",
|
|
166
|
+
c5a_4xlarge: "c5a.4xlarge",
|
|
167
|
+
c5a_8xlarge: "c5a.8xlarge",
|
|
168
|
+
c5a_large: "c5a.large",
|
|
169
|
+
c5a_xlarge: "c5a.xlarge",
|
|
170
|
+
c5d_12xlarge: "c5d.12xlarge",
|
|
171
|
+
c5d_18xlarge: "c5d.18xlarge",
|
|
172
|
+
c5d_24xlarge: "c5d.24xlarge",
|
|
173
|
+
c5d_2xlarge: "c5d.2xlarge",
|
|
174
|
+
c5d_4xlarge: "c5d.4xlarge",
|
|
175
|
+
c5d_9xlarge: "c5d.9xlarge",
|
|
176
|
+
c5d_large: "c5d.large",
|
|
177
|
+
c5d_xlarge: "c5d.xlarge",
|
|
178
|
+
c6a_12xlarge: "c6a.12xlarge",
|
|
179
|
+
c6a_16xlarge: "c6a.16xlarge",
|
|
180
|
+
c6a_24xlarge: "c6a.24xlarge",
|
|
181
|
+
c6a_2xlarge: "c6a.2xlarge",
|
|
182
|
+
c6a_4xlarge: "c6a.4xlarge",
|
|
183
|
+
c6a_8xlarge: "c6a.8xlarge",
|
|
184
|
+
c6a_large: "c6a.large",
|
|
185
|
+
c6a_xlarge: "c6a.xlarge",
|
|
186
|
+
c6i_12xlarge: "c6i.12xlarge",
|
|
187
|
+
c6i_16xlarge: "c6i.16xlarge",
|
|
188
|
+
c6i_24xlarge: "c6i.24xlarge",
|
|
189
|
+
c6i_2xlarge: "c6i.2xlarge",
|
|
190
|
+
c6i_4xlarge: "c6i.4xlarge",
|
|
191
|
+
c6i_8xlarge: "c6i.8xlarge",
|
|
192
|
+
c6i_large: "c6i.large",
|
|
193
|
+
c6i_xlarge: "c6i.xlarge",
|
|
194
|
+
m3_2xlarge: "m3.2xlarge",
|
|
195
|
+
m3_large: "m3.large",
|
|
196
|
+
m3_medium: "m3.medium",
|
|
197
|
+
m3_xlarge: "m3.xlarge",
|
|
198
|
+
m4_10xlarge: "m4.10xlarge",
|
|
199
|
+
m4_2xlarge: "m4.2xlarge",
|
|
200
|
+
m4_4xlarge: "m4.4xlarge",
|
|
201
|
+
m4_large: "m4.large",
|
|
202
|
+
m4_xlarge: "m4.xlarge",
|
|
203
|
+
m5_12xlarge: "m5.12xlarge",
|
|
204
|
+
m5_16xlarge: "m5.16xlarge",
|
|
205
|
+
m5_24xlarge: "m5.24xlarge",
|
|
206
|
+
m5_2xlarge: "m5.2xlarge",
|
|
207
|
+
m5_4xlarge: "m5.4xlarge",
|
|
208
|
+
m5_8xlarge: "m5.8xlarge",
|
|
209
|
+
m5_large: "m5.large",
|
|
210
|
+
m5_xlarge: "m5.xlarge",
|
|
211
|
+
m5a_12xlarge: "m5a.12xlarge",
|
|
212
|
+
m5a_16xlarge: "m5a.16xlarge",
|
|
213
|
+
m5a_24xlarge: "m5a.24xlarge",
|
|
214
|
+
m5a_2xlarge: "m5a.2xlarge",
|
|
215
|
+
m5a_4xlarge: "m5a.4xlarge",
|
|
216
|
+
m5a_8xlarge: "m5a.8xlarge",
|
|
217
|
+
m5a_large: "m5a.large",
|
|
218
|
+
m5a_xlarge: "m5a.xlarge",
|
|
219
|
+
r3_2xlarge: "r3.2xlarge",
|
|
220
|
+
r3_4xlarge: "r3.4xlarge",
|
|
221
|
+
r3_8xlarge: "r3.8xlarge",
|
|
222
|
+
r3_large: "r3.large",
|
|
223
|
+
r3_xlarge: "r3.xlarge",
|
|
224
|
+
r4_16xlarge: "r4.16xlarge",
|
|
225
|
+
r4_2xlarge: "r4.2xlarge",
|
|
226
|
+
r4_4xlarge: "r4.4xlarge",
|
|
227
|
+
r4_8xlarge: "r4.8xlarge",
|
|
228
|
+
r4_large: "r4.large",
|
|
229
|
+
r4_xlarge: "r4.xlarge",
|
|
230
|
+
r5_12xlarge: "r5.12xlarge",
|
|
231
|
+
r5_16xlarge: "r5.16xlarge",
|
|
232
|
+
r5_24xlarge: "r5.24xlarge",
|
|
233
|
+
r5_2xlarge: "r5.2xlarge",
|
|
234
|
+
r5_4xlarge: "r5.4xlarge",
|
|
235
|
+
r5_8xlarge: "r5.8xlarge",
|
|
236
|
+
r5_large: "r5.large",
|
|
237
|
+
r5_xlarge: "r5.xlarge",
|
|
238
|
+
r5a_12xlarge: "r5a.12xlarge",
|
|
239
|
+
r5a_16xlarge: "r5a.16xlarge",
|
|
240
|
+
r5a_24xlarge: "r5a.24xlarge",
|
|
241
|
+
r5a_2xlarge: "r5a.2xlarge",
|
|
242
|
+
r5a_4xlarge: "r5a.4xlarge",
|
|
243
|
+
r5a_8xlarge: "r5a.8xlarge",
|
|
244
|
+
r5a_large: "r5a.large",
|
|
245
|
+
r5a_xlarge: "r5a.xlarge",
|
|
246
|
+
r5d_12xlarge: "r5d.12xlarge",
|
|
247
|
+
r5d_16xlarge: "r5d.16xlarge",
|
|
248
|
+
r5d_24xlarge: "r5d.24xlarge",
|
|
249
|
+
r5d_2xlarge: "r5d.2xlarge",
|
|
250
|
+
r5d_4xlarge: "r5d.4xlarge",
|
|
251
|
+
r5d_8xlarge: "r5d.8xlarge",
|
|
252
|
+
r5d_large: "r5d.large",
|
|
253
|
+
r5d_xlarge: "r5d.xlarge",
|
|
254
|
+
t2_large: "t2.large",
|
|
255
|
+
t2_medium: "t2.medium",
|
|
256
|
+
t2_micro: "t2.micro",
|
|
257
|
+
t2_small: "t2.small",
|
|
258
|
+
};
|
|
259
|
+
export const ComputeType = {
|
|
260
|
+
ANYWHERE: "ANYWHERE",
|
|
261
|
+
EC2: "EC2",
|
|
262
|
+
};
|
|
276
263
|
export class LimitExceededException extends __BaseException {
|
|
277
264
|
constructor(opts) {
|
|
278
265
|
super({
|
|
@@ -299,38 +286,33 @@ export class TaggingFailedException extends __BaseException {
|
|
|
299
286
|
this.Message = opts.Message;
|
|
300
287
|
}
|
|
301
288
|
}
|
|
302
|
-
export
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
})(FleetStatus || (FleetStatus = {}));
|
|
330
|
-
export var FleetAction;
|
|
331
|
-
(function (FleetAction) {
|
|
332
|
-
FleetAction["AutoScaling"] = "AUTO_SCALING";
|
|
333
|
-
})(FleetAction || (FleetAction = {}));
|
|
289
|
+
export const IpProtocol = {
|
|
290
|
+
TCP: "TCP",
|
|
291
|
+
UDP: "UDP",
|
|
292
|
+
};
|
|
293
|
+
export const FleetType = {
|
|
294
|
+
OnDemand: "ON_DEMAND",
|
|
295
|
+
Spot: "SPOT",
|
|
296
|
+
};
|
|
297
|
+
export const ProtectionPolicy = {
|
|
298
|
+
FullProtection: "FullProtection",
|
|
299
|
+
NoProtection: "NoProtection",
|
|
300
|
+
};
|
|
301
|
+
export const FleetStatus = {
|
|
302
|
+
ACTIVATING: "ACTIVATING",
|
|
303
|
+
ACTIVE: "ACTIVE",
|
|
304
|
+
BUILDING: "BUILDING",
|
|
305
|
+
DELETING: "DELETING",
|
|
306
|
+
DOWNLOADING: "DOWNLOADING",
|
|
307
|
+
ERROR: "ERROR",
|
|
308
|
+
NEW: "NEW",
|
|
309
|
+
NOT_FOUND: "NOT_FOUND",
|
|
310
|
+
TERMINATED: "TERMINATED",
|
|
311
|
+
VALIDATING: "VALIDATING",
|
|
312
|
+
};
|
|
313
|
+
export const FleetAction = {
|
|
314
|
+
AutoScaling: "AUTO_SCALING",
|
|
315
|
+
};
|
|
334
316
|
export class InvalidFleetStatusException extends __BaseException {
|
|
335
317
|
constructor(opts) {
|
|
336
318
|
super({
|
|
@@ -344,133 +326,126 @@ export class InvalidFleetStatusException extends __BaseException {
|
|
|
344
326
|
this.Message = opts.Message;
|
|
345
327
|
}
|
|
346
328
|
}
|
|
347
|
-
export
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
}
|
|
453
|
-
export
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
}
|
|
457
|
-
export
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
GameSessionStatus["TERMINATED"] = "TERMINATED";
|
|
468
|
-
GameSessionStatus["TERMINATING"] = "TERMINATING";
|
|
469
|
-
})(GameSessionStatus || (GameSessionStatus = {}));
|
|
470
|
-
export var GameSessionStatusReason;
|
|
471
|
-
(function (GameSessionStatusReason) {
|
|
472
|
-
GameSessionStatusReason["INTERRUPTED"] = "INTERRUPTED";
|
|
473
|
-
})(GameSessionStatusReason || (GameSessionStatusReason = {}));
|
|
329
|
+
export const GameServerProtectionPolicy = {
|
|
330
|
+
FULL_PROTECTION: "FULL_PROTECTION",
|
|
331
|
+
NO_PROTECTION: "NO_PROTECTION",
|
|
332
|
+
};
|
|
333
|
+
export const GameServerGroupInstanceType = {
|
|
334
|
+
c4_2xlarge: "c4.2xlarge",
|
|
335
|
+
c4_4xlarge: "c4.4xlarge",
|
|
336
|
+
c4_8xlarge: "c4.8xlarge",
|
|
337
|
+
c4_large: "c4.large",
|
|
338
|
+
c4_xlarge: "c4.xlarge",
|
|
339
|
+
c5_12xlarge: "c5.12xlarge",
|
|
340
|
+
c5_18xlarge: "c5.18xlarge",
|
|
341
|
+
c5_24xlarge: "c5.24xlarge",
|
|
342
|
+
c5_2xlarge: "c5.2xlarge",
|
|
343
|
+
c5_4xlarge: "c5.4xlarge",
|
|
344
|
+
c5_9xlarge: "c5.9xlarge",
|
|
345
|
+
c5_large: "c5.large",
|
|
346
|
+
c5_xlarge: "c5.xlarge",
|
|
347
|
+
c5a_12xlarge: "c5a.12xlarge",
|
|
348
|
+
c5a_16xlarge: "c5a.16xlarge",
|
|
349
|
+
c5a_24xlarge: "c5a.24xlarge",
|
|
350
|
+
c5a_2xlarge: "c5a.2xlarge",
|
|
351
|
+
c5a_4xlarge: "c5a.4xlarge",
|
|
352
|
+
c5a_8xlarge: "c5a.8xlarge",
|
|
353
|
+
c5a_large: "c5a.large",
|
|
354
|
+
c5a_xlarge: "c5a.xlarge",
|
|
355
|
+
c6g_12xlarge: "c6g.12xlarge",
|
|
356
|
+
c6g_16xlarge: "c6g.16xlarge",
|
|
357
|
+
c6g_2xlarge: "c6g.2xlarge",
|
|
358
|
+
c6g_4xlarge: "c6g.4xlarge",
|
|
359
|
+
c6g_8xlarge: "c6g.8xlarge",
|
|
360
|
+
c6g_large: "c6g.large",
|
|
361
|
+
c6g_medium: "c6g.medium",
|
|
362
|
+
c6g_xlarge: "c6g.xlarge",
|
|
363
|
+
m4_10xlarge: "m4.10xlarge",
|
|
364
|
+
m4_2xlarge: "m4.2xlarge",
|
|
365
|
+
m4_4xlarge: "m4.4xlarge",
|
|
366
|
+
m4_large: "m4.large",
|
|
367
|
+
m4_xlarge: "m4.xlarge",
|
|
368
|
+
m5_12xlarge: "m5.12xlarge",
|
|
369
|
+
m5_16xlarge: "m5.16xlarge",
|
|
370
|
+
m5_24xlarge: "m5.24xlarge",
|
|
371
|
+
m5_2xlarge: "m5.2xlarge",
|
|
372
|
+
m5_4xlarge: "m5.4xlarge",
|
|
373
|
+
m5_8xlarge: "m5.8xlarge",
|
|
374
|
+
m5_large: "m5.large",
|
|
375
|
+
m5_xlarge: "m5.xlarge",
|
|
376
|
+
m5a_12xlarge: "m5a.12xlarge",
|
|
377
|
+
m5a_16xlarge: "m5a.16xlarge",
|
|
378
|
+
m5a_24xlarge: "m5a.24xlarge",
|
|
379
|
+
m5a_2xlarge: "m5a.2xlarge",
|
|
380
|
+
m5a_4xlarge: "m5a.4xlarge",
|
|
381
|
+
m5a_8xlarge: "m5a.8xlarge",
|
|
382
|
+
m5a_large: "m5a.large",
|
|
383
|
+
m5a_xlarge: "m5a.xlarge",
|
|
384
|
+
m6g_12xlarge: "m6g.12xlarge",
|
|
385
|
+
m6g_16xlarge: "m6g.16xlarge",
|
|
386
|
+
m6g_2xlarge: "m6g.2xlarge",
|
|
387
|
+
m6g_4xlarge: "m6g.4xlarge",
|
|
388
|
+
m6g_8xlarge: "m6g.8xlarge",
|
|
389
|
+
m6g_large: "m6g.large",
|
|
390
|
+
m6g_medium: "m6g.medium",
|
|
391
|
+
m6g_xlarge: "m6g.xlarge",
|
|
392
|
+
r4_16xlarge: "r4.16xlarge",
|
|
393
|
+
r4_2xlarge: "r4.2xlarge",
|
|
394
|
+
r4_4xlarge: "r4.4xlarge",
|
|
395
|
+
r4_8xlarge: "r4.8xlarge",
|
|
396
|
+
r4_large: "r4.large",
|
|
397
|
+
r4_xlarge: "r4.xlarge",
|
|
398
|
+
r5_12xlarge: "r5.12xlarge",
|
|
399
|
+
r5_16xlarge: "r5.16xlarge",
|
|
400
|
+
r5_24xlarge: "r5.24xlarge",
|
|
401
|
+
r5_2xlarge: "r5.2xlarge",
|
|
402
|
+
r5_4xlarge: "r5.4xlarge",
|
|
403
|
+
r5_8xlarge: "r5.8xlarge",
|
|
404
|
+
r5_large: "r5.large",
|
|
405
|
+
r5_xlarge: "r5.xlarge",
|
|
406
|
+
r5a_12xlarge: "r5a.12xlarge",
|
|
407
|
+
r5a_16xlarge: "r5a.16xlarge",
|
|
408
|
+
r5a_24xlarge: "r5a.24xlarge",
|
|
409
|
+
r5a_2xlarge: "r5a.2xlarge",
|
|
410
|
+
r5a_4xlarge: "r5a.4xlarge",
|
|
411
|
+
r5a_8xlarge: "r5a.8xlarge",
|
|
412
|
+
r5a_large: "r5a.large",
|
|
413
|
+
r5a_xlarge: "r5a.xlarge",
|
|
414
|
+
r6g_12xlarge: "r6g.12xlarge",
|
|
415
|
+
r6g_16xlarge: "r6g.16xlarge",
|
|
416
|
+
r6g_2xlarge: "r6g.2xlarge",
|
|
417
|
+
r6g_4xlarge: "r6g.4xlarge",
|
|
418
|
+
r6g_8xlarge: "r6g.8xlarge",
|
|
419
|
+
r6g_large: "r6g.large",
|
|
420
|
+
r6g_medium: "r6g.medium",
|
|
421
|
+
r6g_xlarge: "r6g.xlarge",
|
|
422
|
+
};
|
|
423
|
+
export const GameServerGroupStatus = {
|
|
424
|
+
ACTIVATING: "ACTIVATING",
|
|
425
|
+
ACTIVE: "ACTIVE",
|
|
426
|
+
DELETED: "DELETED",
|
|
427
|
+
DELETE_SCHEDULED: "DELETE_SCHEDULED",
|
|
428
|
+
DELETING: "DELETING",
|
|
429
|
+
ERROR: "ERROR",
|
|
430
|
+
NEW: "NEW",
|
|
431
|
+
};
|
|
432
|
+
export const GameServerGroupAction = {
|
|
433
|
+
REPLACE_INSTANCE_TYPES: "REPLACE_INSTANCE_TYPES",
|
|
434
|
+
};
|
|
435
|
+
export const PlayerSessionCreationPolicy = {
|
|
436
|
+
ACCEPT_ALL: "ACCEPT_ALL",
|
|
437
|
+
DENY_ALL: "DENY_ALL",
|
|
438
|
+
};
|
|
439
|
+
export const GameSessionStatus = {
|
|
440
|
+
ACTIVATING: "ACTIVATING",
|
|
441
|
+
ACTIVE: "ACTIVE",
|
|
442
|
+
ERROR: "ERROR",
|
|
443
|
+
TERMINATED: "TERMINATED",
|
|
444
|
+
TERMINATING: "TERMINATING",
|
|
445
|
+
};
|
|
446
|
+
export const GameSessionStatusReason = {
|
|
447
|
+
INTERRUPTED: "INTERRUPTED",
|
|
448
|
+
};
|
|
474
449
|
export class FleetCapacityExceededException extends __BaseException {
|
|
475
450
|
constructor(opts) {
|
|
476
451
|
super({
|
|
@@ -510,25 +485,22 @@ export class TerminalRoutingStrategyException extends __BaseException {
|
|
|
510
485
|
this.Message = opts.Message;
|
|
511
486
|
}
|
|
512
487
|
}
|
|
513
|
-
export
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
PlayerSessionStatus["RESERVED"] = "RESERVED";
|
|
530
|
-
PlayerSessionStatus["TIMEDOUT"] = "TIMEDOUT";
|
|
531
|
-
})(PlayerSessionStatus || (PlayerSessionStatus = {}));
|
|
488
|
+
export const PriorityType = {
|
|
489
|
+
COST: "COST",
|
|
490
|
+
DESTINATION: "DESTINATION",
|
|
491
|
+
LATENCY: "LATENCY",
|
|
492
|
+
LOCATION: "LOCATION",
|
|
493
|
+
};
|
|
494
|
+
export const FlexMatchMode = {
|
|
495
|
+
STANDALONE: "STANDALONE",
|
|
496
|
+
WITH_QUEUE: "WITH_QUEUE",
|
|
497
|
+
};
|
|
498
|
+
export const PlayerSessionStatus = {
|
|
499
|
+
ACTIVE: "ACTIVE",
|
|
500
|
+
COMPLETED: "COMPLETED",
|
|
501
|
+
RESERVED: "RESERVED",
|
|
502
|
+
TIMEDOUT: "TIMEDOUT",
|
|
503
|
+
};
|
|
532
504
|
export class GameSessionFullException extends __BaseException {
|
|
533
505
|
constructor(opts) {
|
|
534
506
|
super({
|
|
@@ -555,130 +527,117 @@ export class InvalidGameSessionStatusException extends __BaseException {
|
|
|
555
527
|
this.Message = opts.Message;
|
|
556
528
|
}
|
|
557
529
|
}
|
|
558
|
-
export
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
}
|
|
619
|
-
export
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
}
|
|
661
|
-
export
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
ScalingAdjustmentType["ExactCapacity"] = "ExactCapacity";
|
|
670
|
-
ScalingAdjustmentType["PercentChangeInCapacity"] = "PercentChangeInCapacity";
|
|
671
|
-
})(ScalingAdjustmentType || (ScalingAdjustmentType = {}));
|
|
672
|
-
export var SortOrder;
|
|
673
|
-
(function (SortOrder) {
|
|
674
|
-
SortOrder["ASCENDING"] = "ASCENDING";
|
|
675
|
-
SortOrder["DESCENDING"] = "DESCENDING";
|
|
676
|
-
})(SortOrder || (SortOrder = {}));
|
|
677
|
-
export var LocationFilter;
|
|
678
|
-
(function (LocationFilter) {
|
|
679
|
-
LocationFilter["AWS"] = "AWS";
|
|
680
|
-
LocationFilter["CUSTOM"] = "CUSTOM";
|
|
681
|
-
})(LocationFilter || (LocationFilter = {}));
|
|
530
|
+
export const GameServerGroupDeleteOption = {
|
|
531
|
+
FORCE_DELETE: "FORCE_DELETE",
|
|
532
|
+
RETAIN: "RETAIN",
|
|
533
|
+
SAFE_DELETE: "SAFE_DELETE",
|
|
534
|
+
};
|
|
535
|
+
export const EventCode = {
|
|
536
|
+
FLEET_ACTIVATION_FAILED: "FLEET_ACTIVATION_FAILED",
|
|
537
|
+
FLEET_ACTIVATION_FAILED_NO_INSTANCES: "FLEET_ACTIVATION_FAILED_NO_INSTANCES",
|
|
538
|
+
FLEET_BINARY_DOWNLOAD_FAILED: "FLEET_BINARY_DOWNLOAD_FAILED",
|
|
539
|
+
FLEET_CREATED: "FLEET_CREATED",
|
|
540
|
+
FLEET_CREATION_EXTRACTING_BUILD: "FLEET_CREATION_EXTRACTING_BUILD",
|
|
541
|
+
FLEET_CREATION_RUNNING_INSTALLER: "FLEET_CREATION_RUNNING_INSTALLER",
|
|
542
|
+
FLEET_CREATION_VALIDATING_RUNTIME_CONFIG: "FLEET_CREATION_VALIDATING_RUNTIME_CONFIG",
|
|
543
|
+
FLEET_DELETED: "FLEET_DELETED",
|
|
544
|
+
FLEET_INITIALIZATION_FAILED: "FLEET_INITIALIZATION_FAILED",
|
|
545
|
+
FLEET_NEW_GAME_SESSION_PROTECTION_POLICY_UPDATED: "FLEET_NEW_GAME_SESSION_PROTECTION_POLICY_UPDATED",
|
|
546
|
+
FLEET_SCALING_EVENT: "FLEET_SCALING_EVENT",
|
|
547
|
+
FLEET_STATE_ACTIVATING: "FLEET_STATE_ACTIVATING",
|
|
548
|
+
FLEET_STATE_ACTIVE: "FLEET_STATE_ACTIVE",
|
|
549
|
+
FLEET_STATE_BUILDING: "FLEET_STATE_BUILDING",
|
|
550
|
+
FLEET_STATE_DOWNLOADING: "FLEET_STATE_DOWNLOADING",
|
|
551
|
+
FLEET_STATE_ERROR: "FLEET_STATE_ERROR",
|
|
552
|
+
FLEET_STATE_VALIDATING: "FLEET_STATE_VALIDATING",
|
|
553
|
+
FLEET_VALIDATION_EXECUTABLE_RUNTIME_FAILURE: "FLEET_VALIDATION_EXECUTABLE_RUNTIME_FAILURE",
|
|
554
|
+
FLEET_VALIDATION_LAUNCH_PATH_NOT_FOUND: "FLEET_VALIDATION_LAUNCH_PATH_NOT_FOUND",
|
|
555
|
+
FLEET_VALIDATION_TIMED_OUT: "FLEET_VALIDATION_TIMED_OUT",
|
|
556
|
+
FLEET_VPC_PEERING_DELETED: "FLEET_VPC_PEERING_DELETED",
|
|
557
|
+
FLEET_VPC_PEERING_FAILED: "FLEET_VPC_PEERING_FAILED",
|
|
558
|
+
FLEET_VPC_PEERING_SUCCEEDED: "FLEET_VPC_PEERING_SUCCEEDED",
|
|
559
|
+
GAME_SESSION_ACTIVATION_TIMEOUT: "GAME_SESSION_ACTIVATION_TIMEOUT",
|
|
560
|
+
GENERIC_EVENT: "GENERIC_EVENT",
|
|
561
|
+
INSTANCE_INTERRUPTED: "INSTANCE_INTERRUPTED",
|
|
562
|
+
INSTANCE_RECYCLED: "INSTANCE_RECYCLED",
|
|
563
|
+
SERVER_PROCESS_CRASHED: "SERVER_PROCESS_CRASHED",
|
|
564
|
+
SERVER_PROCESS_FORCE_TERMINATED: "SERVER_PROCESS_FORCE_TERMINATED",
|
|
565
|
+
SERVER_PROCESS_INVALID_PATH: "SERVER_PROCESS_INVALID_PATH",
|
|
566
|
+
SERVER_PROCESS_PROCESS_EXIT_TIMEOUT: "SERVER_PROCESS_PROCESS_EXIT_TIMEOUT",
|
|
567
|
+
SERVER_PROCESS_PROCESS_READY_TIMEOUT: "SERVER_PROCESS_PROCESS_READY_TIMEOUT",
|
|
568
|
+
SERVER_PROCESS_SDK_INITIALIZATION_TIMEOUT: "SERVER_PROCESS_SDK_INITIALIZATION_TIMEOUT",
|
|
569
|
+
SERVER_PROCESS_TERMINATED_UNHEALTHY: "SERVER_PROCESS_TERMINATED_UNHEALTHY",
|
|
570
|
+
};
|
|
571
|
+
export const LocationUpdateStatus = {
|
|
572
|
+
PENDING_UPDATE: "PENDING_UPDATE",
|
|
573
|
+
};
|
|
574
|
+
export const GameServerInstanceStatus = {
|
|
575
|
+
ACTIVE: "ACTIVE",
|
|
576
|
+
DRAINING: "DRAINING",
|
|
577
|
+
SPOT_TERMINATING: "SPOT_TERMINATING",
|
|
578
|
+
};
|
|
579
|
+
export const GameSessionPlacementState = {
|
|
580
|
+
CANCELLED: "CANCELLED",
|
|
581
|
+
FAILED: "FAILED",
|
|
582
|
+
FULFILLED: "FULFILLED",
|
|
583
|
+
PENDING: "PENDING",
|
|
584
|
+
TIMED_OUT: "TIMED_OUT",
|
|
585
|
+
};
|
|
586
|
+
export const InstanceStatus = {
|
|
587
|
+
ACTIVE: "ACTIVE",
|
|
588
|
+
PENDING: "PENDING",
|
|
589
|
+
TERMINATING: "TERMINATING",
|
|
590
|
+
};
|
|
591
|
+
export const MatchmakingConfigurationStatus = {
|
|
592
|
+
CANCELLED: "CANCELLED",
|
|
593
|
+
COMPLETED: "COMPLETED",
|
|
594
|
+
FAILED: "FAILED",
|
|
595
|
+
PLACING: "PLACING",
|
|
596
|
+
QUEUED: "QUEUED",
|
|
597
|
+
REQUIRES_ACCEPTANCE: "REQUIRES_ACCEPTANCE",
|
|
598
|
+
SEARCHING: "SEARCHING",
|
|
599
|
+
TIMED_OUT: "TIMED_OUT",
|
|
600
|
+
};
|
|
601
|
+
export const ScalingStatusType = {
|
|
602
|
+
ACTIVE: "ACTIVE",
|
|
603
|
+
DELETED: "DELETED",
|
|
604
|
+
DELETE_REQUESTED: "DELETE_REQUESTED",
|
|
605
|
+
DELETING: "DELETING",
|
|
606
|
+
ERROR: "ERROR",
|
|
607
|
+
UPDATE_REQUESTED: "UPDATE_REQUESTED",
|
|
608
|
+
UPDATING: "UPDATING",
|
|
609
|
+
};
|
|
610
|
+
export const MetricName = {
|
|
611
|
+
ActivatingGameSessions: "ActivatingGameSessions",
|
|
612
|
+
ActiveGameSessions: "ActiveGameSessions",
|
|
613
|
+
ActiveInstances: "ActiveInstances",
|
|
614
|
+
AvailableGameSessions: "AvailableGameSessions",
|
|
615
|
+
AvailablePlayerSessions: "AvailablePlayerSessions",
|
|
616
|
+
ConcurrentActivatableGameSessions: "ConcurrentActivatableGameSessions",
|
|
617
|
+
CurrentPlayerSessions: "CurrentPlayerSessions",
|
|
618
|
+
IdleInstances: "IdleInstances",
|
|
619
|
+
PercentAvailableGameSessions: "PercentAvailableGameSessions",
|
|
620
|
+
PercentIdleInstances: "PercentIdleInstances",
|
|
621
|
+
QueueDepth: "QueueDepth",
|
|
622
|
+
WaitTime: "WaitTime",
|
|
623
|
+
};
|
|
624
|
+
export const PolicyType = {
|
|
625
|
+
RuleBased: "RuleBased",
|
|
626
|
+
TargetBased: "TargetBased",
|
|
627
|
+
};
|
|
628
|
+
export const ScalingAdjustmentType = {
|
|
629
|
+
ChangeInCapacity: "ChangeInCapacity",
|
|
630
|
+
ExactCapacity: "ExactCapacity",
|
|
631
|
+
PercentChangeInCapacity: "PercentChangeInCapacity",
|
|
632
|
+
};
|
|
633
|
+
export const SortOrder = {
|
|
634
|
+
ASCENDING: "ASCENDING",
|
|
635
|
+
DESCENDING: "DESCENDING",
|
|
636
|
+
};
|
|
637
|
+
export const LocationFilter = {
|
|
638
|
+
AWS: "AWS",
|
|
639
|
+
CUSTOM: "CUSTOM",
|
|
640
|
+
};
|
|
682
641
|
export const AwsCredentialsFilterSensitiveLog = (obj) => ({
|
|
683
642
|
...obj,
|
|
684
643
|
});
|