@aws-cdk/aws-gamelift-alpha 2.80.0-alpha.0 → 2.82.0-alpha.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/.jsii +233 -220
- package/.jsii.tabl.json.gz +0 -0
- package/lib/alias.js +2 -2
- package/lib/build-fleet.js +2 -2
- package/lib/build.js +3 -3
- package/lib/content.js +4 -4
- package/lib/fleet-base.js +2 -2
- package/lib/game-server-group.js +3 -3
- package/lib/game-session-queue.js +2 -2
- package/lib/ingress-rule.js +2 -2
- package/lib/matchmaking-configuration.js +2 -2
- package/lib/matchmaking-ruleset-body.js +1 -1
- package/lib/matchmaking-ruleset.js +3 -3
- package/lib/queued-matchmaking-configuration.js +1 -1
- package/lib/script.js +2 -2
- package/lib/standalone-matchmaking-configuration.js +1 -1
- package/package.json +8 -8
package/.jsii
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"url": "https://aws.amazon.com"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"aws-cdk-lib": "2.
|
|
11
|
+
"aws-cdk-lib": "2.82.0",
|
|
12
12
|
"constructs": "^10.0.0"
|
|
13
13
|
},
|
|
14
14
|
"dependencyClosure": {
|
|
@@ -2953,6 +2953,19 @@
|
|
|
2953
2953
|
}
|
|
2954
2954
|
}
|
|
2955
2955
|
},
|
|
2956
|
+
"aws-cdk-lib.aws_shield": {
|
|
2957
|
+
"targets": {
|
|
2958
|
+
"dotnet": {
|
|
2959
|
+
"package": "Amazon.CDK.AWS.Shield"
|
|
2960
|
+
},
|
|
2961
|
+
"java": {
|
|
2962
|
+
"package": "services.shield"
|
|
2963
|
+
},
|
|
2964
|
+
"python": {
|
|
2965
|
+
"module": "aws_cdk.aws_shield"
|
|
2966
|
+
}
|
|
2967
|
+
}
|
|
2968
|
+
},
|
|
2956
2969
|
"aws-cdk-lib.aws_signer": {
|
|
2957
2970
|
"targets": {
|
|
2958
2971
|
"dotnet": {
|
|
@@ -4029,7 +4042,7 @@
|
|
|
4029
4042
|
"docs": {
|
|
4030
4043
|
"stability": "experimental",
|
|
4031
4044
|
"summary": "Game content from a local directory.",
|
|
4032
|
-
"example": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as gamelift_alpha from '@aws-cdk/aws-gamelift-alpha';\nimport * as cdk from 'aws-cdk-lib';\nimport { aws_iam as iam } from 'aws-cdk-lib';\n\ndeclare const dockerImage: cdk.DockerImage;\ndeclare const grantable: iam.IGrantable;\ndeclare const localBundling: cdk.ILocalBundling;\nconst assetContent = new gamelift_alpha.AssetContent('path', /* all optional props */ {\n assetHash: 'assetHash',\n assetHashType: cdk.AssetHashType.SOURCE,\n bundling: {\n image: dockerImage,\n\n // the properties below are optional\n bundlingFileAccess: cdk.BundlingFileAccess.VOLUME_COPY,\n command: ['command'],\n entrypoint: ['entrypoint'],\n environment: {\n environmentKey: 'environment',\n },\n local: localBundling,\n network: 'network',\n outputType: cdk.BundlingOutput.ARCHIVED,\n securityOpt: 'securityOpt',\n user: 'user',\n volumes: [{\n containerPath: 'containerPath',\n hostPath: 'hostPath',\n\n // the properties below are optional\n consistency: cdk.DockerVolumeConsistency.CONSISTENT,\n }],\n volumesFrom: ['volumesFrom'],\n workingDirectory: 'workingDirectory',\n },\n exclude: ['exclude'],\n followSymlinks: cdk.SymlinkFollowMode.NEVER,\n ignoreMode: cdk.IgnoreMode.GLOB,\n readers: [grantable],\n});",
|
|
4045
|
+
"example": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as gamelift_alpha from '@aws-cdk/aws-gamelift-alpha';\nimport * as cdk from 'aws-cdk-lib';\nimport { aws_iam as iam } from 'aws-cdk-lib';\n\ndeclare const dockerImage: cdk.DockerImage;\ndeclare const grantable: iam.IGrantable;\ndeclare const localBundling: cdk.ILocalBundling;\nconst assetContent = new gamelift_alpha.AssetContent('path', /* all optional props */ {\n assetHash: 'assetHash',\n assetHashType: cdk.AssetHashType.SOURCE,\n bundling: {\n image: dockerImage,\n\n // the properties below are optional\n bundlingFileAccess: cdk.BundlingFileAccess.VOLUME_COPY,\n command: ['command'],\n entrypoint: ['entrypoint'],\n environment: {\n environmentKey: 'environment',\n },\n local: localBundling,\n network: 'network',\n outputType: cdk.BundlingOutput.ARCHIVED,\n securityOpt: 'securityOpt',\n user: 'user',\n volumes: [{\n containerPath: 'containerPath',\n hostPath: 'hostPath',\n\n // the properties below are optional\n consistency: cdk.DockerVolumeConsistency.CONSISTENT,\n }],\n volumesFrom: ['volumesFrom'],\n workingDirectory: 'workingDirectory',\n },\n deployTime: false,\n exclude: ['exclude'],\n followSymlinks: cdk.SymlinkFollowMode.NEVER,\n ignoreMode: cdk.IgnoreMode.GLOB,\n readers: [grantable],\n});",
|
|
4033
4046
|
"custom": {
|
|
4034
4047
|
"exampleMetadata": "fixture=_generated"
|
|
4035
4048
|
}
|
|
@@ -4041,7 +4054,7 @@
|
|
|
4041
4054
|
},
|
|
4042
4055
|
"locationInModule": {
|
|
4043
4056
|
"filename": "lib/content.ts",
|
|
4044
|
-
"line":
|
|
4057
|
+
"line": 87
|
|
4045
4058
|
},
|
|
4046
4059
|
"parameters": [
|
|
4047
4060
|
{
|
|
@@ -4065,7 +4078,7 @@
|
|
|
4065
4078
|
"kind": "class",
|
|
4066
4079
|
"locationInModule": {
|
|
4067
4080
|
"filename": "lib/content.ts",
|
|
4068
|
-
"line":
|
|
4081
|
+
"line": 81
|
|
4069
4082
|
},
|
|
4070
4083
|
"methods": [
|
|
4071
4084
|
{
|
|
@@ -4075,7 +4088,7 @@
|
|
|
4075
4088
|
},
|
|
4076
4089
|
"locationInModule": {
|
|
4077
4090
|
"filename": "lib/content.ts",
|
|
4078
|
-
"line":
|
|
4091
|
+
"line": 91
|
|
4079
4092
|
},
|
|
4080
4093
|
"name": "bind",
|
|
4081
4094
|
"overrides": "@aws-cdk/aws-gamelift-alpha.Content",
|
|
@@ -4110,7 +4123,7 @@
|
|
|
4110
4123
|
"immutable": true,
|
|
4111
4124
|
"locationInModule": {
|
|
4112
4125
|
"filename": "lib/content.ts",
|
|
4113
|
-
"line":
|
|
4126
|
+
"line": 87
|
|
4114
4127
|
},
|
|
4115
4128
|
"name": "path",
|
|
4116
4129
|
"type": {
|
|
@@ -4136,7 +4149,7 @@
|
|
|
4136
4149
|
"kind": "interface",
|
|
4137
4150
|
"locationInModule": {
|
|
4138
4151
|
"filename": "lib/game-server-group.ts",
|
|
4139
|
-
"line":
|
|
4152
|
+
"line": 12
|
|
4140
4153
|
},
|
|
4141
4154
|
"name": "AutoScalingPolicy",
|
|
4142
4155
|
"properties": [
|
|
@@ -4150,7 +4163,7 @@
|
|
|
4150
4163
|
"immutable": true,
|
|
4151
4164
|
"locationInModule": {
|
|
4152
4165
|
"filename": "lib/game-server-group.ts",
|
|
4153
|
-
"line":
|
|
4166
|
+
"line": 27
|
|
4154
4167
|
},
|
|
4155
4168
|
"name": "targetTrackingConfiguration",
|
|
4156
4169
|
"type": {
|
|
@@ -4168,7 +4181,7 @@
|
|
|
4168
4181
|
"immutable": true,
|
|
4169
4182
|
"locationInModule": {
|
|
4170
4183
|
"filename": "lib/game-server-group.ts",
|
|
4171
|
-
"line":
|
|
4184
|
+
"line": 19
|
|
4172
4185
|
},
|
|
4173
4186
|
"name": "estimatedInstanceWarmup",
|
|
4174
4187
|
"optional": true,
|
|
@@ -4189,7 +4202,7 @@
|
|
|
4189
4202
|
"kind": "enum",
|
|
4190
4203
|
"locationInModule": {
|
|
4191
4204
|
"filename": "lib/game-server-group.ts",
|
|
4192
|
-
"line":
|
|
4205
|
+
"line": 72
|
|
4193
4206
|
},
|
|
4194
4207
|
"members": [
|
|
4195
4208
|
{
|
|
@@ -4241,7 +4254,7 @@
|
|
|
4241
4254
|
},
|
|
4242
4255
|
"locationInModule": {
|
|
4243
4256
|
"filename": "lib/build.ts",
|
|
4244
|
-
"line":
|
|
4257
|
+
"line": 239
|
|
4245
4258
|
},
|
|
4246
4259
|
"parameters": [
|
|
4247
4260
|
{
|
|
@@ -4267,7 +4280,7 @@
|
|
|
4267
4280
|
"kind": "class",
|
|
4268
4281
|
"locationInModule": {
|
|
4269
4282
|
"filename": "lib/build.ts",
|
|
4270
|
-
"line":
|
|
4283
|
+
"line": 150
|
|
4271
4284
|
},
|
|
4272
4285
|
"methods": [
|
|
4273
4286
|
{
|
|
@@ -4277,7 +4290,7 @@
|
|
|
4277
4290
|
},
|
|
4278
4291
|
"locationInModule": {
|
|
4279
4292
|
"filename": "lib/build.ts",
|
|
4280
|
-
"line":
|
|
4293
|
+
"line": 164
|
|
4281
4294
|
},
|
|
4282
4295
|
"name": "fromAsset",
|
|
4283
4296
|
"parameters": [
|
|
@@ -4321,7 +4334,7 @@
|
|
|
4321
4334
|
},
|
|
4322
4335
|
"locationInModule": {
|
|
4323
4336
|
"filename": "lib/build.ts",
|
|
4324
|
-
"line":
|
|
4337
|
+
"line": 155
|
|
4325
4338
|
},
|
|
4326
4339
|
"name": "fromBucket",
|
|
4327
4340
|
"parameters": [
|
|
@@ -4371,7 +4384,7 @@
|
|
|
4371
4384
|
},
|
|
4372
4385
|
"locationInModule": {
|
|
4373
4386
|
"filename": "lib/build.ts",
|
|
4374
|
-
"line":
|
|
4387
|
+
"line": 180
|
|
4375
4388
|
},
|
|
4376
4389
|
"name": "fromBuildArn",
|
|
4377
4390
|
"parameters": [
|
|
@@ -4408,7 +4421,7 @@
|
|
|
4408
4421
|
},
|
|
4409
4422
|
"locationInModule": {
|
|
4410
4423
|
"filename": "lib/build.ts",
|
|
4411
|
-
"line":
|
|
4424
|
+
"line": 187
|
|
4412
4425
|
},
|
|
4413
4426
|
"name": "fromBuildAttributes",
|
|
4414
4427
|
"parameters": [
|
|
@@ -4445,7 +4458,7 @@
|
|
|
4445
4458
|
},
|
|
4446
4459
|
"locationInModule": {
|
|
4447
4460
|
"filename": "lib/build.ts",
|
|
4448
|
-
"line":
|
|
4461
|
+
"line": 173
|
|
4449
4462
|
},
|
|
4450
4463
|
"name": "fromBuildId",
|
|
4451
4464
|
"parameters": [
|
|
@@ -4486,7 +4499,7 @@
|
|
|
4486
4499
|
"immutable": true,
|
|
4487
4500
|
"locationInModule": {
|
|
4488
4501
|
"filename": "lib/build.ts",
|
|
4489
|
-
"line":
|
|
4502
|
+
"line": 227
|
|
4490
4503
|
},
|
|
4491
4504
|
"name": "buildArn",
|
|
4492
4505
|
"overrides": "@aws-cdk/aws-gamelift-alpha.BuildBase",
|
|
@@ -4502,7 +4515,7 @@
|
|
|
4502
4515
|
"immutable": true,
|
|
4503
4516
|
"locationInModule": {
|
|
4504
4517
|
"filename": "lib/build.ts",
|
|
4505
|
-
"line":
|
|
4518
|
+
"line": 222
|
|
4506
4519
|
},
|
|
4507
4520
|
"name": "buildId",
|
|
4508
4521
|
"overrides": "@aws-cdk/aws-gamelift-alpha.BuildBase",
|
|
@@ -4518,7 +4531,7 @@
|
|
|
4518
4531
|
"immutable": true,
|
|
4519
4532
|
"locationInModule": {
|
|
4520
4533
|
"filename": "lib/build.ts",
|
|
4521
|
-
"line":
|
|
4534
|
+
"line": 237
|
|
4522
4535
|
},
|
|
4523
4536
|
"name": "grantPrincipal",
|
|
4524
4537
|
"overrides": "@aws-cdk/aws-gamelift-alpha.BuildBase",
|
|
@@ -4534,7 +4547,7 @@
|
|
|
4534
4547
|
"immutable": true,
|
|
4535
4548
|
"locationInModule": {
|
|
4536
4549
|
"filename": "lib/build.ts",
|
|
4537
|
-
"line":
|
|
4550
|
+
"line": 232
|
|
4538
4551
|
},
|
|
4539
4552
|
"name": "role",
|
|
4540
4553
|
"type": {
|
|
@@ -4559,7 +4572,7 @@
|
|
|
4559
4572
|
"kind": "interface",
|
|
4560
4573
|
"locationInModule": {
|
|
4561
4574
|
"filename": "lib/build.ts",
|
|
4562
|
-
"line":
|
|
4575
|
+
"line": 63
|
|
4563
4576
|
},
|
|
4564
4577
|
"name": "BuildAttributes",
|
|
4565
4578
|
"properties": [
|
|
@@ -4574,7 +4587,7 @@
|
|
|
4574
4587
|
"immutable": true,
|
|
4575
4588
|
"locationInModule": {
|
|
4576
4589
|
"filename": "lib/build.ts",
|
|
4577
|
-
"line":
|
|
4590
|
+
"line": 71
|
|
4578
4591
|
},
|
|
4579
4592
|
"name": "buildArn",
|
|
4580
4593
|
"optional": true,
|
|
@@ -4593,7 +4606,7 @@
|
|
|
4593
4606
|
"immutable": true,
|
|
4594
4607
|
"locationInModule": {
|
|
4595
4608
|
"filename": "lib/build.ts",
|
|
4596
|
-
"line":
|
|
4609
|
+
"line": 80
|
|
4597
4610
|
},
|
|
4598
4611
|
"name": "buildId",
|
|
4599
4612
|
"optional": true,
|
|
@@ -4611,7 +4624,7 @@
|
|
|
4611
4624
|
"immutable": true,
|
|
4612
4625
|
"locationInModule": {
|
|
4613
4626
|
"filename": "lib/build.ts",
|
|
4614
|
-
"line":
|
|
4627
|
+
"line": 85
|
|
4615
4628
|
},
|
|
4616
4629
|
"name": "role",
|
|
4617
4630
|
"optional": true,
|
|
@@ -4858,7 +4871,7 @@
|
|
|
4858
4871
|
},
|
|
4859
4872
|
"locationInModule": {
|
|
4860
4873
|
"filename": "lib/build-fleet.ts",
|
|
4861
|
-
"line":
|
|
4874
|
+
"line": 176
|
|
4862
4875
|
},
|
|
4863
4876
|
"name": "addIngressRule",
|
|
4864
4877
|
"parameters": [
|
|
@@ -5047,7 +5060,7 @@
|
|
|
5047
5060
|
"kind": "interface",
|
|
5048
5061
|
"locationInModule": {
|
|
5049
5062
|
"filename": "lib/build.ts",
|
|
5050
|
-
"line":
|
|
5063
|
+
"line": 91
|
|
5051
5064
|
},
|
|
5052
5065
|
"name": "BuildProps",
|
|
5053
5066
|
"properties": [
|
|
@@ -5060,7 +5073,7 @@
|
|
|
5060
5073
|
"immutable": true,
|
|
5061
5074
|
"locationInModule": {
|
|
5062
5075
|
"filename": "lib/build.ts",
|
|
5063
|
-
"line":
|
|
5076
|
+
"line": 116
|
|
5064
5077
|
},
|
|
5065
5078
|
"name": "content",
|
|
5066
5079
|
"type": {
|
|
@@ -5077,7 +5090,7 @@
|
|
|
5077
5090
|
"immutable": true,
|
|
5078
5091
|
"locationInModule": {
|
|
5079
5092
|
"filename": "lib/build.ts",
|
|
5080
|
-
"line":
|
|
5093
|
+
"line": 97
|
|
5081
5094
|
},
|
|
5082
5095
|
"name": "buildName",
|
|
5083
5096
|
"optional": true,
|
|
@@ -5095,7 +5108,7 @@
|
|
|
5095
5108
|
"immutable": true,
|
|
5096
5109
|
"locationInModule": {
|
|
5097
5110
|
"filename": "lib/build.ts",
|
|
5098
|
-
"line":
|
|
5111
|
+
"line": 104
|
|
5099
5112
|
},
|
|
5100
5113
|
"name": "buildVersion",
|
|
5101
5114
|
"optional": true,
|
|
@@ -5113,7 +5126,7 @@
|
|
|
5113
5126
|
"immutable": true,
|
|
5114
5127
|
"locationInModule": {
|
|
5115
5128
|
"filename": "lib/build.ts",
|
|
5116
|
-
"line":
|
|
5129
|
+
"line": 111
|
|
5117
5130
|
},
|
|
5118
5131
|
"name": "operatingSystem",
|
|
5119
5132
|
"optional": true,
|
|
@@ -5133,7 +5146,7 @@
|
|
|
5133
5146
|
"immutable": true,
|
|
5134
5147
|
"locationInModule": {
|
|
5135
5148
|
"filename": "lib/build.ts",
|
|
5136
|
-
"line":
|
|
5149
|
+
"line": 139
|
|
5137
5150
|
},
|
|
5138
5151
|
"name": "role",
|
|
5139
5152
|
"optional": true,
|
|
@@ -5175,7 +5188,7 @@
|
|
|
5175
5188
|
},
|
|
5176
5189
|
"locationInModule": {
|
|
5177
5190
|
"filename": "lib/content.ts",
|
|
5178
|
-
"line":
|
|
5191
|
+
"line": 27
|
|
5179
5192
|
},
|
|
5180
5193
|
"name": "fromAsset",
|
|
5181
5194
|
"parameters": [
|
|
@@ -5258,7 +5271,7 @@
|
|
|
5258
5271
|
},
|
|
5259
5272
|
"locationInModule": {
|
|
5260
5273
|
"filename": "lib/content.ts",
|
|
5261
|
-
"line":
|
|
5274
|
+
"line": 34
|
|
5262
5275
|
},
|
|
5263
5276
|
"name": "bind",
|
|
5264
5277
|
"parameters": [
|
|
@@ -5300,7 +5313,7 @@
|
|
|
5300
5313
|
"kind": "interface",
|
|
5301
5314
|
"locationInModule": {
|
|
5302
5315
|
"filename": "lib/content.ts",
|
|
5303
|
-
"line":
|
|
5316
|
+
"line": 41
|
|
5304
5317
|
},
|
|
5305
5318
|
"name": "ContentConfig",
|
|
5306
5319
|
"properties": [
|
|
@@ -5313,7 +5326,7 @@
|
|
|
5313
5326
|
"immutable": true,
|
|
5314
5327
|
"locationInModule": {
|
|
5315
5328
|
"filename": "lib/content.ts",
|
|
5316
|
-
"line":
|
|
5329
|
+
"line": 45
|
|
5317
5330
|
},
|
|
5318
5331
|
"name": "s3Location",
|
|
5319
5332
|
"type": {
|
|
@@ -5334,7 +5347,7 @@
|
|
|
5334
5347
|
"kind": "enum",
|
|
5335
5348
|
"locationInModule": {
|
|
5336
5349
|
"filename": "lib/game-server-group.ts",
|
|
5337
|
-
"line":
|
|
5350
|
+
"line": 55
|
|
5338
5351
|
},
|
|
5339
5352
|
"members": [
|
|
5340
5353
|
{
|
|
@@ -5377,7 +5390,7 @@
|
|
|
5377
5390
|
"kind": "interface",
|
|
5378
5391
|
"locationInModule": {
|
|
5379
5392
|
"filename": "lib/fleet-base.ts",
|
|
5380
|
-
"line":
|
|
5393
|
+
"line": 374
|
|
5381
5394
|
},
|
|
5382
5395
|
"name": "FleetAttributes",
|
|
5383
5396
|
"properties": [
|
|
@@ -5392,7 +5405,7 @@
|
|
|
5392
5405
|
"immutable": true,
|
|
5393
5406
|
"locationInModule": {
|
|
5394
5407
|
"filename": "lib/fleet-base.ts",
|
|
5395
|
-
"line":
|
|
5408
|
+
"line": 382
|
|
5396
5409
|
},
|
|
5397
5410
|
"name": "fleetArn",
|
|
5398
5411
|
"optional": true,
|
|
@@ -5411,7 +5424,7 @@
|
|
|
5411
5424
|
"immutable": true,
|
|
5412
5425
|
"locationInModule": {
|
|
5413
5426
|
"filename": "lib/fleet-base.ts",
|
|
5414
|
-
"line":
|
|
5427
|
+
"line": 391
|
|
5415
5428
|
},
|
|
5416
5429
|
"name": "fleetId",
|
|
5417
5430
|
"optional": true,
|
|
@@ -5429,7 +5442,7 @@
|
|
|
5429
5442
|
"immutable": true,
|
|
5430
5443
|
"locationInModule": {
|
|
5431
5444
|
"filename": "lib/fleet-base.ts",
|
|
5432
|
-
"line":
|
|
5445
|
+
"line": 398
|
|
5433
5446
|
},
|
|
5434
5447
|
"name": "role",
|
|
5435
5448
|
"optional": true,
|
|
@@ -5489,7 +5502,7 @@
|
|
|
5489
5502
|
"kind": "class",
|
|
5490
5503
|
"locationInModule": {
|
|
5491
5504
|
"filename": "lib/fleet-base.ts",
|
|
5492
|
-
"line":
|
|
5505
|
+
"line": 404
|
|
5493
5506
|
},
|
|
5494
5507
|
"methods": [
|
|
5495
5508
|
{
|
|
@@ -5499,7 +5512,7 @@
|
|
|
5499
5512
|
},
|
|
5500
5513
|
"locationInModule": {
|
|
5501
5514
|
"filename": "lib/fleet-base.ts",
|
|
5502
|
-
"line":
|
|
5515
|
+
"line": 409
|
|
5503
5516
|
},
|
|
5504
5517
|
"name": "fromFleetAttributes",
|
|
5505
5518
|
"parameters": [
|
|
@@ -5537,7 +5550,7 @@
|
|
|
5537
5550
|
},
|
|
5538
5551
|
"locationInModule": {
|
|
5539
5552
|
"filename": "lib/fleet-base.ts",
|
|
5540
|
-
"line":
|
|
5553
|
+
"line": 476
|
|
5541
5554
|
},
|
|
5542
5555
|
"name": "addAlias",
|
|
5543
5556
|
"parameters": [
|
|
@@ -5574,7 +5587,7 @@
|
|
|
5574
5587
|
},
|
|
5575
5588
|
"locationInModule": {
|
|
5576
5589
|
"filename": "lib/fleet-base.ts",
|
|
5577
|
-
"line":
|
|
5590
|
+
"line": 566
|
|
5578
5591
|
},
|
|
5579
5592
|
"name": "addInternalLocation",
|
|
5580
5593
|
"parameters": [
|
|
@@ -5596,7 +5609,7 @@
|
|
|
5596
5609
|
},
|
|
5597
5610
|
"locationInModule": {
|
|
5598
5611
|
"filename": "lib/fleet-base.ts",
|
|
5599
|
-
"line":
|
|
5612
|
+
"line": 550
|
|
5600
5613
|
},
|
|
5601
5614
|
"name": "addLocation",
|
|
5602
5615
|
"parameters": [
|
|
@@ -5639,7 +5652,7 @@
|
|
|
5639
5652
|
},
|
|
5640
5653
|
"locationInModule": {
|
|
5641
5654
|
"filename": "lib/fleet-base.ts",
|
|
5642
|
-
"line":
|
|
5655
|
+
"line": 484
|
|
5643
5656
|
},
|
|
5644
5657
|
"name": "grant",
|
|
5645
5658
|
"overrides": "@aws-cdk/aws-gamelift-alpha.IFleet",
|
|
@@ -5672,7 +5685,7 @@
|
|
|
5672
5685
|
},
|
|
5673
5686
|
"locationInModule": {
|
|
5674
5687
|
"filename": "lib/fleet-base.ts",
|
|
5675
|
-
"line":
|
|
5688
|
+
"line": 492
|
|
5676
5689
|
},
|
|
5677
5690
|
"name": "metric",
|
|
5678
5691
|
"overrides": "@aws-cdk/aws-gamelift-alpha.IFleet",
|
|
@@ -5705,7 +5718,7 @@
|
|
|
5705
5718
|
},
|
|
5706
5719
|
"locationInModule": {
|
|
5707
5720
|
"filename": "lib/fleet-base.ts",
|
|
5708
|
-
"line":
|
|
5721
|
+
"line": 503
|
|
5709
5722
|
},
|
|
5710
5723
|
"name": "metricActiveInstances",
|
|
5711
5724
|
"overrides": "@aws-cdk/aws-gamelift-alpha.IFleet",
|
|
@@ -5732,7 +5745,7 @@
|
|
|
5732
5745
|
},
|
|
5733
5746
|
"locationInModule": {
|
|
5734
5747
|
"filename": "lib/fleet-base.ts",
|
|
5735
|
-
"line":
|
|
5748
|
+
"line": 511
|
|
5736
5749
|
},
|
|
5737
5750
|
"name": "metricDesiredInstances",
|
|
5738
5751
|
"overrides": "@aws-cdk/aws-gamelift-alpha.IFleet",
|
|
@@ -5759,7 +5772,7 @@
|
|
|
5759
5772
|
},
|
|
5760
5773
|
"locationInModule": {
|
|
5761
5774
|
"filename": "lib/fleet-base.ts",
|
|
5762
|
-
"line":
|
|
5775
|
+
"line": 515
|
|
5763
5776
|
},
|
|
5764
5777
|
"name": "metricIdleInstances",
|
|
5765
5778
|
"overrides": "@aws-cdk/aws-gamelift-alpha.IFleet",
|
|
@@ -5785,7 +5798,7 @@
|
|
|
5785
5798
|
},
|
|
5786
5799
|
"locationInModule": {
|
|
5787
5800
|
"filename": "lib/fleet-base.ts",
|
|
5788
|
-
"line":
|
|
5801
|
+
"line": 519
|
|
5789
5802
|
},
|
|
5790
5803
|
"name": "metricInstanceInterruptions",
|
|
5791
5804
|
"overrides": "@aws-cdk/aws-gamelift-alpha.IFleet",
|
|
@@ -5812,7 +5825,7 @@
|
|
|
5812
5825
|
},
|
|
5813
5826
|
"locationInModule": {
|
|
5814
5827
|
"filename": "lib/fleet-base.ts",
|
|
5815
|
-
"line":
|
|
5828
|
+
"line": 523
|
|
5816
5829
|
},
|
|
5817
5830
|
"name": "metricMaxInstances",
|
|
5818
5831
|
"overrides": "@aws-cdk/aws-gamelift-alpha.IFleet",
|
|
@@ -5839,7 +5852,7 @@
|
|
|
5839
5852
|
},
|
|
5840
5853
|
"locationInModule": {
|
|
5841
5854
|
"filename": "lib/fleet-base.ts",
|
|
5842
|
-
"line":
|
|
5855
|
+
"line": 527
|
|
5843
5856
|
},
|
|
5844
5857
|
"name": "metricMinInstances",
|
|
5845
5858
|
"overrides": "@aws-cdk/aws-gamelift-alpha.IFleet",
|
|
@@ -5866,7 +5879,7 @@
|
|
|
5866
5879
|
},
|
|
5867
5880
|
"locationInModule": {
|
|
5868
5881
|
"filename": "lib/fleet-base.ts",
|
|
5869
|
-
"line":
|
|
5882
|
+
"line": 507
|
|
5870
5883
|
},
|
|
5871
5884
|
"name": "metricPercentIdleInstances",
|
|
5872
5885
|
"overrides": "@aws-cdk/aws-gamelift-alpha.IFleet",
|
|
@@ -5891,7 +5904,7 @@
|
|
|
5891
5904
|
},
|
|
5892
5905
|
"locationInModule": {
|
|
5893
5906
|
"filename": "lib/fleet-base.ts",
|
|
5894
|
-
"line":
|
|
5907
|
+
"line": 604
|
|
5895
5908
|
},
|
|
5896
5909
|
"name": "parseLocationCapacity",
|
|
5897
5910
|
"parameters": [
|
|
@@ -5917,7 +5930,7 @@
|
|
|
5917
5930
|
},
|
|
5918
5931
|
"locationInModule": {
|
|
5919
5932
|
"filename": "lib/fleet-base.ts",
|
|
5920
|
-
"line":
|
|
5933
|
+
"line": 587
|
|
5921
5934
|
},
|
|
5922
5935
|
"name": "parseLocations",
|
|
5923
5936
|
"protected": true,
|
|
@@ -5939,7 +5952,7 @@
|
|
|
5939
5952
|
},
|
|
5940
5953
|
"locationInModule": {
|
|
5941
5954
|
"filename": "lib/fleet-base.ts",
|
|
5942
|
-
"line":
|
|
5955
|
+
"line": 574
|
|
5943
5956
|
},
|
|
5944
5957
|
"name": "parseResourceCreationLimitPolicy",
|
|
5945
5958
|
"parameters": [
|
|
@@ -5964,7 +5977,7 @@
|
|
|
5964
5977
|
},
|
|
5965
5978
|
"locationInModule": {
|
|
5966
5979
|
"filename": "lib/fleet-base.ts",
|
|
5967
|
-
"line":
|
|
5980
|
+
"line": 619
|
|
5968
5981
|
},
|
|
5969
5982
|
"name": "parseRuntimeConfiguration",
|
|
5970
5983
|
"parameters": [
|
|
@@ -5989,7 +6002,7 @@
|
|
|
5989
6002
|
},
|
|
5990
6003
|
"locationInModule": {
|
|
5991
6004
|
"filename": "lib/fleet-base.ts",
|
|
5992
|
-
"line":
|
|
6005
|
+
"line": 641
|
|
5993
6006
|
},
|
|
5994
6007
|
"name": "warnVpcPeeringAuthorizations",
|
|
5995
6008
|
"parameters": [
|
|
@@ -6014,7 +6027,7 @@
|
|
|
6014
6027
|
"immutable": true,
|
|
6015
6028
|
"locationInModule": {
|
|
6016
6029
|
"filename": "lib/fleet-base.ts",
|
|
6017
|
-
"line":
|
|
6030
|
+
"line": 448
|
|
6018
6031
|
},
|
|
6019
6032
|
"name": "fleetArn",
|
|
6020
6033
|
"overrides": "@aws-cdk/aws-gamelift-alpha.IFleet",
|
|
@@ -6031,7 +6044,7 @@
|
|
|
6031
6044
|
"immutable": true,
|
|
6032
6045
|
"locationInModule": {
|
|
6033
6046
|
"filename": "lib/fleet-base.ts",
|
|
6034
|
-
"line":
|
|
6047
|
+
"line": 444
|
|
6035
6048
|
},
|
|
6036
6049
|
"name": "fleetId",
|
|
6037
6050
|
"overrides": "@aws-cdk/aws-gamelift-alpha.IFleet",
|
|
@@ -6048,7 +6061,7 @@
|
|
|
6048
6061
|
"immutable": true,
|
|
6049
6062
|
"locationInModule": {
|
|
6050
6063
|
"filename": "lib/fleet-base.ts",
|
|
6051
|
-
"line":
|
|
6064
|
+
"line": 453
|
|
6052
6065
|
},
|
|
6053
6066
|
"name": "grantPrincipal",
|
|
6054
6067
|
"overrides": "aws-cdk-lib.aws_iam.IGrantable",
|
|
@@ -6064,7 +6077,7 @@
|
|
|
6064
6077
|
"immutable": true,
|
|
6065
6078
|
"locationInModule": {
|
|
6066
6079
|
"filename": "lib/fleet-base.ts",
|
|
6067
|
-
"line":
|
|
6080
|
+
"line": 541
|
|
6068
6081
|
},
|
|
6069
6082
|
"name": "resourceArnForDestination",
|
|
6070
6083
|
"overrides": "@aws-cdk/aws-gamelift-alpha.IGameSessionQueueDestination",
|
|
@@ -6090,7 +6103,7 @@
|
|
|
6090
6103
|
"kind": "interface",
|
|
6091
6104
|
"locationInModule": {
|
|
6092
6105
|
"filename": "lib/fleet-base.ts",
|
|
6093
|
-
"line":
|
|
6106
|
+
"line": 221
|
|
6094
6107
|
},
|
|
6095
6108
|
"name": "FleetProps",
|
|
6096
6109
|
"properties": [
|
|
@@ -6104,7 +6117,7 @@
|
|
|
6104
6117
|
"immutable": true,
|
|
6105
6118
|
"locationInModule": {
|
|
6106
6119
|
"filename": "lib/fleet-base.ts",
|
|
6107
|
-
"line":
|
|
6120
|
+
"line": 226
|
|
6108
6121
|
},
|
|
6109
6122
|
"name": "fleetName",
|
|
6110
6123
|
"type": {
|
|
@@ -6122,7 +6135,7 @@
|
|
|
6122
6135
|
"immutable": true,
|
|
6123
6136
|
"locationInModule": {
|
|
6124
6137
|
"filename": "lib/fleet-base.ts",
|
|
6125
|
-
"line":
|
|
6138
|
+
"line": 307
|
|
6126
6139
|
},
|
|
6127
6140
|
"name": "instanceType",
|
|
6128
6141
|
"type": {
|
|
@@ -6140,7 +6153,7 @@
|
|
|
6140
6153
|
"immutable": true,
|
|
6141
6154
|
"locationInModule": {
|
|
6142
6155
|
"filename": "lib/fleet-base.ts",
|
|
6143
|
-
"line":
|
|
6156
|
+
"line": 351
|
|
6144
6157
|
},
|
|
6145
6158
|
"name": "runtimeConfiguration",
|
|
6146
6159
|
"type": {
|
|
@@ -6157,7 +6170,7 @@
|
|
|
6157
6170
|
"immutable": true,
|
|
6158
6171
|
"locationInModule": {
|
|
6159
6172
|
"filename": "lib/fleet-base.ts",
|
|
6160
|
-
"line":
|
|
6173
|
+
"line": 233
|
|
6161
6174
|
},
|
|
6162
6175
|
"name": "description",
|
|
6163
6176
|
"optional": true,
|
|
@@ -6176,7 +6189,7 @@
|
|
|
6176
6189
|
"immutable": true,
|
|
6177
6190
|
"locationInModule": {
|
|
6178
6191
|
"filename": "lib/fleet-base.ts",
|
|
6179
|
-
"line":
|
|
6192
|
+
"line": 316
|
|
6180
6193
|
},
|
|
6181
6194
|
"name": "desiredCapacity",
|
|
6182
6195
|
"optional": true,
|
|
@@ -6195,7 +6208,7 @@
|
|
|
6195
6208
|
"immutable": true,
|
|
6196
6209
|
"locationInModule": {
|
|
6197
6210
|
"filename": "lib/fleet-base.ts",
|
|
6198
|
-
"line":
|
|
6211
|
+
"line": 361
|
|
6199
6212
|
},
|
|
6200
6213
|
"name": "locations",
|
|
6201
6214
|
"optional": true,
|
|
@@ -6218,7 +6231,7 @@
|
|
|
6218
6231
|
"immutable": true,
|
|
6219
6232
|
"locationInModule": {
|
|
6220
6233
|
"filename": "lib/fleet-base.ts",
|
|
6221
|
-
"line":
|
|
6234
|
+
"line": 330
|
|
6222
6235
|
},
|
|
6223
6236
|
"name": "maxSize",
|
|
6224
6237
|
"optional": true,
|
|
@@ -6237,7 +6250,7 @@
|
|
|
6237
6250
|
"immutable": true,
|
|
6238
6251
|
"locationInModule": {
|
|
6239
6252
|
"filename": "lib/fleet-base.ts",
|
|
6240
|
-
"line":
|
|
6253
|
+
"line": 299
|
|
6241
6254
|
},
|
|
6242
6255
|
"name": "metricGroup",
|
|
6243
6256
|
"optional": true,
|
|
@@ -6255,7 +6268,7 @@
|
|
|
6255
6268
|
"immutable": true,
|
|
6256
6269
|
"locationInModule": {
|
|
6257
6270
|
"filename": "lib/fleet-base.ts",
|
|
6258
|
-
"line":
|
|
6271
|
+
"line": 323
|
|
6259
6272
|
},
|
|
6260
6273
|
"name": "minSize",
|
|
6261
6274
|
"optional": true,
|
|
@@ -6275,7 +6288,7 @@
|
|
|
6275
6288
|
"immutable": true,
|
|
6276
6289
|
"locationInModule": {
|
|
6277
6290
|
"filename": "lib/fleet-base.ts",
|
|
6278
|
-
"line":
|
|
6291
|
+
"line": 289
|
|
6279
6292
|
},
|
|
6280
6293
|
"name": "peerVpc",
|
|
6281
6294
|
"optional": true,
|
|
@@ -6294,7 +6307,7 @@
|
|
|
6294
6307
|
"immutable": true,
|
|
6295
6308
|
"locationInModule": {
|
|
6296
6309
|
"filename": "lib/fleet-base.ts",
|
|
6297
|
-
"line":
|
|
6310
|
+
"line": 338
|
|
6298
6311
|
},
|
|
6299
6312
|
"name": "protectNewGameSession",
|
|
6300
6313
|
"optional": true,
|
|
@@ -6312,7 +6325,7 @@
|
|
|
6312
6325
|
"immutable": true,
|
|
6313
6326
|
"locationInModule": {
|
|
6314
6327
|
"filename": "lib/fleet-base.ts",
|
|
6315
|
-
"line":
|
|
6328
|
+
"line": 368
|
|
6316
6329
|
},
|
|
6317
6330
|
"name": "resourceCreationLimitPolicy",
|
|
6318
6331
|
"optional": true,
|
|
@@ -6332,7 +6345,7 @@
|
|
|
6332
6345
|
"immutable": true,
|
|
6333
6346
|
"locationInModule": {
|
|
6334
6347
|
"filename": "lib/fleet-base.ts",
|
|
6335
|
-
"line":
|
|
6348
|
+
"line": 274
|
|
6336
6349
|
},
|
|
6337
6350
|
"name": "role",
|
|
6338
6351
|
"optional": true,
|
|
@@ -6351,7 +6364,7 @@
|
|
|
6351
6364
|
"immutable": true,
|
|
6352
6365
|
"locationInModule": {
|
|
6353
6366
|
"filename": "lib/fleet-base.ts",
|
|
6354
|
-
"line":
|
|
6367
|
+
"line": 260
|
|
6355
6368
|
},
|
|
6356
6369
|
"name": "useCertificate",
|
|
6357
6370
|
"optional": true,
|
|
@@ -6371,7 +6384,7 @@
|
|
|
6371
6384
|
"immutable": true,
|
|
6372
6385
|
"locationInModule": {
|
|
6373
6386
|
"filename": "lib/fleet-base.ts",
|
|
6374
|
-
"line":
|
|
6387
|
+
"line": 245
|
|
6375
6388
|
},
|
|
6376
6389
|
"name": "useSpot",
|
|
6377
6390
|
"optional": true,
|
|
@@ -6459,7 +6472,7 @@
|
|
|
6459
6472
|
},
|
|
6460
6473
|
"locationInModule": {
|
|
6461
6474
|
"filename": "lib/game-server-group.ts",
|
|
6462
|
-
"line":
|
|
6475
|
+
"line": 419
|
|
6463
6476
|
},
|
|
6464
6477
|
"parameters": [
|
|
6465
6478
|
{
|
|
@@ -6485,7 +6498,7 @@
|
|
|
6485
6498
|
"kind": "class",
|
|
6486
6499
|
"locationInModule": {
|
|
6487
6500
|
"filename": "lib/game-server-group.ts",
|
|
6488
|
-
"line":
|
|
6501
|
+
"line": 345
|
|
6489
6502
|
},
|
|
6490
6503
|
"methods": [
|
|
6491
6504
|
{
|
|
@@ -6495,7 +6508,7 @@
|
|
|
6495
6508
|
},
|
|
6496
6509
|
"locationInModule": {
|
|
6497
6510
|
"filename": "lib/game-server-group.ts",
|
|
6498
|
-
"line":
|
|
6511
|
+
"line": 350
|
|
6499
6512
|
},
|
|
6500
6513
|
"name": "fromGameServerGroupAttributes",
|
|
6501
6514
|
"parameters": [
|
|
@@ -6531,7 +6544,7 @@
|
|
|
6531
6544
|
},
|
|
6532
6545
|
"locationInModule": {
|
|
6533
6546
|
"filename": "lib/game-server-group.ts",
|
|
6534
|
-
"line":
|
|
6547
|
+
"line": 503
|
|
6535
6548
|
},
|
|
6536
6549
|
"name": "parseAutoScalingPolicy",
|
|
6537
6550
|
"parameters": [
|
|
@@ -6556,7 +6569,7 @@
|
|
|
6556
6569
|
},
|
|
6557
6570
|
"locationInModule": {
|
|
6558
6571
|
"filename": "lib/game-server-group.ts",
|
|
6559
|
-
"line":
|
|
6572
|
+
"line": 516
|
|
6560
6573
|
},
|
|
6561
6574
|
"name": "parseInstanceDefinitions",
|
|
6562
6575
|
"parameters": [
|
|
@@ -6585,7 +6598,7 @@
|
|
|
6585
6598
|
},
|
|
6586
6599
|
"locationInModule": {
|
|
6587
6600
|
"filename": "lib/game-server-group.ts",
|
|
6588
|
-
"line":
|
|
6601
|
+
"line": 495
|
|
6589
6602
|
},
|
|
6590
6603
|
"name": "parseLaunchTemplate",
|
|
6591
6604
|
"parameters": [
|
|
@@ -6614,7 +6627,7 @@
|
|
|
6614
6627
|
"immutable": true,
|
|
6615
6628
|
"locationInModule": {
|
|
6616
6629
|
"filename": "lib/game-server-group.ts",
|
|
6617
|
-
"line":
|
|
6630
|
+
"line": 397
|
|
6618
6631
|
},
|
|
6619
6632
|
"name": "autoScalingGroupArn",
|
|
6620
6633
|
"overrides": "@aws-cdk/aws-gamelift-alpha.GameServerGroupBase",
|
|
@@ -6630,7 +6643,7 @@
|
|
|
6630
6643
|
"immutable": true,
|
|
6631
6644
|
"locationInModule": {
|
|
6632
6645
|
"filename": "lib/game-server-group.ts",
|
|
6633
|
-
"line":
|
|
6646
|
+
"line": 392
|
|
6634
6647
|
},
|
|
6635
6648
|
"name": "gameServerGroupArn",
|
|
6636
6649
|
"overrides": "@aws-cdk/aws-gamelift-alpha.GameServerGroupBase",
|
|
@@ -6646,7 +6659,7 @@
|
|
|
6646
6659
|
"immutable": true,
|
|
6647
6660
|
"locationInModule": {
|
|
6648
6661
|
"filename": "lib/game-server-group.ts",
|
|
6649
|
-
"line":
|
|
6662
|
+
"line": 387
|
|
6650
6663
|
},
|
|
6651
6664
|
"name": "gameServerGroupName",
|
|
6652
6665
|
"overrides": "@aws-cdk/aws-gamelift-alpha.GameServerGroupBase",
|
|
@@ -6662,7 +6675,7 @@
|
|
|
6662
6675
|
"immutable": true,
|
|
6663
6676
|
"locationInModule": {
|
|
6664
6677
|
"filename": "lib/game-server-group.ts",
|
|
6665
|
-
"line":
|
|
6678
|
+
"line": 407
|
|
6666
6679
|
},
|
|
6667
6680
|
"name": "grantPrincipal",
|
|
6668
6681
|
"overrides": "@aws-cdk/aws-gamelift-alpha.GameServerGroupBase",
|
|
@@ -6678,7 +6691,7 @@
|
|
|
6678
6691
|
"immutable": true,
|
|
6679
6692
|
"locationInModule": {
|
|
6680
6693
|
"filename": "lib/game-server-group.ts",
|
|
6681
|
-
"line":
|
|
6694
|
+
"line": 402
|
|
6682
6695
|
},
|
|
6683
6696
|
"name": "role",
|
|
6684
6697
|
"type": {
|
|
@@ -6693,7 +6706,7 @@
|
|
|
6693
6706
|
"immutable": true,
|
|
6694
6707
|
"locationInModule": {
|
|
6695
6708
|
"filename": "lib/game-server-group.ts",
|
|
6696
|
-
"line":
|
|
6709
|
+
"line": 412
|
|
6697
6710
|
},
|
|
6698
6711
|
"name": "vpc",
|
|
6699
6712
|
"type": {
|
|
@@ -6708,7 +6721,7 @@
|
|
|
6708
6721
|
"immutable": true,
|
|
6709
6722
|
"locationInModule": {
|
|
6710
6723
|
"filename": "lib/game-server-group.ts",
|
|
6711
|
-
"line":
|
|
6724
|
+
"line": 417
|
|
6712
6725
|
},
|
|
6713
6726
|
"name": "vpcSubnets",
|
|
6714
6727
|
"optional": true,
|
|
@@ -6734,7 +6747,7 @@
|
|
|
6734
6747
|
"kind": "interface",
|
|
6735
6748
|
"locationInModule": {
|
|
6736
6749
|
"filename": "lib/game-server-group.ts",
|
|
6737
|
-
"line":
|
|
6750
|
+
"line": 177
|
|
6738
6751
|
},
|
|
6739
6752
|
"name": "GameServerGroupAttributes",
|
|
6740
6753
|
"properties": [
|
|
@@ -6748,7 +6761,7 @@
|
|
|
6748
6761
|
"immutable": true,
|
|
6749
6762
|
"locationInModule": {
|
|
6750
6763
|
"filename": "lib/game-server-group.ts",
|
|
6751
|
-
"line":
|
|
6764
|
+
"line": 201
|
|
6752
6765
|
},
|
|
6753
6766
|
"name": "autoScalingGroupArn",
|
|
6754
6767
|
"type": {
|
|
@@ -6766,7 +6779,7 @@
|
|
|
6766
6779
|
"immutable": true,
|
|
6767
6780
|
"locationInModule": {
|
|
6768
6781
|
"filename": "lib/game-server-group.ts",
|
|
6769
|
-
"line":
|
|
6782
|
+
"line": 194
|
|
6770
6783
|
},
|
|
6771
6784
|
"name": "gameServerGroupArn",
|
|
6772
6785
|
"optional": true,
|
|
@@ -6785,7 +6798,7 @@
|
|
|
6785
6798
|
"immutable": true,
|
|
6786
6799
|
"locationInModule": {
|
|
6787
6800
|
"filename": "lib/game-server-group.ts",
|
|
6788
|
-
"line":
|
|
6801
|
+
"line": 186
|
|
6789
6802
|
},
|
|
6790
6803
|
"name": "gameServerGroupName",
|
|
6791
6804
|
"optional": true,
|
|
@@ -6803,7 +6816,7 @@
|
|
|
6803
6816
|
"immutable": true,
|
|
6804
6817
|
"locationInModule": {
|
|
6805
6818
|
"filename": "lib/game-server-group.ts",
|
|
6806
|
-
"line":
|
|
6819
|
+
"line": 208
|
|
6807
6820
|
},
|
|
6808
6821
|
"name": "role",
|
|
6809
6822
|
"optional": true,
|
|
@@ -6859,7 +6872,7 @@
|
|
|
6859
6872
|
"kind": "class",
|
|
6860
6873
|
"locationInModule": {
|
|
6861
6874
|
"filename": "lib/game-server-group.ts",
|
|
6862
|
-
"line":
|
|
6875
|
+
"line": 131
|
|
6863
6876
|
},
|
|
6864
6877
|
"methods": [
|
|
6865
6878
|
{
|
|
@@ -6869,7 +6882,7 @@
|
|
|
6869
6882
|
},
|
|
6870
6883
|
"locationInModule": {
|
|
6871
6884
|
"filename": "lib/game-server-group.ts",
|
|
6872
|
-
"line":
|
|
6885
|
+
"line": 153
|
|
6873
6886
|
},
|
|
6874
6887
|
"name": "grant",
|
|
6875
6888
|
"overrides": "@aws-cdk/aws-gamelift-alpha.IGameServerGroup",
|
|
@@ -6902,7 +6915,7 @@
|
|
|
6902
6915
|
},
|
|
6903
6916
|
"locationInModule": {
|
|
6904
6917
|
"filename": "lib/game-server-group.ts",
|
|
6905
|
-
"line":
|
|
6918
|
+
"line": 161
|
|
6906
6919
|
},
|
|
6907
6920
|
"name": "metric",
|
|
6908
6921
|
"overrides": "@aws-cdk/aws-gamelift-alpha.IGameServerGroup",
|
|
@@ -6939,7 +6952,7 @@
|
|
|
6939
6952
|
"immutable": true,
|
|
6940
6953
|
"locationInModule": {
|
|
6941
6954
|
"filename": "lib/game-server-group.ts",
|
|
6942
|
-
"line":
|
|
6955
|
+
"line": 141
|
|
6943
6956
|
},
|
|
6944
6957
|
"name": "autoScalingGroupArn",
|
|
6945
6958
|
"overrides": "@aws-cdk/aws-gamelift-alpha.IGameServerGroup",
|
|
@@ -6956,7 +6969,7 @@
|
|
|
6956
6969
|
"immutable": true,
|
|
6957
6970
|
"locationInModule": {
|
|
6958
6971
|
"filename": "lib/game-server-group.ts",
|
|
6959
|
-
"line":
|
|
6972
|
+
"line": 136
|
|
6960
6973
|
},
|
|
6961
6974
|
"name": "gameServerGroupArn",
|
|
6962
6975
|
"overrides": "@aws-cdk/aws-gamelift-alpha.IGameServerGroup",
|
|
@@ -6973,7 +6986,7 @@
|
|
|
6973
6986
|
"immutable": true,
|
|
6974
6987
|
"locationInModule": {
|
|
6975
6988
|
"filename": "lib/game-server-group.ts",
|
|
6976
|
-
"line":
|
|
6989
|
+
"line": 146
|
|
6977
6990
|
},
|
|
6978
6991
|
"name": "gameServerGroupName",
|
|
6979
6992
|
"overrides": "@aws-cdk/aws-gamelift-alpha.IGameServerGroup",
|
|
@@ -6990,7 +7003,7 @@
|
|
|
6990
7003
|
"immutable": true,
|
|
6991
7004
|
"locationInModule": {
|
|
6992
7005
|
"filename": "lib/game-server-group.ts",
|
|
6993
|
-
"line":
|
|
7006
|
+
"line": 151
|
|
6994
7007
|
},
|
|
6995
7008
|
"name": "grantPrincipal",
|
|
6996
7009
|
"overrides": "aws-cdk-lib.aws_iam.IGrantable",
|
|
@@ -7016,7 +7029,7 @@
|
|
|
7016
7029
|
"kind": "interface",
|
|
7017
7030
|
"locationInModule": {
|
|
7018
7031
|
"filename": "lib/game-server-group.ts",
|
|
7019
|
-
"line":
|
|
7032
|
+
"line": 214
|
|
7020
7033
|
},
|
|
7021
7034
|
"name": "GameServerGroupProps",
|
|
7022
7035
|
"properties": [
|
|
@@ -7030,7 +7043,7 @@
|
|
|
7030
7043
|
"immutable": true,
|
|
7031
7044
|
"locationInModule": {
|
|
7032
7045
|
"filename": "lib/game-server-group.ts",
|
|
7033
|
-
"line":
|
|
7046
|
+
"line": 219
|
|
7034
7047
|
},
|
|
7035
7048
|
"name": "gameServerGroupName",
|
|
7036
7049
|
"type": {
|
|
@@ -7046,7 +7059,7 @@
|
|
|
7046
7059
|
"immutable": true,
|
|
7047
7060
|
"locationInModule": {
|
|
7048
7061
|
"filename": "lib/game-server-group.ts",
|
|
7049
|
-
"line":
|
|
7062
|
+
"line": 274
|
|
7050
7063
|
},
|
|
7051
7064
|
"name": "instanceDefinitions",
|
|
7052
7065
|
"type": {
|
|
@@ -7069,7 +7082,7 @@
|
|
|
7069
7082
|
"immutable": true,
|
|
7070
7083
|
"locationInModule": {
|
|
7071
7084
|
"filename": "lib/game-server-group.ts",
|
|
7072
|
-
"line":
|
|
7085
|
+
"line": 286
|
|
7073
7086
|
},
|
|
7074
7087
|
"name": "launchTemplate",
|
|
7075
7088
|
"type": {
|
|
@@ -7086,7 +7099,7 @@
|
|
|
7086
7099
|
"immutable": true,
|
|
7087
7100
|
"locationInModule": {
|
|
7088
7101
|
"filename": "lib/game-server-group.ts",
|
|
7089
|
-
"line":
|
|
7102
|
+
"line": 262
|
|
7090
7103
|
},
|
|
7091
7104
|
"name": "vpc",
|
|
7092
7105
|
"type": {
|
|
@@ -7104,7 +7117,7 @@
|
|
|
7104
7117
|
"immutable": true,
|
|
7105
7118
|
"locationInModule": {
|
|
7106
7119
|
"filename": "lib/game-server-group.ts",
|
|
7107
|
-
"line":
|
|
7120
|
+
"line": 307
|
|
7108
7121
|
},
|
|
7109
7122
|
"name": "autoScalingPolicy",
|
|
7110
7123
|
"optional": true,
|
|
@@ -7122,7 +7135,7 @@
|
|
|
7122
7135
|
"immutable": true,
|
|
7123
7136
|
"locationInModule": {
|
|
7124
7137
|
"filename": "lib/game-server-group.ts",
|
|
7125
|
-
"line":
|
|
7138
|
+
"line": 321
|
|
7126
7139
|
},
|
|
7127
7140
|
"name": "balancingStrategy",
|
|
7128
7141
|
"optional": true,
|
|
@@ -7141,7 +7154,7 @@
|
|
|
7141
7154
|
"immutable": true,
|
|
7142
7155
|
"locationInModule": {
|
|
7143
7156
|
"filename": "lib/game-server-group.ts",
|
|
7144
|
-
"line":
|
|
7157
|
+
"line": 314
|
|
7145
7158
|
},
|
|
7146
7159
|
"name": "deleteOption",
|
|
7147
7160
|
"optional": true,
|
|
@@ -7160,7 +7173,7 @@
|
|
|
7160
7173
|
"immutable": true,
|
|
7161
7174
|
"locationInModule": {
|
|
7162
7175
|
"filename": "lib/game-server-group.ts",
|
|
7163
|
-
"line":
|
|
7176
|
+
"line": 249
|
|
7164
7177
|
},
|
|
7165
7178
|
"name": "maxSize",
|
|
7166
7179
|
"optional": true,
|
|
@@ -7179,7 +7192,7 @@
|
|
|
7179
7192
|
"immutable": true,
|
|
7180
7193
|
"locationInModule": {
|
|
7181
7194
|
"filename": "lib/game-server-group.ts",
|
|
7182
|
-
"line":
|
|
7195
|
+
"line": 240
|
|
7183
7196
|
},
|
|
7184
7197
|
"name": "minSize",
|
|
7185
7198
|
"optional": true,
|
|
@@ -7198,7 +7211,7 @@
|
|
|
7198
7211
|
"immutable": true,
|
|
7199
7212
|
"locationInModule": {
|
|
7200
7213
|
"filename": "lib/game-server-group.ts",
|
|
7201
|
-
"line":
|
|
7214
|
+
"line": 297
|
|
7202
7215
|
},
|
|
7203
7216
|
"name": "protectGameServer",
|
|
7204
7217
|
"optional": true,
|
|
@@ -7217,7 +7230,7 @@
|
|
|
7217
7230
|
"immutable": true,
|
|
7218
7231
|
"locationInModule": {
|
|
7219
7232
|
"filename": "lib/game-server-group.ts",
|
|
7220
|
-
"line":
|
|
7233
|
+
"line": 228
|
|
7221
7234
|
},
|
|
7222
7235
|
"name": "role",
|
|
7223
7236
|
"optional": true,
|
|
@@ -7235,7 +7248,7 @@
|
|
|
7235
7248
|
"immutable": true,
|
|
7236
7249
|
"locationInModule": {
|
|
7237
7250
|
"filename": "lib/game-server-group.ts",
|
|
7238
|
-
"line":
|
|
7251
|
+
"line": 269
|
|
7239
7252
|
},
|
|
7240
7253
|
"name": "vpcSubnets",
|
|
7241
7254
|
"optional": true,
|
|
@@ -8218,7 +8231,7 @@
|
|
|
8218
8231
|
"kind": "interface",
|
|
8219
8232
|
"locationInModule": {
|
|
8220
8233
|
"filename": "lib/fleet-base.ts",
|
|
8221
|
-
"line":
|
|
8234
|
+
"line": 143
|
|
8222
8235
|
},
|
|
8223
8236
|
"methods": [
|
|
8224
8237
|
{
|
|
@@ -8229,7 +8242,7 @@
|
|
|
8229
8242
|
},
|
|
8230
8243
|
"locationInModule": {
|
|
8231
8244
|
"filename": "lib/fleet-base.ts",
|
|
8232
|
-
"line":
|
|
8245
|
+
"line": 161
|
|
8233
8246
|
},
|
|
8234
8247
|
"name": "grant",
|
|
8235
8248
|
"parameters": [
|
|
@@ -8262,7 +8275,7 @@
|
|
|
8262
8275
|
},
|
|
8263
8276
|
"locationInModule": {
|
|
8264
8277
|
"filename": "lib/fleet-base.ts",
|
|
8265
|
-
"line":
|
|
8278
|
+
"line": 166
|
|
8266
8279
|
},
|
|
8267
8280
|
"name": "metric",
|
|
8268
8281
|
"parameters": [
|
|
@@ -8295,7 +8308,7 @@
|
|
|
8295
8308
|
},
|
|
8296
8309
|
"locationInModule": {
|
|
8297
8310
|
"filename": "lib/fleet-base.ts",
|
|
8298
|
-
"line":
|
|
8311
|
+
"line": 175
|
|
8299
8312
|
},
|
|
8300
8313
|
"name": "metricActiveInstances",
|
|
8301
8314
|
"parameters": [
|
|
@@ -8322,7 +8335,7 @@
|
|
|
8322
8335
|
},
|
|
8323
8336
|
"locationInModule": {
|
|
8324
8337
|
"filename": "lib/fleet-base.ts",
|
|
8325
|
-
"line":
|
|
8338
|
+
"line": 189
|
|
8326
8339
|
},
|
|
8327
8340
|
"name": "metricDesiredInstances",
|
|
8328
8341
|
"parameters": [
|
|
@@ -8349,7 +8362,7 @@
|
|
|
8349
8362
|
},
|
|
8350
8363
|
"locationInModule": {
|
|
8351
8364
|
"filename": "lib/fleet-base.ts",
|
|
8352
|
-
"line":
|
|
8365
|
+
"line": 196
|
|
8353
8366
|
},
|
|
8354
8367
|
"name": "metricIdleInstances",
|
|
8355
8368
|
"parameters": [
|
|
@@ -8375,7 +8388,7 @@
|
|
|
8375
8388
|
},
|
|
8376
8389
|
"locationInModule": {
|
|
8377
8390
|
"filename": "lib/fleet-base.ts",
|
|
8378
|
-
"line":
|
|
8391
|
+
"line": 201
|
|
8379
8392
|
},
|
|
8380
8393
|
"name": "metricInstanceInterruptions",
|
|
8381
8394
|
"parameters": [
|
|
@@ -8402,7 +8415,7 @@
|
|
|
8402
8415
|
},
|
|
8403
8416
|
"locationInModule": {
|
|
8404
8417
|
"filename": "lib/fleet-base.ts",
|
|
8405
|
-
"line":
|
|
8418
|
+
"line": 208
|
|
8406
8419
|
},
|
|
8407
8420
|
"name": "metricMaxInstances",
|
|
8408
8421
|
"parameters": [
|
|
@@ -8429,7 +8442,7 @@
|
|
|
8429
8442
|
},
|
|
8430
8443
|
"locationInModule": {
|
|
8431
8444
|
"filename": "lib/fleet-base.ts",
|
|
8432
|
-
"line":
|
|
8445
|
+
"line": 215
|
|
8433
8446
|
},
|
|
8434
8447
|
"name": "metricMinInstances",
|
|
8435
8448
|
"parameters": [
|
|
@@ -8456,7 +8469,7 @@
|
|
|
8456
8469
|
},
|
|
8457
8470
|
"locationInModule": {
|
|
8458
8471
|
"filename": "lib/fleet-base.ts",
|
|
8459
|
-
"line":
|
|
8472
|
+
"line": 181
|
|
8460
8473
|
},
|
|
8461
8474
|
"name": "metricPercentIdleInstances",
|
|
8462
8475
|
"parameters": [
|
|
@@ -8489,7 +8502,7 @@
|
|
|
8489
8502
|
"immutable": true,
|
|
8490
8503
|
"locationInModule": {
|
|
8491
8504
|
"filename": "lib/fleet-base.ts",
|
|
8492
|
-
"line":
|
|
8505
|
+
"line": 156
|
|
8493
8506
|
},
|
|
8494
8507
|
"name": "fleetArn",
|
|
8495
8508
|
"type": {
|
|
@@ -8508,7 +8521,7 @@
|
|
|
8508
8521
|
"immutable": true,
|
|
8509
8522
|
"locationInModule": {
|
|
8510
8523
|
"filename": "lib/fleet-base.ts",
|
|
8511
|
-
"line":
|
|
8524
|
+
"line": 149
|
|
8512
8525
|
},
|
|
8513
8526
|
"name": "fleetId",
|
|
8514
8527
|
"type": {
|
|
@@ -8532,7 +8545,7 @@
|
|
|
8532
8545
|
"kind": "interface",
|
|
8533
8546
|
"locationInModule": {
|
|
8534
8547
|
"filename": "lib/game-server-group.ts",
|
|
8535
|
-
"line":
|
|
8548
|
+
"line": 95
|
|
8536
8549
|
},
|
|
8537
8550
|
"methods": [
|
|
8538
8551
|
{
|
|
@@ -8543,7 +8556,7 @@
|
|
|
8543
8556
|
},
|
|
8544
8557
|
"locationInModule": {
|
|
8545
8558
|
"filename": "lib/game-server-group.ts",
|
|
8546
|
-
"line":
|
|
8559
|
+
"line": 120
|
|
8547
8560
|
},
|
|
8548
8561
|
"name": "grant",
|
|
8549
8562
|
"parameters": [
|
|
@@ -8576,7 +8589,7 @@
|
|
|
8576
8589
|
},
|
|
8577
8590
|
"locationInModule": {
|
|
8578
8591
|
"filename": "lib/game-server-group.ts",
|
|
8579
|
-
"line":
|
|
8592
|
+
"line": 125
|
|
8580
8593
|
},
|
|
8581
8594
|
"name": "metric",
|
|
8582
8595
|
"parameters": [
|
|
@@ -8615,7 +8628,7 @@
|
|
|
8615
8628
|
"immutable": true,
|
|
8616
8629
|
"locationInModule": {
|
|
8617
8630
|
"filename": "lib/game-server-group.ts",
|
|
8618
|
-
"line":
|
|
8631
|
+
"line": 108
|
|
8619
8632
|
},
|
|
8620
8633
|
"name": "autoScalingGroupArn",
|
|
8621
8634
|
"type": {
|
|
@@ -8634,7 +8647,7 @@
|
|
|
8634
8647
|
"immutable": true,
|
|
8635
8648
|
"locationInModule": {
|
|
8636
8649
|
"filename": "lib/game-server-group.ts",
|
|
8637
|
-
"line":
|
|
8650
|
+
"line": 101
|
|
8638
8651
|
},
|
|
8639
8652
|
"name": "gameServerGroupArn",
|
|
8640
8653
|
"type": {
|
|
@@ -8653,7 +8666,7 @@
|
|
|
8653
8666
|
"immutable": true,
|
|
8654
8667
|
"locationInModule": {
|
|
8655
8668
|
"filename": "lib/game-server-group.ts",
|
|
8656
|
-
"line":
|
|
8669
|
+
"line": 115
|
|
8657
8670
|
},
|
|
8658
8671
|
"name": "gameServerGroupName",
|
|
8659
8672
|
"type": {
|
|
@@ -8969,7 +8982,7 @@
|
|
|
8969
8982
|
},
|
|
8970
8983
|
"locationInModule": {
|
|
8971
8984
|
"filename": "lib/matchmaking-configuration.ts",
|
|
8972
|
-
"line":
|
|
8985
|
+
"line": 54
|
|
8973
8986
|
},
|
|
8974
8987
|
"name": "metric",
|
|
8975
8988
|
"parameters": [
|
|
@@ -9001,7 +9014,7 @@
|
|
|
9001
9014
|
},
|
|
9002
9015
|
"locationInModule": {
|
|
9003
9016
|
"filename": "lib/matchmaking-configuration.ts",
|
|
9004
|
-
"line":
|
|
9017
|
+
"line": 59
|
|
9005
9018
|
},
|
|
9006
9019
|
"name": "metricCurrentTickets",
|
|
9007
9020
|
"parameters": [
|
|
@@ -9027,7 +9040,7 @@
|
|
|
9027
9040
|
},
|
|
9028
9041
|
"locationInModule": {
|
|
9029
9042
|
"filename": "lib/matchmaking-configuration.ts",
|
|
9030
|
-
"line":
|
|
9043
|
+
"line": 64
|
|
9031
9044
|
},
|
|
9032
9045
|
"name": "metricMatchesAccepted",
|
|
9033
9046
|
"parameters": [
|
|
@@ -9053,7 +9066,7 @@
|
|
|
9053
9066
|
},
|
|
9054
9067
|
"locationInModule": {
|
|
9055
9068
|
"filename": "lib/matchmaking-configuration.ts",
|
|
9056
|
-
"line":
|
|
9069
|
+
"line": 69
|
|
9057
9070
|
},
|
|
9058
9071
|
"name": "metricMatchesCreated",
|
|
9059
9072
|
"parameters": [
|
|
@@ -9079,7 +9092,7 @@
|
|
|
9079
9092
|
},
|
|
9080
9093
|
"locationInModule": {
|
|
9081
9094
|
"filename": "lib/matchmaking-configuration.ts",
|
|
9082
|
-
"line":
|
|
9095
|
+
"line": 74
|
|
9083
9096
|
},
|
|
9084
9097
|
"name": "metricMatchesPlaced",
|
|
9085
9098
|
"parameters": [
|
|
@@ -9105,7 +9118,7 @@
|
|
|
9105
9118
|
},
|
|
9106
9119
|
"locationInModule": {
|
|
9107
9120
|
"filename": "lib/matchmaking-configuration.ts",
|
|
9108
|
-
"line":
|
|
9121
|
+
"line": 79
|
|
9109
9122
|
},
|
|
9110
9123
|
"name": "metricMatchesRejected",
|
|
9111
9124
|
"parameters": [
|
|
@@ -9131,7 +9144,7 @@
|
|
|
9131
9144
|
},
|
|
9132
9145
|
"locationInModule": {
|
|
9133
9146
|
"filename": "lib/matchmaking-configuration.ts",
|
|
9134
|
-
"line":
|
|
9147
|
+
"line": 84
|
|
9135
9148
|
},
|
|
9136
9149
|
"name": "metricPlayersStarted",
|
|
9137
9150
|
"parameters": [
|
|
@@ -9158,7 +9171,7 @@
|
|
|
9158
9171
|
},
|
|
9159
9172
|
"locationInModule": {
|
|
9160
9173
|
"filename": "lib/matchmaking-configuration.ts",
|
|
9161
|
-
"line":
|
|
9174
|
+
"line": 92
|
|
9162
9175
|
},
|
|
9163
9176
|
"name": "metricTimeToMatch",
|
|
9164
9177
|
"parameters": [
|
|
@@ -9253,7 +9266,7 @@
|
|
|
9253
9266
|
"kind": "interface",
|
|
9254
9267
|
"locationInModule": {
|
|
9255
9268
|
"filename": "lib/matchmaking-ruleset.ts",
|
|
9256
|
-
"line":
|
|
9269
|
+
"line": 10
|
|
9257
9270
|
},
|
|
9258
9271
|
"methods": [
|
|
9259
9272
|
{
|
|
@@ -9264,7 +9277,7 @@
|
|
|
9264
9277
|
},
|
|
9265
9278
|
"locationInModule": {
|
|
9266
9279
|
"filename": "lib/matchmaking-ruleset.ts",
|
|
9267
|
-
"line":
|
|
9280
|
+
"line": 28
|
|
9268
9281
|
},
|
|
9269
9282
|
"name": "metric",
|
|
9270
9283
|
"parameters": [
|
|
@@ -9297,7 +9310,7 @@
|
|
|
9297
9310
|
},
|
|
9298
9311
|
"locationInModule": {
|
|
9299
9312
|
"filename": "lib/matchmaking-ruleset.ts",
|
|
9300
|
-
"line":
|
|
9313
|
+
"line": 42
|
|
9301
9314
|
},
|
|
9302
9315
|
"name": "metricRuleEvaluationsFailed",
|
|
9303
9316
|
"parameters": [
|
|
@@ -9324,7 +9337,7 @@
|
|
|
9324
9337
|
},
|
|
9325
9338
|
"locationInModule": {
|
|
9326
9339
|
"filename": "lib/matchmaking-ruleset.ts",
|
|
9327
|
-
"line":
|
|
9340
|
+
"line": 35
|
|
9328
9341
|
},
|
|
9329
9342
|
"name": "metricRuleEvaluationsPassed",
|
|
9330
9343
|
"parameters": [
|
|
@@ -9357,7 +9370,7 @@
|
|
|
9357
9370
|
"immutable": true,
|
|
9358
9371
|
"locationInModule": {
|
|
9359
9372
|
"filename": "lib/matchmaking-ruleset.ts",
|
|
9360
|
-
"line":
|
|
9373
|
+
"line": 23
|
|
9361
9374
|
},
|
|
9362
9375
|
"name": "matchmakingRuleSetArn",
|
|
9363
9376
|
"type": {
|
|
@@ -9376,7 +9389,7 @@
|
|
|
9376
9389
|
"immutable": true,
|
|
9377
9390
|
"locationInModule": {
|
|
9378
9391
|
"filename": "lib/matchmaking-ruleset.ts",
|
|
9379
|
-
"line":
|
|
9392
|
+
"line": 16
|
|
9380
9393
|
},
|
|
9381
9394
|
"name": "matchmakingRuleSetName",
|
|
9382
9395
|
"type": {
|
|
@@ -9651,7 +9664,7 @@
|
|
|
9651
9664
|
"kind": "interface",
|
|
9652
9665
|
"locationInModule": {
|
|
9653
9666
|
"filename": "lib/game-server-group.ts",
|
|
9654
|
-
"line":
|
|
9667
|
+
"line": 36
|
|
9655
9668
|
},
|
|
9656
9669
|
"name": "InstanceDefinition",
|
|
9657
9670
|
"properties": [
|
|
@@ -9664,7 +9677,7 @@
|
|
|
9664
9677
|
"immutable": true,
|
|
9665
9678
|
"locationInModule": {
|
|
9666
9679
|
"filename": "lib/game-server-group.ts",
|
|
9667
|
-
"line":
|
|
9680
|
+
"line": 40
|
|
9668
9681
|
},
|
|
9669
9682
|
"name": "instanceType",
|
|
9670
9683
|
"type": {
|
|
@@ -9683,7 +9696,7 @@
|
|
|
9683
9696
|
"immutable": true,
|
|
9684
9697
|
"locationInModule": {
|
|
9685
9698
|
"filename": "lib/game-server-group.ts",
|
|
9686
|
-
"line":
|
|
9699
|
+
"line": 49
|
|
9687
9700
|
},
|
|
9688
9701
|
"name": "weight",
|
|
9689
9702
|
"optional": true,
|
|
@@ -9709,7 +9722,7 @@
|
|
|
9709
9722
|
"kind": "interface",
|
|
9710
9723
|
"locationInModule": {
|
|
9711
9724
|
"filename": "lib/fleet-base.ts",
|
|
9712
|
-
"line":
|
|
9725
|
+
"line": 40
|
|
9713
9726
|
},
|
|
9714
9727
|
"name": "Location",
|
|
9715
9728
|
"properties": [
|
|
@@ -9722,7 +9735,7 @@
|
|
|
9722
9735
|
"immutable": true,
|
|
9723
9736
|
"locationInModule": {
|
|
9724
9737
|
"filename": "lib/fleet-base.ts",
|
|
9725
|
-
"line":
|
|
9738
|
+
"line": 44
|
|
9726
9739
|
},
|
|
9727
9740
|
"name": "region",
|
|
9728
9741
|
"type": {
|
|
@@ -9740,7 +9753,7 @@
|
|
|
9740
9753
|
"immutable": true,
|
|
9741
9754
|
"locationInModule": {
|
|
9742
9755
|
"filename": "lib/fleet-base.ts",
|
|
9743
|
-
"line":
|
|
9756
|
+
"line": 51
|
|
9744
9757
|
},
|
|
9745
9758
|
"name": "capacity",
|
|
9746
9759
|
"optional": true,
|
|
@@ -9767,7 +9780,7 @@
|
|
|
9767
9780
|
"kind": "interface",
|
|
9768
9781
|
"locationInModule": {
|
|
9769
9782
|
"filename": "lib/fleet-base.ts",
|
|
9770
|
-
"line":
|
|
9783
|
+
"line": 15
|
|
9771
9784
|
},
|
|
9772
9785
|
"name": "LocationCapacity",
|
|
9773
9786
|
"properties": [
|
|
@@ -9782,7 +9795,7 @@
|
|
|
9782
9795
|
"immutable": true,
|
|
9783
9796
|
"locationInModule": {
|
|
9784
9797
|
"filename": "lib/fleet-base.ts",
|
|
9785
|
-
"line":
|
|
9798
|
+
"line": 22
|
|
9786
9799
|
},
|
|
9787
9800
|
"name": "desiredCapacity",
|
|
9788
9801
|
"optional": true,
|
|
@@ -9800,7 +9813,7 @@
|
|
|
9800
9813
|
"immutable": true,
|
|
9801
9814
|
"locationInModule": {
|
|
9802
9815
|
"filename": "lib/fleet-base.ts",
|
|
9803
|
-
"line":
|
|
9816
|
+
"line": 28
|
|
9804
9817
|
},
|
|
9805
9818
|
"name": "maxSize",
|
|
9806
9819
|
"optional": true,
|
|
@@ -9818,7 +9831,7 @@
|
|
|
9818
9831
|
"immutable": true,
|
|
9819
9832
|
"locationInModule": {
|
|
9820
9833
|
"filename": "lib/fleet-base.ts",
|
|
9821
|
-
"line":
|
|
9834
|
+
"line": 34
|
|
9822
9835
|
},
|
|
9823
9836
|
"name": "minSize",
|
|
9824
9837
|
"optional": true,
|
|
@@ -9844,7 +9857,7 @@
|
|
|
9844
9857
|
"kind": "interface",
|
|
9845
9858
|
"locationInModule": {
|
|
9846
9859
|
"filename": "lib/matchmaking-configuration.ts",
|
|
9847
|
-
"line":
|
|
9860
|
+
"line": 98
|
|
9848
9861
|
},
|
|
9849
9862
|
"name": "MatchmakingConfigurationAttributes",
|
|
9850
9863
|
"properties": [
|
|
@@ -9859,7 +9872,7 @@
|
|
|
9859
9872
|
"immutable": true,
|
|
9860
9873
|
"locationInModule": {
|
|
9861
9874
|
"filename": "lib/matchmaking-configuration.ts",
|
|
9862
|
-
"line":
|
|
9875
|
+
"line": 106
|
|
9863
9876
|
},
|
|
9864
9877
|
"name": "matchmakingConfigurationArn",
|
|
9865
9878
|
"optional": true,
|
|
@@ -9878,7 +9891,7 @@
|
|
|
9878
9891
|
"immutable": true,
|
|
9879
9892
|
"locationInModule": {
|
|
9880
9893
|
"filename": "lib/matchmaking-configuration.ts",
|
|
9881
|
-
"line":
|
|
9894
|
+
"line": 115
|
|
9882
9895
|
},
|
|
9883
9896
|
"name": "matchmakingConfigurationName",
|
|
9884
9897
|
"optional": true,
|
|
@@ -9897,7 +9910,7 @@
|
|
|
9897
9910
|
"immutable": true,
|
|
9898
9911
|
"locationInModule": {
|
|
9899
9912
|
"filename": "lib/matchmaking-configuration.ts",
|
|
9900
|
-
"line":
|
|
9913
|
+
"line": 124
|
|
9901
9914
|
},
|
|
9902
9915
|
"name": "notificationTarget",
|
|
9903
9916
|
"optional": true,
|
|
@@ -9957,7 +9970,7 @@
|
|
|
9957
9970
|
"kind": "class",
|
|
9958
9971
|
"locationInModule": {
|
|
9959
9972
|
"filename": "lib/matchmaking-configuration.ts",
|
|
9960
|
-
"line":
|
|
9973
|
+
"line": 195
|
|
9961
9974
|
},
|
|
9962
9975
|
"methods": [
|
|
9963
9976
|
{
|
|
@@ -9967,7 +9980,7 @@
|
|
|
9967
9980
|
},
|
|
9968
9981
|
"locationInModule": {
|
|
9969
9982
|
"filename": "lib/matchmaking-configuration.ts",
|
|
9970
|
-
"line":
|
|
9983
|
+
"line": 200
|
|
9971
9984
|
},
|
|
9972
9985
|
"name": "fromMatchmakingConfigurationAttributes",
|
|
9973
9986
|
"parameters": [
|
|
@@ -10004,7 +10017,7 @@
|
|
|
10004
10017
|
},
|
|
10005
10018
|
"locationInModule": {
|
|
10006
10019
|
"filename": "lib/matchmaking-configuration.ts",
|
|
10007
|
-
"line":
|
|
10020
|
+
"line": 245
|
|
10008
10021
|
},
|
|
10009
10022
|
"name": "metric",
|
|
10010
10023
|
"overrides": "@aws-cdk/aws-gamelift-alpha.IMatchmakingConfiguration",
|
|
@@ -10036,7 +10049,7 @@
|
|
|
10036
10049
|
},
|
|
10037
10050
|
"locationInModule": {
|
|
10038
10051
|
"filename": "lib/matchmaking-configuration.ts",
|
|
10039
|
-
"line":
|
|
10052
|
+
"line": 256
|
|
10040
10053
|
},
|
|
10041
10054
|
"name": "metricCurrentTickets",
|
|
10042
10055
|
"overrides": "@aws-cdk/aws-gamelift-alpha.IMatchmakingConfiguration",
|
|
@@ -10062,7 +10075,7 @@
|
|
|
10062
10075
|
},
|
|
10063
10076
|
"locationInModule": {
|
|
10064
10077
|
"filename": "lib/matchmaking-configuration.ts",
|
|
10065
|
-
"line":
|
|
10078
|
+
"line": 260
|
|
10066
10079
|
},
|
|
10067
10080
|
"name": "metricMatchesAccepted",
|
|
10068
10081
|
"overrides": "@aws-cdk/aws-gamelift-alpha.IMatchmakingConfiguration",
|
|
@@ -10088,7 +10101,7 @@
|
|
|
10088
10101
|
},
|
|
10089
10102
|
"locationInModule": {
|
|
10090
10103
|
"filename": "lib/matchmaking-configuration.ts",
|
|
10091
|
-
"line":
|
|
10104
|
+
"line": 264
|
|
10092
10105
|
},
|
|
10093
10106
|
"name": "metricMatchesCreated",
|
|
10094
10107
|
"overrides": "@aws-cdk/aws-gamelift-alpha.IMatchmakingConfiguration",
|
|
@@ -10114,7 +10127,7 @@
|
|
|
10114
10127
|
},
|
|
10115
10128
|
"locationInModule": {
|
|
10116
10129
|
"filename": "lib/matchmaking-configuration.ts",
|
|
10117
|
-
"line":
|
|
10130
|
+
"line": 268
|
|
10118
10131
|
},
|
|
10119
10132
|
"name": "metricMatchesPlaced",
|
|
10120
10133
|
"overrides": "@aws-cdk/aws-gamelift-alpha.IMatchmakingConfiguration",
|
|
@@ -10140,7 +10153,7 @@
|
|
|
10140
10153
|
},
|
|
10141
10154
|
"locationInModule": {
|
|
10142
10155
|
"filename": "lib/matchmaking-configuration.ts",
|
|
10143
|
-
"line":
|
|
10156
|
+
"line": 272
|
|
10144
10157
|
},
|
|
10145
10158
|
"name": "metricMatchesRejected",
|
|
10146
10159
|
"overrides": "@aws-cdk/aws-gamelift-alpha.IMatchmakingConfiguration",
|
|
@@ -10166,7 +10179,7 @@
|
|
|
10166
10179
|
},
|
|
10167
10180
|
"locationInModule": {
|
|
10168
10181
|
"filename": "lib/matchmaking-configuration.ts",
|
|
10169
|
-
"line":
|
|
10182
|
+
"line": 276
|
|
10170
10183
|
},
|
|
10171
10184
|
"name": "metricPlayersStarted",
|
|
10172
10185
|
"overrides": "@aws-cdk/aws-gamelift-alpha.IMatchmakingConfiguration",
|
|
@@ -10193,7 +10206,7 @@
|
|
|
10193
10206
|
},
|
|
10194
10207
|
"locationInModule": {
|
|
10195
10208
|
"filename": "lib/matchmaking-configuration.ts",
|
|
10196
|
-
"line":
|
|
10209
|
+
"line": 280
|
|
10197
10210
|
},
|
|
10198
10211
|
"name": "metricTimeToMatch",
|
|
10199
10212
|
"overrides": "@aws-cdk/aws-gamelift-alpha.IMatchmakingConfiguration",
|
|
@@ -10224,7 +10237,7 @@
|
|
|
10224
10237
|
"immutable": true,
|
|
10225
10238
|
"locationInModule": {
|
|
10226
10239
|
"filename": "lib/matchmaking-configuration.ts",
|
|
10227
|
-
"line":
|
|
10240
|
+
"line": 238
|
|
10228
10241
|
},
|
|
10229
10242
|
"name": "matchmakingConfigurationArn",
|
|
10230
10243
|
"overrides": "@aws-cdk/aws-gamelift-alpha.IMatchmakingConfiguration",
|
|
@@ -10241,7 +10254,7 @@
|
|
|
10241
10254
|
"immutable": true,
|
|
10242
10255
|
"locationInModule": {
|
|
10243
10256
|
"filename": "lib/matchmaking-configuration.ts",
|
|
10244
|
-
"line":
|
|
10257
|
+
"line": 234
|
|
10245
10258
|
},
|
|
10246
10259
|
"name": "matchmakingConfigurationName",
|
|
10247
10260
|
"overrides": "@aws-cdk/aws-gamelift-alpha.IMatchmakingConfiguration",
|
|
@@ -10258,7 +10271,7 @@
|
|
|
10258
10271
|
"immutable": true,
|
|
10259
10272
|
"locationInModule": {
|
|
10260
10273
|
"filename": "lib/matchmaking-configuration.ts",
|
|
10261
|
-
"line":
|
|
10274
|
+
"line": 243
|
|
10262
10275
|
},
|
|
10263
10276
|
"name": "notificationTarget",
|
|
10264
10277
|
"optional": true,
|
|
@@ -10285,7 +10298,7 @@
|
|
|
10285
10298
|
"kind": "interface",
|
|
10286
10299
|
"locationInModule": {
|
|
10287
10300
|
"filename": "lib/matchmaking-configuration.ts",
|
|
10288
|
-
"line":
|
|
10301
|
+
"line": 130
|
|
10289
10302
|
},
|
|
10290
10303
|
"name": "MatchmakingConfigurationProps",
|
|
10291
10304
|
"properties": [
|
|
@@ -10299,7 +10312,7 @@
|
|
|
10299
10312
|
"immutable": true,
|
|
10300
10313
|
"locationInModule": {
|
|
10301
10314
|
"filename": "lib/matchmaking-configuration.ts",
|
|
10302
|
-
"line":
|
|
10315
|
+
"line": 136
|
|
10303
10316
|
},
|
|
10304
10317
|
"name": "matchmakingConfigurationName",
|
|
10305
10318
|
"type": {
|
|
@@ -10316,7 +10329,7 @@
|
|
|
10316
10329
|
"immutable": true,
|
|
10317
10330
|
"locationInModule": {
|
|
10318
10331
|
"filename": "lib/matchmaking-configuration.ts",
|
|
10319
|
-
"line":
|
|
10332
|
+
"line": 189
|
|
10320
10333
|
},
|
|
10321
10334
|
"name": "ruleSet",
|
|
10322
10335
|
"type": {
|
|
@@ -10333,7 +10346,7 @@
|
|
|
10333
10346
|
"immutable": true,
|
|
10334
10347
|
"locationInModule": {
|
|
10335
10348
|
"filename": "lib/matchmaking-configuration.ts",
|
|
10336
|
-
"line":
|
|
10349
|
+
"line": 158
|
|
10337
10350
|
},
|
|
10338
10351
|
"name": "acceptanceTimeout",
|
|
10339
10352
|
"optional": true,
|
|
@@ -10351,7 +10364,7 @@
|
|
|
10351
10364
|
"immutable": true,
|
|
10352
10365
|
"locationInModule": {
|
|
10353
10366
|
"filename": "lib/matchmaking-configuration.ts",
|
|
10354
|
-
"line":
|
|
10367
|
+
"line": 165
|
|
10355
10368
|
},
|
|
10356
10369
|
"name": "customEventData",
|
|
10357
10370
|
"optional": true,
|
|
@@ -10369,7 +10382,7 @@
|
|
|
10369
10382
|
"immutable": true,
|
|
10370
10383
|
"locationInModule": {
|
|
10371
10384
|
"filename": "lib/matchmaking-configuration.ts",
|
|
10372
|
-
"line":
|
|
10385
|
+
"line": 143
|
|
10373
10386
|
},
|
|
10374
10387
|
"name": "description",
|
|
10375
10388
|
"optional": true,
|
|
@@ -10388,7 +10401,7 @@
|
|
|
10388
10401
|
"immutable": true,
|
|
10389
10402
|
"locationInModule": {
|
|
10390
10403
|
"filename": "lib/matchmaking-configuration.ts",
|
|
10391
|
-
"line":
|
|
10404
|
+
"line": 174
|
|
10392
10405
|
},
|
|
10393
10406
|
"name": "notificationTarget",
|
|
10394
10407
|
"optional": true,
|
|
@@ -10407,7 +10420,7 @@
|
|
|
10407
10420
|
"immutable": true,
|
|
10408
10421
|
"locationInModule": {
|
|
10409
10422
|
"filename": "lib/matchmaking-configuration.ts",
|
|
10410
|
-
"line":
|
|
10423
|
+
"line": 182
|
|
10411
10424
|
},
|
|
10412
10425
|
"name": "requestTimeout",
|
|
10413
10426
|
"optional": true,
|
|
@@ -10426,7 +10439,7 @@
|
|
|
10426
10439
|
"immutable": true,
|
|
10427
10440
|
"locationInModule": {
|
|
10428
10441
|
"filename": "lib/matchmaking-configuration.ts",
|
|
10429
|
-
"line":
|
|
10442
|
+
"line": 151
|
|
10430
10443
|
},
|
|
10431
10444
|
"name": "requireAcceptance",
|
|
10432
10445
|
"optional": true,
|
|
@@ -10458,7 +10471,7 @@
|
|
|
10458
10471
|
},
|
|
10459
10472
|
"locationInModule": {
|
|
10460
10473
|
"filename": "lib/matchmaking-ruleset.ts",
|
|
10461
|
-
"line":
|
|
10474
|
+
"line": 195
|
|
10462
10475
|
},
|
|
10463
10476
|
"parameters": [
|
|
10464
10477
|
{
|
|
@@ -10484,7 +10497,7 @@
|
|
|
10484
10497
|
"kind": "class",
|
|
10485
10498
|
"locationInModule": {
|
|
10486
10499
|
"filename": "lib/matchmaking-ruleset.ts",
|
|
10487
|
-
"line":
|
|
10500
|
+
"line": 136
|
|
10488
10501
|
},
|
|
10489
10502
|
"methods": [
|
|
10490
10503
|
{
|
|
@@ -10494,7 +10507,7 @@
|
|
|
10494
10507
|
},
|
|
10495
10508
|
"locationInModule": {
|
|
10496
10509
|
"filename": "lib/matchmaking-ruleset.ts",
|
|
10497
|
-
"line":
|
|
10510
|
+
"line": 148
|
|
10498
10511
|
},
|
|
10499
10512
|
"name": "fromMatchmakingRuleSetArn",
|
|
10500
10513
|
"parameters": [
|
|
@@ -10531,7 +10544,7 @@
|
|
|
10531
10544
|
},
|
|
10532
10545
|
"locationInModule": {
|
|
10533
10546
|
"filename": "lib/matchmaking-ruleset.ts",
|
|
10534
|
-
"line":
|
|
10547
|
+
"line": 155
|
|
10535
10548
|
},
|
|
10536
10549
|
"name": "fromMatchmakingRuleSetAttributes",
|
|
10537
10550
|
"parameters": [
|
|
@@ -10568,7 +10581,7 @@
|
|
|
10568
10581
|
},
|
|
10569
10582
|
"locationInModule": {
|
|
10570
10583
|
"filename": "lib/matchmaking-ruleset.ts",
|
|
10571
|
-
"line":
|
|
10584
|
+
"line": 141
|
|
10572
10585
|
},
|
|
10573
10586
|
"name": "fromMatchmakingRuleSetName",
|
|
10574
10587
|
"parameters": [
|
|
@@ -10609,7 +10622,7 @@
|
|
|
10609
10622
|
"immutable": true,
|
|
10610
10623
|
"locationInModule": {
|
|
10611
10624
|
"filename": "lib/matchmaking-ruleset.ts",
|
|
10612
|
-
"line":
|
|
10625
|
+
"line": 193
|
|
10613
10626
|
},
|
|
10614
10627
|
"name": "matchmakingRuleSetArn",
|
|
10615
10628
|
"overrides": "@aws-cdk/aws-gamelift-alpha.MatchmakingRuleSetBase",
|
|
@@ -10625,7 +10638,7 @@
|
|
|
10625
10638
|
"immutable": true,
|
|
10626
10639
|
"locationInModule": {
|
|
10627
10640
|
"filename": "lib/matchmaking-ruleset.ts",
|
|
10628
|
-
"line":
|
|
10641
|
+
"line": 188
|
|
10629
10642
|
},
|
|
10630
10643
|
"name": "matchmakingRuleSetName",
|
|
10631
10644
|
"overrides": "@aws-cdk/aws-gamelift-alpha.MatchmakingRuleSetBase",
|
|
@@ -10651,7 +10664,7 @@
|
|
|
10651
10664
|
"kind": "interface",
|
|
10652
10665
|
"locationInModule": {
|
|
10653
10666
|
"filename": "lib/matchmaking-ruleset.ts",
|
|
10654
|
-
"line":
|
|
10667
|
+
"line": 66
|
|
10655
10668
|
},
|
|
10656
10669
|
"name": "MatchmakingRuleSetAttributes",
|
|
10657
10670
|
"properties": [
|
|
@@ -10666,7 +10679,7 @@
|
|
|
10666
10679
|
"immutable": true,
|
|
10667
10680
|
"locationInModule": {
|
|
10668
10681
|
"filename": "lib/matchmaking-ruleset.ts",
|
|
10669
|
-
"line":
|
|
10682
|
+
"line": 74
|
|
10670
10683
|
},
|
|
10671
10684
|
"name": "matchmakingRuleSetArn",
|
|
10672
10685
|
"optional": true,
|
|
@@ -10685,7 +10698,7 @@
|
|
|
10685
10698
|
"immutable": true,
|
|
10686
10699
|
"locationInModule": {
|
|
10687
10700
|
"filename": "lib/matchmaking-ruleset.ts",
|
|
10688
|
-
"line":
|
|
10701
|
+
"line": 83
|
|
10689
10702
|
},
|
|
10690
10703
|
"name": "matchmakingRuleSetName",
|
|
10691
10704
|
"optional": true,
|
|
@@ -10741,7 +10754,7 @@
|
|
|
10741
10754
|
"kind": "class",
|
|
10742
10755
|
"locationInModule": {
|
|
10743
10756
|
"filename": "lib/matchmaking-ruleset.ts",
|
|
10744
|
-
"line":
|
|
10757
|
+
"line": 90
|
|
10745
10758
|
},
|
|
10746
10759
|
"methods": [
|
|
10747
10760
|
{
|
|
@@ -10751,7 +10764,7 @@
|
|
|
10751
10764
|
},
|
|
10752
10765
|
"locationInModule": {
|
|
10753
10766
|
"filename": "lib/matchmaking-ruleset.ts",
|
|
10754
|
-
"line":
|
|
10767
|
+
"line": 101
|
|
10755
10768
|
},
|
|
10756
10769
|
"name": "metric",
|
|
10757
10770
|
"overrides": "@aws-cdk/aws-gamelift-alpha.IMatchmakingRuleSet",
|
|
@@ -10784,7 +10797,7 @@
|
|
|
10784
10797
|
},
|
|
10785
10798
|
"locationInModule": {
|
|
10786
10799
|
"filename": "lib/matchmaking-ruleset.ts",
|
|
10787
|
-
"line":
|
|
10800
|
+
"line": 115
|
|
10788
10801
|
},
|
|
10789
10802
|
"name": "metricRuleEvaluationsFailed",
|
|
10790
10803
|
"overrides": "@aws-cdk/aws-gamelift-alpha.IMatchmakingRuleSet",
|
|
@@ -10811,7 +10824,7 @@
|
|
|
10811
10824
|
},
|
|
10812
10825
|
"locationInModule": {
|
|
10813
10826
|
"filename": "lib/matchmaking-ruleset.ts",
|
|
10814
|
-
"line":
|
|
10827
|
+
"line": 112
|
|
10815
10828
|
},
|
|
10816
10829
|
"name": "metricRuleEvaluationsPassed",
|
|
10817
10830
|
"overrides": "@aws-cdk/aws-gamelift-alpha.IMatchmakingRuleSet",
|
|
@@ -10842,7 +10855,7 @@
|
|
|
10842
10855
|
"immutable": true,
|
|
10843
10856
|
"locationInModule": {
|
|
10844
10857
|
"filename": "lib/matchmaking-ruleset.ts",
|
|
10845
|
-
"line":
|
|
10858
|
+
"line": 99
|
|
10846
10859
|
},
|
|
10847
10860
|
"name": "matchmakingRuleSetArn",
|
|
10848
10861
|
"overrides": "@aws-cdk/aws-gamelift-alpha.IMatchmakingRuleSet",
|
|
@@ -10859,7 +10872,7 @@
|
|
|
10859
10872
|
"immutable": true,
|
|
10860
10873
|
"locationInModule": {
|
|
10861
10874
|
"filename": "lib/matchmaking-ruleset.ts",
|
|
10862
|
-
"line":
|
|
10875
|
+
"line": 95
|
|
10863
10876
|
},
|
|
10864
10877
|
"name": "matchmakingRuleSetName",
|
|
10865
10878
|
"overrides": "@aws-cdk/aws-gamelift-alpha.IMatchmakingRuleSet",
|
|
@@ -10885,7 +10898,7 @@
|
|
|
10885
10898
|
"kind": "interface",
|
|
10886
10899
|
"locationInModule": {
|
|
10887
10900
|
"filename": "lib/matchmaking-ruleset.ts",
|
|
10888
|
-
"line":
|
|
10901
|
+
"line": 48
|
|
10889
10902
|
},
|
|
10890
10903
|
"name": "MatchmakingRuleSetProps",
|
|
10891
10904
|
"properties": [
|
|
@@ -10898,7 +10911,7 @@
|
|
|
10898
10911
|
"immutable": true,
|
|
10899
10912
|
"locationInModule": {
|
|
10900
10913
|
"filename": "lib/matchmaking-ruleset.ts",
|
|
10901
|
-
"line":
|
|
10914
|
+
"line": 60
|
|
10902
10915
|
},
|
|
10903
10916
|
"name": "content",
|
|
10904
10917
|
"type": {
|
|
@@ -10915,7 +10928,7 @@
|
|
|
10915
10928
|
"immutable": true,
|
|
10916
10929
|
"locationInModule": {
|
|
10917
10930
|
"filename": "lib/matchmaking-ruleset.ts",
|
|
10918
|
-
"line":
|
|
10931
|
+
"line": 55
|
|
10919
10932
|
},
|
|
10920
10933
|
"name": "matchmakingRuleSetName",
|
|
10921
10934
|
"type": {
|
|
@@ -11860,7 +11873,7 @@
|
|
|
11860
11873
|
"kind": "interface",
|
|
11861
11874
|
"locationInModule": {
|
|
11862
11875
|
"filename": "lib/fleet-base.ts",
|
|
11863
|
-
"line":
|
|
11876
|
+
"line": 125
|
|
11864
11877
|
},
|
|
11865
11878
|
"name": "ResourceCreationLimitPolicy",
|
|
11866
11879
|
"properties": [
|
|
@@ -11874,7 +11887,7 @@
|
|
|
11874
11887
|
"immutable": true,
|
|
11875
11888
|
"locationInModule": {
|
|
11876
11889
|
"filename": "lib/fleet-base.ts",
|
|
11877
|
-
"line":
|
|
11890
|
+
"line": 131
|
|
11878
11891
|
},
|
|
11879
11892
|
"name": "newGameSessionsPerCreator",
|
|
11880
11893
|
"optional": true,
|
|
@@ -11892,7 +11905,7 @@
|
|
|
11892
11905
|
"immutable": true,
|
|
11893
11906
|
"locationInModule": {
|
|
11894
11907
|
"filename": "lib/fleet-base.ts",
|
|
11895
|
-
"line":
|
|
11908
|
+
"line": 137
|
|
11896
11909
|
},
|
|
11897
11910
|
"name": "policyPeriod",
|
|
11898
11911
|
"optional": true,
|
|
@@ -12144,7 +12157,7 @@
|
|
|
12144
12157
|
"kind": "interface",
|
|
12145
12158
|
"locationInModule": {
|
|
12146
12159
|
"filename": "lib/fleet-base.ts",
|
|
12147
|
-
"line":
|
|
12160
|
+
"line": 91
|
|
12148
12161
|
},
|
|
12149
12162
|
"name": "RuntimeConfiguration",
|
|
12150
12163
|
"properties": [
|
|
@@ -12157,7 +12170,7 @@
|
|
|
12157
12170
|
"immutable": true,
|
|
12158
12171
|
"locationInModule": {
|
|
12159
12172
|
"filename": "lib/fleet-base.ts",
|
|
12160
|
-
"line":
|
|
12173
|
+
"line": 113
|
|
12161
12174
|
},
|
|
12162
12175
|
"name": "serverProcesses",
|
|
12163
12176
|
"type": {
|
|
@@ -12180,7 +12193,7 @@
|
|
|
12180
12193
|
"immutable": true,
|
|
12181
12194
|
"locationInModule": {
|
|
12182
12195
|
"filename": "lib/fleet-base.ts",
|
|
12183
|
-
"line":
|
|
12196
|
+
"line": 100
|
|
12184
12197
|
},
|
|
12185
12198
|
"name": "gameSessionActivationTimeout",
|
|
12186
12199
|
"optional": true,
|
|
@@ -12199,7 +12212,7 @@
|
|
|
12199
12212
|
"immutable": true,
|
|
12200
12213
|
"locationInModule": {
|
|
12201
12214
|
"filename": "lib/fleet-base.ts",
|
|
12202
|
-
"line":
|
|
12215
|
+
"line": 108
|
|
12203
12216
|
},
|
|
12204
12217
|
"name": "maxConcurrentGameSessionActivations",
|
|
12205
12218
|
"optional": true,
|
|
@@ -12228,7 +12241,7 @@
|
|
|
12228
12241
|
},
|
|
12229
12242
|
"locationInModule": {
|
|
12230
12243
|
"filename": "lib/content.ts",
|
|
12231
|
-
"line":
|
|
12244
|
+
"line": 53
|
|
12232
12245
|
},
|
|
12233
12246
|
"parameters": [
|
|
12234
12247
|
{
|
|
@@ -12255,7 +12268,7 @@
|
|
|
12255
12268
|
"kind": "class",
|
|
12256
12269
|
"locationInModule": {
|
|
12257
12270
|
"filename": "lib/content.ts",
|
|
12258
|
-
"line":
|
|
12271
|
+
"line": 51
|
|
12259
12272
|
},
|
|
12260
12273
|
"methods": [
|
|
12261
12274
|
{
|
|
@@ -12265,7 +12278,7 @@
|
|
|
12265
12278
|
},
|
|
12266
12279
|
"locationInModule": {
|
|
12267
12280
|
"filename": "lib/content.ts",
|
|
12268
|
-
"line":
|
|
12281
|
+
"line": 60
|
|
12269
12282
|
},
|
|
12270
12283
|
"name": "bind",
|
|
12271
12284
|
"overrides": "@aws-cdk/aws-gamelift-alpha.Content",
|
|
@@ -12848,7 +12861,7 @@
|
|
|
12848
12861
|
"kind": "interface",
|
|
12849
12862
|
"locationInModule": {
|
|
12850
12863
|
"filename": "lib/fleet-base.ts",
|
|
12851
|
-
"line":
|
|
12864
|
+
"line": 57
|
|
12852
12865
|
},
|
|
12853
12866
|
"name": "ServerProcess",
|
|
12854
12867
|
"properties": [
|
|
@@ -12862,7 +12875,7 @@
|
|
|
12862
12875
|
"immutable": true,
|
|
12863
12876
|
"locationInModule": {
|
|
12864
12877
|
"filename": "lib/fleet-base.ts",
|
|
12865
|
-
"line":
|
|
12878
|
+
"line": 70
|
|
12866
12879
|
},
|
|
12867
12880
|
"name": "launchPath",
|
|
12868
12881
|
"type": {
|
|
@@ -12880,7 +12893,7 @@
|
|
|
12880
12893
|
"immutable": true,
|
|
12881
12894
|
"locationInModule": {
|
|
12882
12895
|
"filename": "lib/fleet-base.ts",
|
|
12883
|
-
"line":
|
|
12896
|
+
"line": 64
|
|
12884
12897
|
},
|
|
12885
12898
|
"name": "concurrentExecutions",
|
|
12886
12899
|
"optional": true,
|
|
@@ -12898,7 +12911,7 @@
|
|
|
12898
12911
|
"immutable": true,
|
|
12899
12912
|
"locationInModule": {
|
|
12900
12913
|
"filename": "lib/fleet-base.ts",
|
|
12901
|
-
"line":
|
|
12914
|
+
"line": 77
|
|
12902
12915
|
},
|
|
12903
12916
|
"name": "parameters",
|
|
12904
12917
|
"optional": true,
|
|
@@ -13112,6 +13125,6 @@
|
|
|
13112
13125
|
"symbolId": "lib/standalone-matchmaking-configuration:StandaloneMatchmakingConfigurationProps"
|
|
13113
13126
|
}
|
|
13114
13127
|
},
|
|
13115
|
-
"version": "2.
|
|
13128
|
+
"version": "2.82.0-alpha.0",
|
|
13116
13129
|
"fingerprint": "**********"
|
|
13117
13130
|
}
|