@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
|
@@ -2,11 +2,16 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-cl
|
|
|
2
2
|
import { GameLiftServiceException as __BaseException } from "./GameLiftServiceException";
|
|
3
3
|
/**
|
|
4
4
|
* @public
|
|
5
|
+
* @enum
|
|
5
6
|
*/
|
|
6
|
-
export declare
|
|
7
|
-
ACCEPT
|
|
8
|
-
REJECT
|
|
9
|
-
}
|
|
7
|
+
export declare const AcceptanceType: {
|
|
8
|
+
readonly ACCEPT: "ACCEPT";
|
|
9
|
+
readonly REJECT: "REJECT";
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* @public
|
|
13
|
+
*/
|
|
14
|
+
export type AcceptanceType = (typeof AcceptanceType)[keyof typeof AcceptanceType];
|
|
10
15
|
/**
|
|
11
16
|
* @public
|
|
12
17
|
*/
|
|
@@ -87,11 +92,16 @@ export declare class UnsupportedRegionException extends __BaseException {
|
|
|
87
92
|
}
|
|
88
93
|
/**
|
|
89
94
|
* @public
|
|
95
|
+
* @enum
|
|
90
96
|
*/
|
|
91
|
-
export declare
|
|
92
|
-
SIMPLE
|
|
93
|
-
TERMINAL
|
|
94
|
-
}
|
|
97
|
+
export declare const RoutingStrategyType: {
|
|
98
|
+
readonly SIMPLE: "SIMPLE";
|
|
99
|
+
readonly TERMINAL: "TERMINAL";
|
|
100
|
+
};
|
|
101
|
+
/**
|
|
102
|
+
* @public
|
|
103
|
+
*/
|
|
104
|
+
export type RoutingStrategyType = (typeof RoutingStrategyType)[keyof typeof RoutingStrategyType];
|
|
95
105
|
/**
|
|
96
106
|
* @public
|
|
97
107
|
* <p>The routing configuration for a fleet alias.</p>
|
|
@@ -234,35 +244,55 @@ export interface AwsCredentials {
|
|
|
234
244
|
}
|
|
235
245
|
/**
|
|
236
246
|
* @public
|
|
247
|
+
* @enum
|
|
237
248
|
*/
|
|
238
|
-
export declare
|
|
239
|
-
AUTOMATIC
|
|
240
|
-
MANUAL
|
|
241
|
-
}
|
|
249
|
+
export declare const BackfillMode: {
|
|
250
|
+
readonly AUTOMATIC: "AUTOMATIC";
|
|
251
|
+
readonly MANUAL: "MANUAL";
|
|
252
|
+
};
|
|
242
253
|
/**
|
|
243
254
|
* @public
|
|
244
255
|
*/
|
|
245
|
-
export
|
|
246
|
-
ON_DEMAND_ONLY = "ON_DEMAND_ONLY",
|
|
247
|
-
SPOT_ONLY = "SPOT_ONLY",
|
|
248
|
-
SPOT_PREFERRED = "SPOT_PREFERRED"
|
|
249
|
-
}
|
|
256
|
+
export type BackfillMode = (typeof BackfillMode)[keyof typeof BackfillMode];
|
|
250
257
|
/**
|
|
251
258
|
* @public
|
|
259
|
+
* @enum
|
|
252
260
|
*/
|
|
253
|
-
export declare
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
}
|
|
261
|
+
export declare const BalancingStrategy: {
|
|
262
|
+
readonly ON_DEMAND_ONLY: "ON_DEMAND_ONLY";
|
|
263
|
+
readonly SPOT_ONLY: "SPOT_ONLY";
|
|
264
|
+
readonly SPOT_PREFERRED: "SPOT_PREFERRED";
|
|
265
|
+
};
|
|
258
266
|
/**
|
|
259
267
|
* @public
|
|
260
268
|
*/
|
|
261
|
-
export
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
269
|
+
export type BalancingStrategy = (typeof BalancingStrategy)[keyof typeof BalancingStrategy];
|
|
270
|
+
/**
|
|
271
|
+
* @public
|
|
272
|
+
* @enum
|
|
273
|
+
*/
|
|
274
|
+
export declare const OperatingSystem: {
|
|
275
|
+
readonly AMAZON_LINUX: "AMAZON_LINUX";
|
|
276
|
+
readonly AMAZON_LINUX_2: "AMAZON_LINUX_2";
|
|
277
|
+
readonly WINDOWS_2012: "WINDOWS_2012";
|
|
278
|
+
};
|
|
279
|
+
/**
|
|
280
|
+
* @public
|
|
281
|
+
*/
|
|
282
|
+
export type OperatingSystem = (typeof OperatingSystem)[keyof typeof OperatingSystem];
|
|
283
|
+
/**
|
|
284
|
+
* @public
|
|
285
|
+
* @enum
|
|
286
|
+
*/
|
|
287
|
+
export declare const BuildStatus: {
|
|
288
|
+
readonly FAILED: "FAILED";
|
|
289
|
+
readonly INITIALIZED: "INITIALIZED";
|
|
290
|
+
readonly READY: "READY";
|
|
291
|
+
};
|
|
292
|
+
/**
|
|
293
|
+
* @public
|
|
294
|
+
*/
|
|
295
|
+
export type BuildStatus = (typeof BuildStatus)[keyof typeof BuildStatus];
|
|
266
296
|
/**
|
|
267
297
|
* @public
|
|
268
298
|
* <p>Properties describing a custom game build.</p>
|
|
@@ -335,11 +365,16 @@ export interface Build {
|
|
|
335
365
|
}
|
|
336
366
|
/**
|
|
337
367
|
* @public
|
|
368
|
+
* @enum
|
|
338
369
|
*/
|
|
339
|
-
export declare
|
|
340
|
-
Disabled
|
|
341
|
-
Generated
|
|
342
|
-
}
|
|
370
|
+
export declare const CertificateType: {
|
|
371
|
+
readonly Disabled: "DISABLED";
|
|
372
|
+
readonly Generated: "GENERATED";
|
|
373
|
+
};
|
|
374
|
+
/**
|
|
375
|
+
* @public
|
|
376
|
+
*/
|
|
377
|
+
export type CertificateType = (typeof CertificateType)[keyof typeof CertificateType];
|
|
343
378
|
/**
|
|
344
379
|
* @public
|
|
345
380
|
* <p>Determines whether a TLS/SSL certificate is generated for a fleet. This feature must
|
|
@@ -388,17 +423,27 @@ export interface ClaimGameServerInput {
|
|
|
388
423
|
}
|
|
389
424
|
/**
|
|
390
425
|
* @public
|
|
426
|
+
* @enum
|
|
391
427
|
*/
|
|
392
|
-
export declare
|
|
393
|
-
CLAIMED
|
|
394
|
-
}
|
|
428
|
+
export declare const GameServerClaimStatus: {
|
|
429
|
+
readonly CLAIMED: "CLAIMED";
|
|
430
|
+
};
|
|
395
431
|
/**
|
|
396
432
|
* @public
|
|
397
433
|
*/
|
|
398
|
-
export
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
434
|
+
export type GameServerClaimStatus = (typeof GameServerClaimStatus)[keyof typeof GameServerClaimStatus];
|
|
435
|
+
/**
|
|
436
|
+
* @public
|
|
437
|
+
* @enum
|
|
438
|
+
*/
|
|
439
|
+
export declare const GameServerUtilizationStatus: {
|
|
440
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
441
|
+
readonly UTILIZED: "UTILIZED";
|
|
442
|
+
};
|
|
443
|
+
/**
|
|
444
|
+
* @public
|
|
445
|
+
*/
|
|
446
|
+
export type GameServerUtilizationStatus = (typeof GameServerUtilizationStatus)[keyof typeof GameServerUtilizationStatus];
|
|
402
447
|
/**
|
|
403
448
|
* @public
|
|
404
449
|
* <p>
|
|
@@ -542,140 +587,155 @@ export declare class UnauthorizedException extends __BaseException {
|
|
|
542
587
|
}
|
|
543
588
|
/**
|
|
544
589
|
* @public
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
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
|
-
|
|
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
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
590
|
+
* @enum
|
|
591
|
+
*/
|
|
592
|
+
export declare const ComparisonOperatorType: {
|
|
593
|
+
readonly GreaterThanOrEqualToThreshold: "GreaterThanOrEqualToThreshold";
|
|
594
|
+
readonly GreaterThanThreshold: "GreaterThanThreshold";
|
|
595
|
+
readonly LessThanOrEqualToThreshold: "LessThanOrEqualToThreshold";
|
|
596
|
+
readonly LessThanThreshold: "LessThanThreshold";
|
|
597
|
+
};
|
|
598
|
+
/**
|
|
599
|
+
* @public
|
|
600
|
+
*/
|
|
601
|
+
export type ComparisonOperatorType = (typeof ComparisonOperatorType)[keyof typeof ComparisonOperatorType];
|
|
602
|
+
/**
|
|
603
|
+
* @public
|
|
604
|
+
* @enum
|
|
605
|
+
*/
|
|
606
|
+
export declare const ComputeStatus: {
|
|
607
|
+
readonly ACTIVE: "ACTIVE";
|
|
608
|
+
readonly PENDING: "PENDING";
|
|
609
|
+
readonly TERMINATING: "TERMINATING";
|
|
610
|
+
};
|
|
611
|
+
/**
|
|
612
|
+
* @public
|
|
613
|
+
*/
|
|
614
|
+
export type ComputeStatus = (typeof ComputeStatus)[keyof typeof ComputeStatus];
|
|
615
|
+
/**
|
|
616
|
+
* @public
|
|
617
|
+
* @enum
|
|
618
|
+
*/
|
|
619
|
+
export declare const EC2InstanceType: {
|
|
620
|
+
readonly c3_2xlarge: "c3.2xlarge";
|
|
621
|
+
readonly c3_4xlarge: "c3.4xlarge";
|
|
622
|
+
readonly c3_8xlarge: "c3.8xlarge";
|
|
623
|
+
readonly c3_large: "c3.large";
|
|
624
|
+
readonly c3_xlarge: "c3.xlarge";
|
|
625
|
+
readonly c4_2xlarge: "c4.2xlarge";
|
|
626
|
+
readonly c4_4xlarge: "c4.4xlarge";
|
|
627
|
+
readonly c4_8xlarge: "c4.8xlarge";
|
|
628
|
+
readonly c4_large: "c4.large";
|
|
629
|
+
readonly c4_xlarge: "c4.xlarge";
|
|
630
|
+
readonly c5_12xlarge: "c5.12xlarge";
|
|
631
|
+
readonly c5_18xlarge: "c5.18xlarge";
|
|
632
|
+
readonly c5_24xlarge: "c5.24xlarge";
|
|
633
|
+
readonly c5_2xlarge: "c5.2xlarge";
|
|
634
|
+
readonly c5_4xlarge: "c5.4xlarge";
|
|
635
|
+
readonly c5_9xlarge: "c5.9xlarge";
|
|
636
|
+
readonly c5_large: "c5.large";
|
|
637
|
+
readonly c5_xlarge: "c5.xlarge";
|
|
638
|
+
readonly c5a_12xlarge: "c5a.12xlarge";
|
|
639
|
+
readonly c5a_16xlarge: "c5a.16xlarge";
|
|
640
|
+
readonly c5a_24xlarge: "c5a.24xlarge";
|
|
641
|
+
readonly c5a_2xlarge: "c5a.2xlarge";
|
|
642
|
+
readonly c5a_4xlarge: "c5a.4xlarge";
|
|
643
|
+
readonly c5a_8xlarge: "c5a.8xlarge";
|
|
644
|
+
readonly c5a_large: "c5a.large";
|
|
645
|
+
readonly c5a_xlarge: "c5a.xlarge";
|
|
646
|
+
readonly c5d_12xlarge: "c5d.12xlarge";
|
|
647
|
+
readonly c5d_18xlarge: "c5d.18xlarge";
|
|
648
|
+
readonly c5d_24xlarge: "c5d.24xlarge";
|
|
649
|
+
readonly c5d_2xlarge: "c5d.2xlarge";
|
|
650
|
+
readonly c5d_4xlarge: "c5d.4xlarge";
|
|
651
|
+
readonly c5d_9xlarge: "c5d.9xlarge";
|
|
652
|
+
readonly c5d_large: "c5d.large";
|
|
653
|
+
readonly c5d_xlarge: "c5d.xlarge";
|
|
654
|
+
readonly c6a_12xlarge: "c6a.12xlarge";
|
|
655
|
+
readonly c6a_16xlarge: "c6a.16xlarge";
|
|
656
|
+
readonly c6a_24xlarge: "c6a.24xlarge";
|
|
657
|
+
readonly c6a_2xlarge: "c6a.2xlarge";
|
|
658
|
+
readonly c6a_4xlarge: "c6a.4xlarge";
|
|
659
|
+
readonly c6a_8xlarge: "c6a.8xlarge";
|
|
660
|
+
readonly c6a_large: "c6a.large";
|
|
661
|
+
readonly c6a_xlarge: "c6a.xlarge";
|
|
662
|
+
readonly c6i_12xlarge: "c6i.12xlarge";
|
|
663
|
+
readonly c6i_16xlarge: "c6i.16xlarge";
|
|
664
|
+
readonly c6i_24xlarge: "c6i.24xlarge";
|
|
665
|
+
readonly c6i_2xlarge: "c6i.2xlarge";
|
|
666
|
+
readonly c6i_4xlarge: "c6i.4xlarge";
|
|
667
|
+
readonly c6i_8xlarge: "c6i.8xlarge";
|
|
668
|
+
readonly c6i_large: "c6i.large";
|
|
669
|
+
readonly c6i_xlarge: "c6i.xlarge";
|
|
670
|
+
readonly m3_2xlarge: "m3.2xlarge";
|
|
671
|
+
readonly m3_large: "m3.large";
|
|
672
|
+
readonly m3_medium: "m3.medium";
|
|
673
|
+
readonly m3_xlarge: "m3.xlarge";
|
|
674
|
+
readonly m4_10xlarge: "m4.10xlarge";
|
|
675
|
+
readonly m4_2xlarge: "m4.2xlarge";
|
|
676
|
+
readonly m4_4xlarge: "m4.4xlarge";
|
|
677
|
+
readonly m4_large: "m4.large";
|
|
678
|
+
readonly m4_xlarge: "m4.xlarge";
|
|
679
|
+
readonly m5_12xlarge: "m5.12xlarge";
|
|
680
|
+
readonly m5_16xlarge: "m5.16xlarge";
|
|
681
|
+
readonly m5_24xlarge: "m5.24xlarge";
|
|
682
|
+
readonly m5_2xlarge: "m5.2xlarge";
|
|
683
|
+
readonly m5_4xlarge: "m5.4xlarge";
|
|
684
|
+
readonly m5_8xlarge: "m5.8xlarge";
|
|
685
|
+
readonly m5_large: "m5.large";
|
|
686
|
+
readonly m5_xlarge: "m5.xlarge";
|
|
687
|
+
readonly m5a_12xlarge: "m5a.12xlarge";
|
|
688
|
+
readonly m5a_16xlarge: "m5a.16xlarge";
|
|
689
|
+
readonly m5a_24xlarge: "m5a.24xlarge";
|
|
690
|
+
readonly m5a_2xlarge: "m5a.2xlarge";
|
|
691
|
+
readonly m5a_4xlarge: "m5a.4xlarge";
|
|
692
|
+
readonly m5a_8xlarge: "m5a.8xlarge";
|
|
693
|
+
readonly m5a_large: "m5a.large";
|
|
694
|
+
readonly m5a_xlarge: "m5a.xlarge";
|
|
695
|
+
readonly r3_2xlarge: "r3.2xlarge";
|
|
696
|
+
readonly r3_4xlarge: "r3.4xlarge";
|
|
697
|
+
readonly r3_8xlarge: "r3.8xlarge";
|
|
698
|
+
readonly r3_large: "r3.large";
|
|
699
|
+
readonly r3_xlarge: "r3.xlarge";
|
|
700
|
+
readonly r4_16xlarge: "r4.16xlarge";
|
|
701
|
+
readonly r4_2xlarge: "r4.2xlarge";
|
|
702
|
+
readonly r4_4xlarge: "r4.4xlarge";
|
|
703
|
+
readonly r4_8xlarge: "r4.8xlarge";
|
|
704
|
+
readonly r4_large: "r4.large";
|
|
705
|
+
readonly r4_xlarge: "r4.xlarge";
|
|
706
|
+
readonly r5_12xlarge: "r5.12xlarge";
|
|
707
|
+
readonly r5_16xlarge: "r5.16xlarge";
|
|
708
|
+
readonly r5_24xlarge: "r5.24xlarge";
|
|
709
|
+
readonly r5_2xlarge: "r5.2xlarge";
|
|
710
|
+
readonly r5_4xlarge: "r5.4xlarge";
|
|
711
|
+
readonly r5_8xlarge: "r5.8xlarge";
|
|
712
|
+
readonly r5_large: "r5.large";
|
|
713
|
+
readonly r5_xlarge: "r5.xlarge";
|
|
714
|
+
readonly r5a_12xlarge: "r5a.12xlarge";
|
|
715
|
+
readonly r5a_16xlarge: "r5a.16xlarge";
|
|
716
|
+
readonly r5a_24xlarge: "r5a.24xlarge";
|
|
717
|
+
readonly r5a_2xlarge: "r5a.2xlarge";
|
|
718
|
+
readonly r5a_4xlarge: "r5a.4xlarge";
|
|
719
|
+
readonly r5a_8xlarge: "r5a.8xlarge";
|
|
720
|
+
readonly r5a_large: "r5a.large";
|
|
721
|
+
readonly r5a_xlarge: "r5a.xlarge";
|
|
722
|
+
readonly r5d_12xlarge: "r5d.12xlarge";
|
|
723
|
+
readonly r5d_16xlarge: "r5d.16xlarge";
|
|
724
|
+
readonly r5d_24xlarge: "r5d.24xlarge";
|
|
725
|
+
readonly r5d_2xlarge: "r5d.2xlarge";
|
|
726
|
+
readonly r5d_4xlarge: "r5d.4xlarge";
|
|
727
|
+
readonly r5d_8xlarge: "r5d.8xlarge";
|
|
728
|
+
readonly r5d_large: "r5d.large";
|
|
729
|
+
readonly r5d_xlarge: "r5d.xlarge";
|
|
730
|
+
readonly t2_large: "t2.large";
|
|
731
|
+
readonly t2_medium: "t2.medium";
|
|
732
|
+
readonly t2_micro: "t2.micro";
|
|
733
|
+
readonly t2_small: "t2.small";
|
|
734
|
+
};
|
|
735
|
+
/**
|
|
736
|
+
* @public
|
|
737
|
+
*/
|
|
738
|
+
export type EC2InstanceType = (typeof EC2InstanceType)[keyof typeof EC2InstanceType];
|
|
679
739
|
/**
|
|
680
740
|
* @public
|
|
681
741
|
* <p>Resources used to host your game servers. A compute resource can be managed GameLift
|
|
@@ -739,11 +799,16 @@ export interface Compute {
|
|
|
739
799
|
}
|
|
740
800
|
/**
|
|
741
801
|
* @public
|
|
802
|
+
* @enum
|
|
742
803
|
*/
|
|
743
|
-
export declare
|
|
744
|
-
ANYWHERE
|
|
745
|
-
EC2
|
|
746
|
-
}
|
|
804
|
+
export declare const ComputeType: {
|
|
805
|
+
readonly ANYWHERE: "ANYWHERE";
|
|
806
|
+
readonly EC2: "EC2";
|
|
807
|
+
};
|
|
808
|
+
/**
|
|
809
|
+
* @public
|
|
810
|
+
*/
|
|
811
|
+
export type ComputeType = (typeof ComputeType)[keyof typeof ComputeType];
|
|
747
812
|
/**
|
|
748
813
|
* @public
|
|
749
814
|
* <p>A label that can be assigned to a GameLift resource. </p>
|
|
@@ -939,11 +1004,16 @@ export interface CreateBuildOutput {
|
|
|
939
1004
|
}
|
|
940
1005
|
/**
|
|
941
1006
|
* @public
|
|
1007
|
+
* @enum
|
|
942
1008
|
*/
|
|
943
|
-
export declare
|
|
944
|
-
TCP
|
|
945
|
-
UDP
|
|
946
|
-
}
|
|
1009
|
+
export declare const IpProtocol: {
|
|
1010
|
+
readonly TCP: "TCP";
|
|
1011
|
+
readonly UDP: "UDP";
|
|
1012
|
+
};
|
|
1013
|
+
/**
|
|
1014
|
+
* @public
|
|
1015
|
+
*/
|
|
1016
|
+
export type IpProtocol = (typeof IpProtocol)[keyof typeof IpProtocol];
|
|
947
1017
|
/**
|
|
948
1018
|
* @public
|
|
949
1019
|
* <p>A range of IP addresses and port settings that allow inbound traffic to connect to
|
|
@@ -977,11 +1047,16 @@ export interface IpPermission {
|
|
|
977
1047
|
}
|
|
978
1048
|
/**
|
|
979
1049
|
* @public
|
|
1050
|
+
* @enum
|
|
980
1051
|
*/
|
|
981
|
-
export declare
|
|
982
|
-
OnDemand
|
|
983
|
-
Spot
|
|
984
|
-
}
|
|
1052
|
+
export declare const FleetType: {
|
|
1053
|
+
readonly OnDemand: "ON_DEMAND";
|
|
1054
|
+
readonly Spot: "SPOT";
|
|
1055
|
+
};
|
|
1056
|
+
/**
|
|
1057
|
+
* @public
|
|
1058
|
+
*/
|
|
1059
|
+
export type FleetType = (typeof FleetType)[keyof typeof FleetType];
|
|
985
1060
|
/**
|
|
986
1061
|
* @public
|
|
987
1062
|
* <p>A remote location where a multi-location fleet can deploy EC2 instances for game
|
|
@@ -995,11 +1070,16 @@ export interface LocationConfiguration {
|
|
|
995
1070
|
}
|
|
996
1071
|
/**
|
|
997
1072
|
* @public
|
|
1073
|
+
* @enum
|
|
998
1074
|
*/
|
|
999
|
-
export declare
|
|
1000
|
-
FullProtection
|
|
1001
|
-
NoProtection
|
|
1002
|
-
}
|
|
1075
|
+
export declare const ProtectionPolicy: {
|
|
1076
|
+
readonly FullProtection: "FullProtection";
|
|
1077
|
+
readonly NoProtection: "NoProtection";
|
|
1078
|
+
};
|
|
1079
|
+
/**
|
|
1080
|
+
* @public
|
|
1081
|
+
*/
|
|
1082
|
+
export type ProtectionPolicy = (typeof ProtectionPolicy)[keyof typeof ProtectionPolicy];
|
|
1003
1083
|
/**
|
|
1004
1084
|
* @public
|
|
1005
1085
|
* <p>A policy that puts limits on the number of game sessions that a player can create
|
|
@@ -1275,25 +1355,35 @@ export interface CreateFleetInput {
|
|
|
1275
1355
|
}
|
|
1276
1356
|
/**
|
|
1277
1357
|
* @public
|
|
1358
|
+
* @enum
|
|
1278
1359
|
*/
|
|
1279
|
-
export declare
|
|
1280
|
-
ACTIVATING
|
|
1281
|
-
ACTIVE
|
|
1282
|
-
BUILDING
|
|
1283
|
-
DELETING
|
|
1284
|
-
DOWNLOADING
|
|
1285
|
-
ERROR
|
|
1286
|
-
NEW
|
|
1287
|
-
NOT_FOUND
|
|
1288
|
-
TERMINATED
|
|
1289
|
-
VALIDATING
|
|
1290
|
-
}
|
|
1360
|
+
export declare const FleetStatus: {
|
|
1361
|
+
readonly ACTIVATING: "ACTIVATING";
|
|
1362
|
+
readonly ACTIVE: "ACTIVE";
|
|
1363
|
+
readonly BUILDING: "BUILDING";
|
|
1364
|
+
readonly DELETING: "DELETING";
|
|
1365
|
+
readonly DOWNLOADING: "DOWNLOADING";
|
|
1366
|
+
readonly ERROR: "ERROR";
|
|
1367
|
+
readonly NEW: "NEW";
|
|
1368
|
+
readonly NOT_FOUND: "NOT_FOUND";
|
|
1369
|
+
readonly TERMINATED: "TERMINATED";
|
|
1370
|
+
readonly VALIDATING: "VALIDATING";
|
|
1371
|
+
};
|
|
1291
1372
|
/**
|
|
1292
1373
|
* @public
|
|
1293
1374
|
*/
|
|
1294
|
-
export
|
|
1295
|
-
|
|
1296
|
-
|
|
1375
|
+
export type FleetStatus = (typeof FleetStatus)[keyof typeof FleetStatus];
|
|
1376
|
+
/**
|
|
1377
|
+
* @public
|
|
1378
|
+
* @enum
|
|
1379
|
+
*/
|
|
1380
|
+
export declare const FleetAction: {
|
|
1381
|
+
readonly AutoScaling: "AUTO_SCALING";
|
|
1382
|
+
};
|
|
1383
|
+
/**
|
|
1384
|
+
* @public
|
|
1385
|
+
*/
|
|
1386
|
+
export type FleetAction = (typeof FleetAction)[keyof typeof FleetAction];
|
|
1297
1387
|
/**
|
|
1298
1388
|
* @public
|
|
1299
1389
|
* <p>Describes a GameLift fleet of game hosting resources.</p>
|
|
@@ -1664,104 +1754,114 @@ export interface GameServerGroupAutoScalingPolicy {
|
|
|
1664
1754
|
}
|
|
1665
1755
|
/**
|
|
1666
1756
|
* @public
|
|
1667
|
-
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
-
|
|
1676
|
-
|
|
1677
|
-
|
|
1678
|
-
|
|
1679
|
-
|
|
1680
|
-
|
|
1681
|
-
|
|
1682
|
-
|
|
1683
|
-
|
|
1684
|
-
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
|
|
1695
|
-
|
|
1696
|
-
|
|
1697
|
-
|
|
1698
|
-
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
|
|
1704
|
-
|
|
1705
|
-
|
|
1706
|
-
|
|
1707
|
-
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
|
-
|
|
1711
|
-
|
|
1712
|
-
|
|
1713
|
-
|
|
1714
|
-
|
|
1715
|
-
|
|
1716
|
-
|
|
1717
|
-
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
-
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
|
|
1728
|
-
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
|
|
1736
|
-
|
|
1737
|
-
|
|
1738
|
-
|
|
1739
|
-
|
|
1740
|
-
|
|
1741
|
-
|
|
1742
|
-
|
|
1743
|
-
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
|
|
1752
|
-
|
|
1753
|
-
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
|
|
1757
|
-
|
|
1758
|
-
|
|
1759
|
-
|
|
1760
|
-
|
|
1761
|
-
|
|
1762
|
-
|
|
1763
|
-
|
|
1764
|
-
|
|
1757
|
+
* @enum
|
|
1758
|
+
*/
|
|
1759
|
+
export declare const GameServerProtectionPolicy: {
|
|
1760
|
+
readonly FULL_PROTECTION: "FULL_PROTECTION";
|
|
1761
|
+
readonly NO_PROTECTION: "NO_PROTECTION";
|
|
1762
|
+
};
|
|
1763
|
+
/**
|
|
1764
|
+
* @public
|
|
1765
|
+
*/
|
|
1766
|
+
export type GameServerProtectionPolicy = (typeof GameServerProtectionPolicy)[keyof typeof GameServerProtectionPolicy];
|
|
1767
|
+
/**
|
|
1768
|
+
* @public
|
|
1769
|
+
* @enum
|
|
1770
|
+
*/
|
|
1771
|
+
export declare const GameServerGroupInstanceType: {
|
|
1772
|
+
readonly c4_2xlarge: "c4.2xlarge";
|
|
1773
|
+
readonly c4_4xlarge: "c4.4xlarge";
|
|
1774
|
+
readonly c4_8xlarge: "c4.8xlarge";
|
|
1775
|
+
readonly c4_large: "c4.large";
|
|
1776
|
+
readonly c4_xlarge: "c4.xlarge";
|
|
1777
|
+
readonly c5_12xlarge: "c5.12xlarge";
|
|
1778
|
+
readonly c5_18xlarge: "c5.18xlarge";
|
|
1779
|
+
readonly c5_24xlarge: "c5.24xlarge";
|
|
1780
|
+
readonly c5_2xlarge: "c5.2xlarge";
|
|
1781
|
+
readonly c5_4xlarge: "c5.4xlarge";
|
|
1782
|
+
readonly c5_9xlarge: "c5.9xlarge";
|
|
1783
|
+
readonly c5_large: "c5.large";
|
|
1784
|
+
readonly c5_xlarge: "c5.xlarge";
|
|
1785
|
+
readonly c5a_12xlarge: "c5a.12xlarge";
|
|
1786
|
+
readonly c5a_16xlarge: "c5a.16xlarge";
|
|
1787
|
+
readonly c5a_24xlarge: "c5a.24xlarge";
|
|
1788
|
+
readonly c5a_2xlarge: "c5a.2xlarge";
|
|
1789
|
+
readonly c5a_4xlarge: "c5a.4xlarge";
|
|
1790
|
+
readonly c5a_8xlarge: "c5a.8xlarge";
|
|
1791
|
+
readonly c5a_large: "c5a.large";
|
|
1792
|
+
readonly c5a_xlarge: "c5a.xlarge";
|
|
1793
|
+
readonly c6g_12xlarge: "c6g.12xlarge";
|
|
1794
|
+
readonly c6g_16xlarge: "c6g.16xlarge";
|
|
1795
|
+
readonly c6g_2xlarge: "c6g.2xlarge";
|
|
1796
|
+
readonly c6g_4xlarge: "c6g.4xlarge";
|
|
1797
|
+
readonly c6g_8xlarge: "c6g.8xlarge";
|
|
1798
|
+
readonly c6g_large: "c6g.large";
|
|
1799
|
+
readonly c6g_medium: "c6g.medium";
|
|
1800
|
+
readonly c6g_xlarge: "c6g.xlarge";
|
|
1801
|
+
readonly m4_10xlarge: "m4.10xlarge";
|
|
1802
|
+
readonly m4_2xlarge: "m4.2xlarge";
|
|
1803
|
+
readonly m4_4xlarge: "m4.4xlarge";
|
|
1804
|
+
readonly m4_large: "m4.large";
|
|
1805
|
+
readonly m4_xlarge: "m4.xlarge";
|
|
1806
|
+
readonly m5_12xlarge: "m5.12xlarge";
|
|
1807
|
+
readonly m5_16xlarge: "m5.16xlarge";
|
|
1808
|
+
readonly m5_24xlarge: "m5.24xlarge";
|
|
1809
|
+
readonly m5_2xlarge: "m5.2xlarge";
|
|
1810
|
+
readonly m5_4xlarge: "m5.4xlarge";
|
|
1811
|
+
readonly m5_8xlarge: "m5.8xlarge";
|
|
1812
|
+
readonly m5_large: "m5.large";
|
|
1813
|
+
readonly m5_xlarge: "m5.xlarge";
|
|
1814
|
+
readonly m5a_12xlarge: "m5a.12xlarge";
|
|
1815
|
+
readonly m5a_16xlarge: "m5a.16xlarge";
|
|
1816
|
+
readonly m5a_24xlarge: "m5a.24xlarge";
|
|
1817
|
+
readonly m5a_2xlarge: "m5a.2xlarge";
|
|
1818
|
+
readonly m5a_4xlarge: "m5a.4xlarge";
|
|
1819
|
+
readonly m5a_8xlarge: "m5a.8xlarge";
|
|
1820
|
+
readonly m5a_large: "m5a.large";
|
|
1821
|
+
readonly m5a_xlarge: "m5a.xlarge";
|
|
1822
|
+
readonly m6g_12xlarge: "m6g.12xlarge";
|
|
1823
|
+
readonly m6g_16xlarge: "m6g.16xlarge";
|
|
1824
|
+
readonly m6g_2xlarge: "m6g.2xlarge";
|
|
1825
|
+
readonly m6g_4xlarge: "m6g.4xlarge";
|
|
1826
|
+
readonly m6g_8xlarge: "m6g.8xlarge";
|
|
1827
|
+
readonly m6g_large: "m6g.large";
|
|
1828
|
+
readonly m6g_medium: "m6g.medium";
|
|
1829
|
+
readonly m6g_xlarge: "m6g.xlarge";
|
|
1830
|
+
readonly r4_16xlarge: "r4.16xlarge";
|
|
1831
|
+
readonly r4_2xlarge: "r4.2xlarge";
|
|
1832
|
+
readonly r4_4xlarge: "r4.4xlarge";
|
|
1833
|
+
readonly r4_8xlarge: "r4.8xlarge";
|
|
1834
|
+
readonly r4_large: "r4.large";
|
|
1835
|
+
readonly r4_xlarge: "r4.xlarge";
|
|
1836
|
+
readonly r5_12xlarge: "r5.12xlarge";
|
|
1837
|
+
readonly r5_16xlarge: "r5.16xlarge";
|
|
1838
|
+
readonly r5_24xlarge: "r5.24xlarge";
|
|
1839
|
+
readonly r5_2xlarge: "r5.2xlarge";
|
|
1840
|
+
readonly r5_4xlarge: "r5.4xlarge";
|
|
1841
|
+
readonly r5_8xlarge: "r5.8xlarge";
|
|
1842
|
+
readonly r5_large: "r5.large";
|
|
1843
|
+
readonly r5_xlarge: "r5.xlarge";
|
|
1844
|
+
readonly r5a_12xlarge: "r5a.12xlarge";
|
|
1845
|
+
readonly r5a_16xlarge: "r5a.16xlarge";
|
|
1846
|
+
readonly r5a_24xlarge: "r5a.24xlarge";
|
|
1847
|
+
readonly r5a_2xlarge: "r5a.2xlarge";
|
|
1848
|
+
readonly r5a_4xlarge: "r5a.4xlarge";
|
|
1849
|
+
readonly r5a_8xlarge: "r5a.8xlarge";
|
|
1850
|
+
readonly r5a_large: "r5a.large";
|
|
1851
|
+
readonly r5a_xlarge: "r5a.xlarge";
|
|
1852
|
+
readonly r6g_12xlarge: "r6g.12xlarge";
|
|
1853
|
+
readonly r6g_16xlarge: "r6g.16xlarge";
|
|
1854
|
+
readonly r6g_2xlarge: "r6g.2xlarge";
|
|
1855
|
+
readonly r6g_4xlarge: "r6g.4xlarge";
|
|
1856
|
+
readonly r6g_8xlarge: "r6g.8xlarge";
|
|
1857
|
+
readonly r6g_large: "r6g.large";
|
|
1858
|
+
readonly r6g_medium: "r6g.medium";
|
|
1859
|
+
readonly r6g_xlarge: "r6g.xlarge";
|
|
1860
|
+
};
|
|
1861
|
+
/**
|
|
1862
|
+
* @public
|
|
1863
|
+
*/
|
|
1864
|
+
export type GameServerGroupInstanceType = (typeof GameServerGroupInstanceType)[keyof typeof GameServerGroupInstanceType];
|
|
1765
1865
|
/**
|
|
1766
1866
|
* @public
|
|
1767
1867
|
* <p>
|
|
@@ -1936,22 +2036,32 @@ export interface CreateGameServerGroupInput {
|
|
|
1936
2036
|
}
|
|
1937
2037
|
/**
|
|
1938
2038
|
* @public
|
|
2039
|
+
* @enum
|
|
1939
2040
|
*/
|
|
1940
|
-
export declare
|
|
1941
|
-
ACTIVATING
|
|
1942
|
-
ACTIVE
|
|
1943
|
-
DELETED
|
|
1944
|
-
DELETE_SCHEDULED
|
|
1945
|
-
DELETING
|
|
1946
|
-
ERROR
|
|
1947
|
-
NEW
|
|
1948
|
-
}
|
|
2041
|
+
export declare const GameServerGroupStatus: {
|
|
2042
|
+
readonly ACTIVATING: "ACTIVATING";
|
|
2043
|
+
readonly ACTIVE: "ACTIVE";
|
|
2044
|
+
readonly DELETED: "DELETED";
|
|
2045
|
+
readonly DELETE_SCHEDULED: "DELETE_SCHEDULED";
|
|
2046
|
+
readonly DELETING: "DELETING";
|
|
2047
|
+
readonly ERROR: "ERROR";
|
|
2048
|
+
readonly NEW: "NEW";
|
|
2049
|
+
};
|
|
1949
2050
|
/**
|
|
1950
2051
|
* @public
|
|
1951
2052
|
*/
|
|
1952
|
-
export
|
|
1953
|
-
|
|
1954
|
-
|
|
2053
|
+
export type GameServerGroupStatus = (typeof GameServerGroupStatus)[keyof typeof GameServerGroupStatus];
|
|
2054
|
+
/**
|
|
2055
|
+
* @public
|
|
2056
|
+
* @enum
|
|
2057
|
+
*/
|
|
2058
|
+
export declare const GameServerGroupAction: {
|
|
2059
|
+
readonly REPLACE_INSTANCE_TYPES: "REPLACE_INSTANCE_TYPES";
|
|
2060
|
+
};
|
|
2061
|
+
/**
|
|
2062
|
+
* @public
|
|
2063
|
+
*/
|
|
2064
|
+
export type GameServerGroupAction = (typeof GameServerGroupAction)[keyof typeof GameServerGroupAction];
|
|
1955
2065
|
/**
|
|
1956
2066
|
* @public
|
|
1957
2067
|
* <p>
|
|
@@ -2190,27 +2300,42 @@ export interface CreateGameSessionInput {
|
|
|
2190
2300
|
}
|
|
2191
2301
|
/**
|
|
2192
2302
|
* @public
|
|
2303
|
+
* @enum
|
|
2193
2304
|
*/
|
|
2194
|
-
export declare
|
|
2195
|
-
ACCEPT_ALL
|
|
2196
|
-
DENY_ALL
|
|
2197
|
-
}
|
|
2305
|
+
export declare const PlayerSessionCreationPolicy: {
|
|
2306
|
+
readonly ACCEPT_ALL: "ACCEPT_ALL";
|
|
2307
|
+
readonly DENY_ALL: "DENY_ALL";
|
|
2308
|
+
};
|
|
2198
2309
|
/**
|
|
2199
2310
|
* @public
|
|
2200
2311
|
*/
|
|
2201
|
-
export
|
|
2202
|
-
ACTIVATING = "ACTIVATING",
|
|
2203
|
-
ACTIVE = "ACTIVE",
|
|
2204
|
-
ERROR = "ERROR",
|
|
2205
|
-
TERMINATED = "TERMINATED",
|
|
2206
|
-
TERMINATING = "TERMINATING"
|
|
2207
|
-
}
|
|
2312
|
+
export type PlayerSessionCreationPolicy = (typeof PlayerSessionCreationPolicy)[keyof typeof PlayerSessionCreationPolicy];
|
|
2208
2313
|
/**
|
|
2209
2314
|
* @public
|
|
2315
|
+
* @enum
|
|
2210
2316
|
*/
|
|
2211
|
-
export declare
|
|
2212
|
-
|
|
2213
|
-
|
|
2317
|
+
export declare const GameSessionStatus: {
|
|
2318
|
+
readonly ACTIVATING: "ACTIVATING";
|
|
2319
|
+
readonly ACTIVE: "ACTIVE";
|
|
2320
|
+
readonly ERROR: "ERROR";
|
|
2321
|
+
readonly TERMINATED: "TERMINATED";
|
|
2322
|
+
readonly TERMINATING: "TERMINATING";
|
|
2323
|
+
};
|
|
2324
|
+
/**
|
|
2325
|
+
* @public
|
|
2326
|
+
*/
|
|
2327
|
+
export type GameSessionStatus = (typeof GameSessionStatus)[keyof typeof GameSessionStatus];
|
|
2328
|
+
/**
|
|
2329
|
+
* @public
|
|
2330
|
+
* @enum
|
|
2331
|
+
*/
|
|
2332
|
+
export declare const GameSessionStatusReason: {
|
|
2333
|
+
readonly INTERRUPTED: "INTERRUPTED";
|
|
2334
|
+
};
|
|
2335
|
+
/**
|
|
2336
|
+
* @public
|
|
2337
|
+
*/
|
|
2338
|
+
export type GameSessionStatusReason = (typeof GameSessionStatusReason)[keyof typeof GameSessionStatusReason];
|
|
2214
2339
|
/**
|
|
2215
2340
|
* @public
|
|
2216
2341
|
* <p>Properties describing a game session.</p>
|
|
@@ -2429,13 +2554,18 @@ export interface PlayerLatencyPolicy {
|
|
|
2429
2554
|
}
|
|
2430
2555
|
/**
|
|
2431
2556
|
* @public
|
|
2557
|
+
* @enum
|
|
2432
2558
|
*/
|
|
2433
|
-
export declare
|
|
2434
|
-
COST
|
|
2435
|
-
DESTINATION
|
|
2436
|
-
LATENCY
|
|
2437
|
-
LOCATION
|
|
2438
|
-
}
|
|
2559
|
+
export declare const PriorityType: {
|
|
2560
|
+
readonly COST: "COST";
|
|
2561
|
+
readonly DESTINATION: "DESTINATION";
|
|
2562
|
+
readonly LATENCY: "LATENCY";
|
|
2563
|
+
readonly LOCATION: "LOCATION";
|
|
2564
|
+
};
|
|
2565
|
+
/**
|
|
2566
|
+
* @public
|
|
2567
|
+
*/
|
|
2568
|
+
export type PriorityType = (typeof PriorityType)[keyof typeof PriorityType];
|
|
2439
2569
|
/**
|
|
2440
2570
|
* @public
|
|
2441
2571
|
* <p>Custom prioritization settings for use by a game session queue when placing new game
|
|
@@ -2661,11 +2791,16 @@ export interface CreateLocationOutput {
|
|
|
2661
2791
|
}
|
|
2662
2792
|
/**
|
|
2663
2793
|
* @public
|
|
2794
|
+
* @enum
|
|
2664
2795
|
*/
|
|
2665
|
-
export declare
|
|
2666
|
-
STANDALONE
|
|
2667
|
-
WITH_QUEUE
|
|
2668
|
-
}
|
|
2796
|
+
export declare const FlexMatchMode: {
|
|
2797
|
+
readonly STANDALONE: "STANDALONE";
|
|
2798
|
+
readonly WITH_QUEUE: "WITH_QUEUE";
|
|
2799
|
+
};
|
|
2800
|
+
/**
|
|
2801
|
+
* @public
|
|
2802
|
+
*/
|
|
2803
|
+
export type FlexMatchMode = (typeof FlexMatchMode)[keyof typeof FlexMatchMode];
|
|
2669
2804
|
/**
|
|
2670
2805
|
* @public
|
|
2671
2806
|
*/
|
|
@@ -3007,13 +3142,18 @@ export interface CreatePlayerSessionInput {
|
|
|
3007
3142
|
}
|
|
3008
3143
|
/**
|
|
3009
3144
|
* @public
|
|
3145
|
+
* @enum
|
|
3010
3146
|
*/
|
|
3011
|
-
export declare
|
|
3012
|
-
ACTIVE
|
|
3013
|
-
COMPLETED
|
|
3014
|
-
RESERVED
|
|
3015
|
-
TIMEDOUT
|
|
3016
|
-
}
|
|
3147
|
+
export declare const PlayerSessionStatus: {
|
|
3148
|
+
readonly ACTIVE: "ACTIVE";
|
|
3149
|
+
readonly COMPLETED: "COMPLETED";
|
|
3150
|
+
readonly RESERVED: "RESERVED";
|
|
3151
|
+
readonly TIMEDOUT: "TIMEDOUT";
|
|
3152
|
+
};
|
|
3153
|
+
/**
|
|
3154
|
+
* @public
|
|
3155
|
+
*/
|
|
3156
|
+
export type PlayerSessionStatus = (typeof PlayerSessionStatus)[keyof typeof PlayerSessionStatus];
|
|
3017
3157
|
/**
|
|
3018
3158
|
* @public
|
|
3019
3159
|
* <p>Represents a player session. Player sessions are created either for a specific game
|
|
@@ -3449,12 +3589,17 @@ export interface DeleteFleetLocationsOutput {
|
|
|
3449
3589
|
}
|
|
3450
3590
|
/**
|
|
3451
3591
|
* @public
|
|
3592
|
+
* @enum
|
|
3452
3593
|
*/
|
|
3453
|
-
export declare
|
|
3454
|
-
FORCE_DELETE
|
|
3455
|
-
RETAIN
|
|
3456
|
-
SAFE_DELETE
|
|
3457
|
-
}
|
|
3594
|
+
export declare const GameServerGroupDeleteOption: {
|
|
3595
|
+
readonly FORCE_DELETE: "FORCE_DELETE";
|
|
3596
|
+
readonly RETAIN: "RETAIN";
|
|
3597
|
+
readonly SAFE_DELETE: "SAFE_DELETE";
|
|
3598
|
+
};
|
|
3599
|
+
/**
|
|
3600
|
+
* @public
|
|
3601
|
+
*/
|
|
3602
|
+
export type GameServerGroupDeleteOption = (typeof GameServerGroupDeleteOption)[keyof typeof GameServerGroupDeleteOption];
|
|
3458
3603
|
/**
|
|
3459
3604
|
* @public
|
|
3460
3605
|
*/
|
|
@@ -3941,43 +4086,48 @@ export interface DescribeFleetEventsInput {
|
|
|
3941
4086
|
}
|
|
3942
4087
|
/**
|
|
3943
4088
|
* @public
|
|
3944
|
-
|
|
3945
|
-
|
|
3946
|
-
|
|
3947
|
-
|
|
3948
|
-
|
|
3949
|
-
|
|
3950
|
-
|
|
3951
|
-
|
|
3952
|
-
|
|
3953
|
-
|
|
3954
|
-
|
|
3955
|
-
|
|
3956
|
-
|
|
3957
|
-
|
|
3958
|
-
|
|
3959
|
-
|
|
3960
|
-
|
|
3961
|
-
|
|
3962
|
-
|
|
3963
|
-
|
|
3964
|
-
|
|
3965
|
-
|
|
3966
|
-
|
|
3967
|
-
|
|
3968
|
-
|
|
3969
|
-
|
|
3970
|
-
|
|
3971
|
-
|
|
3972
|
-
|
|
3973
|
-
|
|
3974
|
-
|
|
3975
|
-
|
|
3976
|
-
|
|
3977
|
-
|
|
3978
|
-
|
|
3979
|
-
|
|
3980
|
-
|
|
4089
|
+
* @enum
|
|
4090
|
+
*/
|
|
4091
|
+
export declare const EventCode: {
|
|
4092
|
+
readonly FLEET_ACTIVATION_FAILED: "FLEET_ACTIVATION_FAILED";
|
|
4093
|
+
readonly FLEET_ACTIVATION_FAILED_NO_INSTANCES: "FLEET_ACTIVATION_FAILED_NO_INSTANCES";
|
|
4094
|
+
readonly FLEET_BINARY_DOWNLOAD_FAILED: "FLEET_BINARY_DOWNLOAD_FAILED";
|
|
4095
|
+
readonly FLEET_CREATED: "FLEET_CREATED";
|
|
4096
|
+
readonly FLEET_CREATION_EXTRACTING_BUILD: "FLEET_CREATION_EXTRACTING_BUILD";
|
|
4097
|
+
readonly FLEET_CREATION_RUNNING_INSTALLER: "FLEET_CREATION_RUNNING_INSTALLER";
|
|
4098
|
+
readonly FLEET_CREATION_VALIDATING_RUNTIME_CONFIG: "FLEET_CREATION_VALIDATING_RUNTIME_CONFIG";
|
|
4099
|
+
readonly FLEET_DELETED: "FLEET_DELETED";
|
|
4100
|
+
readonly FLEET_INITIALIZATION_FAILED: "FLEET_INITIALIZATION_FAILED";
|
|
4101
|
+
readonly FLEET_NEW_GAME_SESSION_PROTECTION_POLICY_UPDATED: "FLEET_NEW_GAME_SESSION_PROTECTION_POLICY_UPDATED";
|
|
4102
|
+
readonly FLEET_SCALING_EVENT: "FLEET_SCALING_EVENT";
|
|
4103
|
+
readonly FLEET_STATE_ACTIVATING: "FLEET_STATE_ACTIVATING";
|
|
4104
|
+
readonly FLEET_STATE_ACTIVE: "FLEET_STATE_ACTIVE";
|
|
4105
|
+
readonly FLEET_STATE_BUILDING: "FLEET_STATE_BUILDING";
|
|
4106
|
+
readonly FLEET_STATE_DOWNLOADING: "FLEET_STATE_DOWNLOADING";
|
|
4107
|
+
readonly FLEET_STATE_ERROR: "FLEET_STATE_ERROR";
|
|
4108
|
+
readonly FLEET_STATE_VALIDATING: "FLEET_STATE_VALIDATING";
|
|
4109
|
+
readonly FLEET_VALIDATION_EXECUTABLE_RUNTIME_FAILURE: "FLEET_VALIDATION_EXECUTABLE_RUNTIME_FAILURE";
|
|
4110
|
+
readonly FLEET_VALIDATION_LAUNCH_PATH_NOT_FOUND: "FLEET_VALIDATION_LAUNCH_PATH_NOT_FOUND";
|
|
4111
|
+
readonly FLEET_VALIDATION_TIMED_OUT: "FLEET_VALIDATION_TIMED_OUT";
|
|
4112
|
+
readonly FLEET_VPC_PEERING_DELETED: "FLEET_VPC_PEERING_DELETED";
|
|
4113
|
+
readonly FLEET_VPC_PEERING_FAILED: "FLEET_VPC_PEERING_FAILED";
|
|
4114
|
+
readonly FLEET_VPC_PEERING_SUCCEEDED: "FLEET_VPC_PEERING_SUCCEEDED";
|
|
4115
|
+
readonly GAME_SESSION_ACTIVATION_TIMEOUT: "GAME_SESSION_ACTIVATION_TIMEOUT";
|
|
4116
|
+
readonly GENERIC_EVENT: "GENERIC_EVENT";
|
|
4117
|
+
readonly INSTANCE_INTERRUPTED: "INSTANCE_INTERRUPTED";
|
|
4118
|
+
readonly INSTANCE_RECYCLED: "INSTANCE_RECYCLED";
|
|
4119
|
+
readonly SERVER_PROCESS_CRASHED: "SERVER_PROCESS_CRASHED";
|
|
4120
|
+
readonly SERVER_PROCESS_FORCE_TERMINATED: "SERVER_PROCESS_FORCE_TERMINATED";
|
|
4121
|
+
readonly SERVER_PROCESS_INVALID_PATH: "SERVER_PROCESS_INVALID_PATH";
|
|
4122
|
+
readonly SERVER_PROCESS_PROCESS_EXIT_TIMEOUT: "SERVER_PROCESS_PROCESS_EXIT_TIMEOUT";
|
|
4123
|
+
readonly SERVER_PROCESS_PROCESS_READY_TIMEOUT: "SERVER_PROCESS_PROCESS_READY_TIMEOUT";
|
|
4124
|
+
readonly SERVER_PROCESS_SDK_INITIALIZATION_TIMEOUT: "SERVER_PROCESS_SDK_INITIALIZATION_TIMEOUT";
|
|
4125
|
+
readonly SERVER_PROCESS_TERMINATED_UNHEALTHY: "SERVER_PROCESS_TERMINATED_UNHEALTHY";
|
|
4126
|
+
};
|
|
4127
|
+
/**
|
|
4128
|
+
* @public
|
|
4129
|
+
*/
|
|
4130
|
+
export type EventCode = (typeof EventCode)[keyof typeof EventCode];
|
|
3981
4131
|
/**
|
|
3982
4132
|
* @public
|
|
3983
4133
|
* <p>Log entry describing an event that involves GameLift resources (such as a fleet). In
|
|
@@ -4271,10 +4421,15 @@ export interface DescribeFleetLocationAttributesInput {
|
|
|
4271
4421
|
}
|
|
4272
4422
|
/**
|
|
4273
4423
|
* @public
|
|
4424
|
+
* @enum
|
|
4274
4425
|
*/
|
|
4275
|
-
export declare
|
|
4276
|
-
PENDING_UPDATE
|
|
4277
|
-
}
|
|
4426
|
+
export declare const LocationUpdateStatus: {
|
|
4427
|
+
readonly PENDING_UPDATE: "PENDING_UPDATE";
|
|
4428
|
+
};
|
|
4429
|
+
/**
|
|
4430
|
+
* @public
|
|
4431
|
+
*/
|
|
4432
|
+
export type LocationUpdateStatus = (typeof LocationUpdateStatus)[keyof typeof LocationUpdateStatus];
|
|
4278
4433
|
/**
|
|
4279
4434
|
* @public
|
|
4280
4435
|
* <p>Details about a location in a multi-location fleet.</p>
|
|
@@ -4553,12 +4708,17 @@ export interface DescribeGameServerInstancesInput {
|
|
|
4553
4708
|
}
|
|
4554
4709
|
/**
|
|
4555
4710
|
* @public
|
|
4711
|
+
* @enum
|
|
4556
4712
|
*/
|
|
4557
|
-
export declare
|
|
4558
|
-
ACTIVE
|
|
4559
|
-
DRAINING
|
|
4560
|
-
SPOT_TERMINATING
|
|
4561
|
-
}
|
|
4713
|
+
export declare const GameServerInstanceStatus: {
|
|
4714
|
+
readonly ACTIVE: "ACTIVE";
|
|
4715
|
+
readonly DRAINING: "DRAINING";
|
|
4716
|
+
readonly SPOT_TERMINATING: "SPOT_TERMINATING";
|
|
4717
|
+
};
|
|
4718
|
+
/**
|
|
4719
|
+
* @public
|
|
4720
|
+
*/
|
|
4721
|
+
export type GameServerInstanceStatus = (typeof GameServerInstanceStatus)[keyof typeof GameServerInstanceStatus];
|
|
4562
4722
|
/**
|
|
4563
4723
|
* @public
|
|
4564
4724
|
* <p>
|
|
@@ -4735,14 +4895,19 @@ export interface PlayerLatency {
|
|
|
4735
4895
|
}
|
|
4736
4896
|
/**
|
|
4737
4897
|
* @public
|
|
4898
|
+
* @enum
|
|
4738
4899
|
*/
|
|
4739
|
-
export declare
|
|
4740
|
-
CANCELLED
|
|
4741
|
-
FAILED
|
|
4742
|
-
FULFILLED
|
|
4743
|
-
PENDING
|
|
4744
|
-
TIMED_OUT
|
|
4745
|
-
}
|
|
4900
|
+
export declare const GameSessionPlacementState: {
|
|
4901
|
+
readonly CANCELLED: "CANCELLED";
|
|
4902
|
+
readonly FAILED: "FAILED";
|
|
4903
|
+
readonly FULFILLED: "FULFILLED";
|
|
4904
|
+
readonly PENDING: "PENDING";
|
|
4905
|
+
readonly TIMED_OUT: "TIMED_OUT";
|
|
4906
|
+
};
|
|
4907
|
+
/**
|
|
4908
|
+
* @public
|
|
4909
|
+
*/
|
|
4910
|
+
export type GameSessionPlacementState = (typeof GameSessionPlacementState)[keyof typeof GameSessionPlacementState];
|
|
4746
4911
|
/**
|
|
4747
4912
|
* @public
|
|
4748
4913
|
* <p>This object includes the full details of the original request plus the current status
|
|
@@ -5005,12 +5170,17 @@ export interface DescribeInstancesInput {
|
|
|
5005
5170
|
}
|
|
5006
5171
|
/**
|
|
5007
5172
|
* @public
|
|
5173
|
+
* @enum
|
|
5008
5174
|
*/
|
|
5009
|
-
export declare
|
|
5010
|
-
ACTIVE
|
|
5011
|
-
PENDING
|
|
5012
|
-
TERMINATING
|
|
5013
|
-
}
|
|
5175
|
+
export declare const InstanceStatus: {
|
|
5176
|
+
readonly ACTIVE: "ACTIVE";
|
|
5177
|
+
readonly PENDING: "PENDING";
|
|
5178
|
+
readonly TERMINATING: "TERMINATING";
|
|
5179
|
+
};
|
|
5180
|
+
/**
|
|
5181
|
+
* @public
|
|
5182
|
+
*/
|
|
5183
|
+
export type InstanceStatus = (typeof InstanceStatus)[keyof typeof InstanceStatus];
|
|
5014
5184
|
/**
|
|
5015
5185
|
* @public
|
|
5016
5186
|
* <p>Represents an EC2 instance of virtual computing resources that hosts one or more game
|
|
@@ -5211,17 +5381,22 @@ export interface Player {
|
|
|
5211
5381
|
}
|
|
5212
5382
|
/**
|
|
5213
5383
|
* @public
|
|
5384
|
+
* @enum
|
|
5214
5385
|
*/
|
|
5215
|
-
export declare
|
|
5216
|
-
CANCELLED
|
|
5217
|
-
COMPLETED
|
|
5218
|
-
FAILED
|
|
5219
|
-
PLACING
|
|
5220
|
-
QUEUED
|
|
5221
|
-
REQUIRES_ACCEPTANCE
|
|
5222
|
-
SEARCHING
|
|
5223
|
-
TIMED_OUT
|
|
5224
|
-
}
|
|
5386
|
+
export declare const MatchmakingConfigurationStatus: {
|
|
5387
|
+
readonly CANCELLED: "CANCELLED";
|
|
5388
|
+
readonly COMPLETED: "COMPLETED";
|
|
5389
|
+
readonly FAILED: "FAILED";
|
|
5390
|
+
readonly PLACING: "PLACING";
|
|
5391
|
+
readonly QUEUED: "QUEUED";
|
|
5392
|
+
readonly REQUIRES_ACCEPTANCE: "REQUIRES_ACCEPTANCE";
|
|
5393
|
+
readonly SEARCHING: "SEARCHING";
|
|
5394
|
+
readonly TIMED_OUT: "TIMED_OUT";
|
|
5395
|
+
};
|
|
5396
|
+
/**
|
|
5397
|
+
* @public
|
|
5398
|
+
*/
|
|
5399
|
+
export type MatchmakingConfigurationStatus = (typeof MatchmakingConfigurationStatus)[keyof typeof MatchmakingConfigurationStatus];
|
|
5225
5400
|
/**
|
|
5226
5401
|
* @public
|
|
5227
5402
|
* <p>Ticket generated to track the progress of a matchmaking request. Each ticket is
|
|
@@ -5507,16 +5682,21 @@ export interface DescribeRuntimeConfigurationOutput {
|
|
|
5507
5682
|
}
|
|
5508
5683
|
/**
|
|
5509
5684
|
* @public
|
|
5685
|
+
* @enum
|
|
5510
5686
|
*/
|
|
5511
|
-
export declare
|
|
5512
|
-
ACTIVE
|
|
5513
|
-
DELETED
|
|
5514
|
-
DELETE_REQUESTED
|
|
5515
|
-
DELETING
|
|
5516
|
-
ERROR
|
|
5517
|
-
UPDATE_REQUESTED
|
|
5518
|
-
UPDATING
|
|
5519
|
-
}
|
|
5687
|
+
export declare const ScalingStatusType: {
|
|
5688
|
+
readonly ACTIVE: "ACTIVE";
|
|
5689
|
+
readonly DELETED: "DELETED";
|
|
5690
|
+
readonly DELETE_REQUESTED: "DELETE_REQUESTED";
|
|
5691
|
+
readonly DELETING: "DELETING";
|
|
5692
|
+
readonly ERROR: "ERROR";
|
|
5693
|
+
readonly UPDATE_REQUESTED: "UPDATE_REQUESTED";
|
|
5694
|
+
readonly UPDATING: "UPDATING";
|
|
5695
|
+
};
|
|
5696
|
+
/**
|
|
5697
|
+
* @public
|
|
5698
|
+
*/
|
|
5699
|
+
export type ScalingStatusType = (typeof ScalingStatusType)[keyof typeof ScalingStatusType];
|
|
5520
5700
|
/**
|
|
5521
5701
|
* @public
|
|
5522
5702
|
*/
|
|
@@ -5584,36 +5764,51 @@ export interface DescribeScalingPoliciesInput {
|
|
|
5584
5764
|
}
|
|
5585
5765
|
/**
|
|
5586
5766
|
* @public
|
|
5767
|
+
* @enum
|
|
5587
5768
|
*/
|
|
5588
|
-
export declare
|
|
5589
|
-
ActivatingGameSessions
|
|
5590
|
-
ActiveGameSessions
|
|
5591
|
-
ActiveInstances
|
|
5592
|
-
AvailableGameSessions
|
|
5593
|
-
AvailablePlayerSessions
|
|
5594
|
-
ConcurrentActivatableGameSessions
|
|
5595
|
-
CurrentPlayerSessions
|
|
5596
|
-
IdleInstances
|
|
5597
|
-
PercentAvailableGameSessions
|
|
5598
|
-
PercentIdleInstances
|
|
5599
|
-
QueueDepth
|
|
5600
|
-
WaitTime
|
|
5601
|
-
}
|
|
5769
|
+
export declare const MetricName: {
|
|
5770
|
+
readonly ActivatingGameSessions: "ActivatingGameSessions";
|
|
5771
|
+
readonly ActiveGameSessions: "ActiveGameSessions";
|
|
5772
|
+
readonly ActiveInstances: "ActiveInstances";
|
|
5773
|
+
readonly AvailableGameSessions: "AvailableGameSessions";
|
|
5774
|
+
readonly AvailablePlayerSessions: "AvailablePlayerSessions";
|
|
5775
|
+
readonly ConcurrentActivatableGameSessions: "ConcurrentActivatableGameSessions";
|
|
5776
|
+
readonly CurrentPlayerSessions: "CurrentPlayerSessions";
|
|
5777
|
+
readonly IdleInstances: "IdleInstances";
|
|
5778
|
+
readonly PercentAvailableGameSessions: "PercentAvailableGameSessions";
|
|
5779
|
+
readonly PercentIdleInstances: "PercentIdleInstances";
|
|
5780
|
+
readonly QueueDepth: "QueueDepth";
|
|
5781
|
+
readonly WaitTime: "WaitTime";
|
|
5782
|
+
};
|
|
5602
5783
|
/**
|
|
5603
5784
|
* @public
|
|
5604
5785
|
*/
|
|
5605
|
-
export
|
|
5606
|
-
RuleBased = "RuleBased",
|
|
5607
|
-
TargetBased = "TargetBased"
|
|
5608
|
-
}
|
|
5786
|
+
export type MetricName = (typeof MetricName)[keyof typeof MetricName];
|
|
5609
5787
|
/**
|
|
5610
5788
|
* @public
|
|
5789
|
+
* @enum
|
|
5611
5790
|
*/
|
|
5612
|
-
export declare
|
|
5613
|
-
|
|
5614
|
-
|
|
5615
|
-
|
|
5616
|
-
|
|
5791
|
+
export declare const PolicyType: {
|
|
5792
|
+
readonly RuleBased: "RuleBased";
|
|
5793
|
+
readonly TargetBased: "TargetBased";
|
|
5794
|
+
};
|
|
5795
|
+
/**
|
|
5796
|
+
* @public
|
|
5797
|
+
*/
|
|
5798
|
+
export type PolicyType = (typeof PolicyType)[keyof typeof PolicyType];
|
|
5799
|
+
/**
|
|
5800
|
+
* @public
|
|
5801
|
+
* @enum
|
|
5802
|
+
*/
|
|
5803
|
+
export declare const ScalingAdjustmentType: {
|
|
5804
|
+
readonly ChangeInCapacity: "ChangeInCapacity";
|
|
5805
|
+
readonly ExactCapacity: "ExactCapacity";
|
|
5806
|
+
readonly PercentChangeInCapacity: "PercentChangeInCapacity";
|
|
5807
|
+
};
|
|
5808
|
+
/**
|
|
5809
|
+
* @public
|
|
5810
|
+
*/
|
|
5811
|
+
export type ScalingAdjustmentType = (typeof ScalingAdjustmentType)[keyof typeof ScalingAdjustmentType];
|
|
5617
5812
|
/**
|
|
5618
5813
|
* @public
|
|
5619
5814
|
* <p>Settings for a target-based scaling policy. A target-based policy tracks a particular
|
|
@@ -6350,11 +6545,16 @@ export interface ListGameServerGroupsOutput {
|
|
|
6350
6545
|
}
|
|
6351
6546
|
/**
|
|
6352
6547
|
* @public
|
|
6548
|
+
* @enum
|
|
6353
6549
|
*/
|
|
6354
|
-
export declare
|
|
6355
|
-
ASCENDING
|
|
6356
|
-
DESCENDING
|
|
6357
|
-
}
|
|
6550
|
+
export declare const SortOrder: {
|
|
6551
|
+
readonly ASCENDING: "ASCENDING";
|
|
6552
|
+
readonly DESCENDING: "DESCENDING";
|
|
6553
|
+
};
|
|
6554
|
+
/**
|
|
6555
|
+
* @public
|
|
6556
|
+
*/
|
|
6557
|
+
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
6358
6558
|
/**
|
|
6359
6559
|
* @public
|
|
6360
6560
|
*/
|
|
@@ -6395,11 +6595,16 @@ export interface ListGameServersOutput {
|
|
|
6395
6595
|
}
|
|
6396
6596
|
/**
|
|
6397
6597
|
* @public
|
|
6598
|
+
* @enum
|
|
6398
6599
|
*/
|
|
6399
|
-
export declare
|
|
6400
|
-
AWS
|
|
6401
|
-
CUSTOM
|
|
6402
|
-
}
|
|
6600
|
+
export declare const LocationFilter: {
|
|
6601
|
+
readonly AWS: "AWS";
|
|
6602
|
+
readonly CUSTOM: "CUSTOM";
|
|
6603
|
+
};
|
|
6604
|
+
/**
|
|
6605
|
+
* @public
|
|
6606
|
+
*/
|
|
6607
|
+
export type LocationFilter = (typeof LocationFilter)[keyof typeof LocationFilter];
|
|
6403
6608
|
/**
|
|
6404
6609
|
* @public
|
|
6405
6610
|
*/
|