aws-sdk-gamelift 1.29.0 → 1.34.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.
- checksums.yaml +4 -4
- data/lib/aws-sdk-gamelift.rb +3 -1
- data/lib/aws-sdk-gamelift/client.rb +8 -4
- data/lib/aws-sdk-gamelift/client_api.rb +2 -0
- data/lib/aws-sdk-gamelift/customizations.rb +1 -0
- data/lib/aws-sdk-gamelift/errors.rb +2 -0
- data/lib/aws-sdk-gamelift/resource.rb +2 -0
- data/lib/aws-sdk-gamelift/types.rb +226 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a807057d5f7ff1ad3512d7a5ccee8d65d20e37bd20693a9bf242666052ee6bce
|
4
|
+
data.tar.gz: b926d3dd625a6e730f702a0123dd5bdc0eb38543795fec12e97777c31b30c53a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ba2227ab8c20255c62b3fd7bd23ae0c2308b5fac59eefd59099432c3a01c0ad12b51f15ca07840dd642f0508055af08156622d39bac49a412ef9cb2c9fbf8dc1
|
7
|
+
data.tar.gz: 18eea679a4888dfae242b41ac075af13b3619128b4f7d966c3328be861f010ca3b5c012d9ea915495892891e2ba4ad208ed7768732f31f3f4104608749eff4a4
|
data/lib/aws-sdk-gamelift.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -45,6 +47,6 @@ require_relative 'aws-sdk-gamelift/customizations'
|
|
45
47
|
# @service
|
46
48
|
module Aws::GameLift
|
47
49
|
|
48
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.34.0'
|
49
51
|
|
50
52
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
29
32
|
|
@@ -69,6 +72,7 @@ module Aws::GameLift
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
74
78
|
|
@@ -105,7 +109,7 @@ module Aws::GameLift
|
|
105
109
|
# @option options [required, String] :region
|
106
110
|
# The AWS region to connect to. The configured `:region` is
|
107
111
|
# used to determine the service `:endpoint`. When not passed,
|
108
|
-
# a default `:region` is
|
112
|
+
# a default `:region` is searched for in the following locations:
|
109
113
|
#
|
110
114
|
# * `Aws.config[:region]`
|
111
115
|
# * `ENV['AWS_REGION']`
|
@@ -161,7 +165,7 @@ module Aws::GameLift
|
|
161
165
|
# @option options [String] :endpoint
|
162
166
|
# The client endpoint is normally constructed from the `:region`
|
163
167
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
169
|
#
|
166
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +180,7 @@ module Aws::GameLift
|
|
176
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
181
|
#
|
178
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
184
|
#
|
181
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
186
|
# The log formatter.
|
@@ -8961,7 +8965,7 @@ module Aws::GameLift
|
|
8961
8965
|
params: params,
|
8962
8966
|
config: config)
|
8963
8967
|
context[:gem_name] = 'aws-sdk-gamelift'
|
8964
|
-
context[:gem_version] = '1.
|
8968
|
+
context[:gem_version] = '1.34.0'
|
8965
8969
|
Seahorse::Client::Request.new(handlers, context)
|
8966
8970
|
end
|
8967
8971
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -39,6 +41,7 @@ module Aws::GameLift
|
|
39
41
|
:ticket_id,
|
40
42
|
:player_ids,
|
41
43
|
:acceptance_type)
|
44
|
+
SENSITIVE = []
|
42
45
|
include Aws::Structure
|
43
46
|
end
|
44
47
|
|
@@ -112,6 +115,7 @@ module Aws::GameLift
|
|
112
115
|
:routing_strategy,
|
113
116
|
:creation_time,
|
114
117
|
:last_updated_time)
|
118
|
+
SENSITIVE = []
|
115
119
|
include Aws::Structure
|
116
120
|
end
|
117
121
|
|
@@ -159,6 +163,7 @@ module Aws::GameLift
|
|
159
163
|
:n,
|
160
164
|
:sl,
|
161
165
|
:sdm)
|
166
|
+
SENSITIVE = []
|
162
167
|
include Aws::Structure
|
163
168
|
end
|
164
169
|
|
@@ -187,6 +192,7 @@ module Aws::GameLift
|
|
187
192
|
:access_key_id,
|
188
193
|
:secret_access_key,
|
189
194
|
:session_token)
|
195
|
+
SENSITIVE = []
|
190
196
|
include Aws::Structure
|
191
197
|
end
|
192
198
|
|
@@ -276,6 +282,7 @@ module Aws::GameLift
|
|
276
282
|
:size_on_disk,
|
277
283
|
:operating_system,
|
278
284
|
:creation_time)
|
285
|
+
SENSITIVE = []
|
279
286
|
include Aws::Structure
|
280
287
|
end
|
281
288
|
|
@@ -305,6 +312,7 @@ module Aws::GameLift
|
|
305
312
|
#
|
306
313
|
class CertificateConfiguration < Struct.new(
|
307
314
|
:certificate_type)
|
315
|
+
SENSITIVE = []
|
308
316
|
include Aws::Structure
|
309
317
|
end
|
310
318
|
|
@@ -342,6 +350,7 @@ module Aws::GameLift
|
|
342
350
|
:game_server_group_name,
|
343
351
|
:game_server_id,
|
344
352
|
:game_server_data)
|
353
|
+
SENSITIVE = []
|
345
354
|
include Aws::Structure
|
346
355
|
end
|
347
356
|
|
@@ -353,6 +362,7 @@ module Aws::GameLift
|
|
353
362
|
#
|
354
363
|
class ClaimGameServerOutput < Struct.new(
|
355
364
|
:game_server)
|
365
|
+
SENSITIVE = []
|
356
366
|
include Aws::Structure
|
357
367
|
end
|
358
368
|
|
@@ -367,6 +377,7 @@ module Aws::GameLift
|
|
367
377
|
#
|
368
378
|
class ConflictException < Struct.new(
|
369
379
|
:message)
|
380
|
+
SENSITIVE = []
|
370
381
|
include Aws::Structure
|
371
382
|
end
|
372
383
|
|
@@ -427,6 +438,7 @@ module Aws::GameLift
|
|
427
438
|
:description,
|
428
439
|
:routing_strategy,
|
429
440
|
:tags)
|
441
|
+
SENSITIVE = []
|
430
442
|
include Aws::Structure
|
431
443
|
end
|
432
444
|
|
@@ -440,6 +452,7 @@ module Aws::GameLift
|
|
440
452
|
#
|
441
453
|
class CreateAliasOutput < Struct.new(
|
442
454
|
:alias)
|
455
|
+
SENSITIVE = []
|
443
456
|
include Aws::Structure
|
444
457
|
end
|
445
458
|
|
@@ -520,6 +533,7 @@ module Aws::GameLift
|
|
520
533
|
:storage_location,
|
521
534
|
:operating_system,
|
522
535
|
:tags)
|
536
|
+
SENSITIVE = []
|
523
537
|
include Aws::Structure
|
524
538
|
end
|
525
539
|
|
@@ -549,6 +563,7 @@ module Aws::GameLift
|
|
549
563
|
:build,
|
550
564
|
:upload_credentials,
|
551
565
|
:storage_location)
|
566
|
+
SENSITIVE = [:upload_credentials]
|
552
567
|
include Aws::Structure
|
553
568
|
end
|
554
569
|
|
@@ -834,6 +849,7 @@ module Aws::GameLift
|
|
834
849
|
:instance_role_arn,
|
835
850
|
:certificate_configuration,
|
836
851
|
:tags)
|
852
|
+
SENSITIVE = []
|
837
853
|
include Aws::Structure
|
838
854
|
end
|
839
855
|
|
@@ -847,6 +863,7 @@ module Aws::GameLift
|
|
847
863
|
#
|
848
864
|
class CreateFleetOutput < Struct.new(
|
849
865
|
:fleet_attributes)
|
866
|
+
SENSITIVE = []
|
850
867
|
include Aws::Structure
|
851
868
|
end
|
852
869
|
|
@@ -1017,6 +1034,7 @@ module Aws::GameLift
|
|
1017
1034
|
:game_server_protection_policy,
|
1018
1035
|
:vpc_subnets,
|
1019
1036
|
:tags)
|
1037
|
+
SENSITIVE = []
|
1020
1038
|
include Aws::Structure
|
1021
1039
|
end
|
1022
1040
|
|
@@ -1032,6 +1050,7 @@ module Aws::GameLift
|
|
1032
1050
|
#
|
1033
1051
|
class CreateGameServerGroupOutput < Struct.new(
|
1034
1052
|
:game_server_group)
|
1053
|
+
SENSITIVE = []
|
1035
1054
|
include Aws::Structure
|
1036
1055
|
end
|
1037
1056
|
|
@@ -1142,6 +1161,7 @@ module Aws::GameLift
|
|
1142
1161
|
:game_session_id,
|
1143
1162
|
:idempotency_token,
|
1144
1163
|
:game_session_data)
|
1164
|
+
SENSITIVE = []
|
1145
1165
|
include Aws::Structure
|
1146
1166
|
end
|
1147
1167
|
|
@@ -1155,6 +1175,7 @@ module Aws::GameLift
|
|
1155
1175
|
#
|
1156
1176
|
class CreateGameSessionOutput < Struct.new(
|
1157
1177
|
:game_session)
|
1178
|
+
SENSITIVE = []
|
1158
1179
|
include Aws::Structure
|
1159
1180
|
end
|
1160
1181
|
|
@@ -1241,6 +1262,7 @@ module Aws::GameLift
|
|
1241
1262
|
:player_latency_policies,
|
1242
1263
|
:destinations,
|
1243
1264
|
:tags)
|
1265
|
+
SENSITIVE = []
|
1244
1266
|
include Aws::Structure
|
1245
1267
|
end
|
1246
1268
|
|
@@ -1254,6 +1276,7 @@ module Aws::GameLift
|
|
1254
1276
|
#
|
1255
1277
|
class CreateGameSessionQueueOutput < Struct.new(
|
1256
1278
|
:game_session_queue)
|
1279
|
+
SENSITIVE = []
|
1257
1280
|
include Aws::Structure
|
1258
1281
|
end
|
1259
1282
|
|
@@ -1427,6 +1450,7 @@ module Aws::GameLift
|
|
1427
1450
|
:game_session_data,
|
1428
1451
|
:backfill_mode,
|
1429
1452
|
:tags)
|
1453
|
+
SENSITIVE = []
|
1430
1454
|
include Aws::Structure
|
1431
1455
|
end
|
1432
1456
|
|
@@ -1440,6 +1464,7 @@ module Aws::GameLift
|
|
1440
1464
|
#
|
1441
1465
|
class CreateMatchmakingConfigurationOutput < Struct.new(
|
1442
1466
|
:configuration)
|
1467
|
+
SENSITIVE = []
|
1443
1468
|
include Aws::Structure
|
1444
1469
|
end
|
1445
1470
|
|
@@ -1493,6 +1518,7 @@ module Aws::GameLift
|
|
1493
1518
|
:name,
|
1494
1519
|
:rule_set_body,
|
1495
1520
|
:tags)
|
1521
|
+
SENSITIVE = []
|
1496
1522
|
include Aws::Structure
|
1497
1523
|
end
|
1498
1524
|
|
@@ -1506,6 +1532,7 @@ module Aws::GameLift
|
|
1506
1532
|
#
|
1507
1533
|
class CreateMatchmakingRuleSetOutput < Struct.new(
|
1508
1534
|
:rule_set)
|
1535
|
+
SENSITIVE = []
|
1509
1536
|
include Aws::Structure
|
1510
1537
|
end
|
1511
1538
|
|
@@ -1540,6 +1567,7 @@ module Aws::GameLift
|
|
1540
1567
|
:game_session_id,
|
1541
1568
|
:player_id,
|
1542
1569
|
:player_data)
|
1570
|
+
SENSITIVE = []
|
1543
1571
|
include Aws::Structure
|
1544
1572
|
end
|
1545
1573
|
|
@@ -1553,6 +1581,7 @@ module Aws::GameLift
|
|
1553
1581
|
#
|
1554
1582
|
class CreatePlayerSessionOutput < Struct.new(
|
1555
1583
|
:player_session)
|
1584
|
+
SENSITIVE = []
|
1556
1585
|
include Aws::Structure
|
1557
1586
|
end
|
1558
1587
|
|
@@ -1591,6 +1620,7 @@ module Aws::GameLift
|
|
1591
1620
|
:game_session_id,
|
1592
1621
|
:player_ids,
|
1593
1622
|
:player_data_map)
|
1623
|
+
SENSITIVE = []
|
1594
1624
|
include Aws::Structure
|
1595
1625
|
end
|
1596
1626
|
|
@@ -1605,6 +1635,7 @@ module Aws::GameLift
|
|
1605
1635
|
#
|
1606
1636
|
class CreatePlayerSessionsOutput < Struct.new(
|
1607
1637
|
:player_sessions)
|
1638
|
+
SENSITIVE = []
|
1608
1639
|
include Aws::Structure
|
1609
1640
|
end
|
1610
1641
|
|
@@ -1687,6 +1718,7 @@ module Aws::GameLift
|
|
1687
1718
|
:storage_location,
|
1688
1719
|
:zip_file,
|
1689
1720
|
:tags)
|
1721
|
+
SENSITIVE = []
|
1690
1722
|
include Aws::Structure
|
1691
1723
|
end
|
1692
1724
|
|
@@ -1704,6 +1736,7 @@ module Aws::GameLift
|
|
1704
1736
|
#
|
1705
1737
|
class CreateScriptOutput < Struct.new(
|
1706
1738
|
:script)
|
1739
|
+
SENSITIVE = []
|
1707
1740
|
include Aws::Structure
|
1708
1741
|
end
|
1709
1742
|
|
@@ -1741,6 +1774,7 @@ module Aws::GameLift
|
|
1741
1774
|
class CreateVpcPeeringAuthorizationInput < Struct.new(
|
1742
1775
|
:game_lift_aws_account_id,
|
1743
1776
|
:peer_vpc_id)
|
1777
|
+
SENSITIVE = []
|
1744
1778
|
include Aws::Structure
|
1745
1779
|
end
|
1746
1780
|
|
@@ -1755,6 +1789,7 @@ module Aws::GameLift
|
|
1755
1789
|
#
|
1756
1790
|
class CreateVpcPeeringAuthorizationOutput < Struct.new(
|
1757
1791
|
:vpc_peering_authorization)
|
1792
|
+
SENSITIVE = []
|
1758
1793
|
include Aws::Structure
|
1759
1794
|
end
|
1760
1795
|
|
@@ -1800,6 +1835,7 @@ module Aws::GameLift
|
|
1800
1835
|
:fleet_id,
|
1801
1836
|
:peer_vpc_aws_account_id,
|
1802
1837
|
:peer_vpc_id)
|
1838
|
+
SENSITIVE = []
|
1803
1839
|
include Aws::Structure
|
1804
1840
|
end
|
1805
1841
|
|
@@ -1825,6 +1861,7 @@ module Aws::GameLift
|
|
1825
1861
|
#
|
1826
1862
|
class DeleteAliasInput < Struct.new(
|
1827
1863
|
:alias_id)
|
1864
|
+
SENSITIVE = []
|
1828
1865
|
include Aws::Structure
|
1829
1866
|
end
|
1830
1867
|
|
@@ -1846,6 +1883,7 @@ module Aws::GameLift
|
|
1846
1883
|
#
|
1847
1884
|
class DeleteBuildInput < Struct.new(
|
1848
1885
|
:build_id)
|
1886
|
+
SENSITIVE = []
|
1849
1887
|
include Aws::Structure
|
1850
1888
|
end
|
1851
1889
|
|
@@ -1867,6 +1905,7 @@ module Aws::GameLift
|
|
1867
1905
|
#
|
1868
1906
|
class DeleteFleetInput < Struct.new(
|
1869
1907
|
:fleet_id)
|
1908
|
+
SENSITIVE = []
|
1870
1909
|
include Aws::Structure
|
1871
1910
|
end
|
1872
1911
|
|
@@ -1903,6 +1942,7 @@ module Aws::GameLift
|
|
1903
1942
|
class DeleteGameServerGroupInput < Struct.new(
|
1904
1943
|
:game_server_group_name,
|
1905
1944
|
:delete_option)
|
1945
|
+
SENSITIVE = []
|
1906
1946
|
include Aws::Structure
|
1907
1947
|
end
|
1908
1948
|
|
@@ -1915,6 +1955,7 @@ module Aws::GameLift
|
|
1915
1955
|
#
|
1916
1956
|
class DeleteGameServerGroupOutput < Struct.new(
|
1917
1957
|
:game_server_group)
|
1958
|
+
SENSITIVE = []
|
1918
1959
|
include Aws::Structure
|
1919
1960
|
end
|
1920
1961
|
|
@@ -1937,6 +1978,7 @@ module Aws::GameLift
|
|
1937
1978
|
#
|
1938
1979
|
class DeleteGameSessionQueueInput < Struct.new(
|
1939
1980
|
:name)
|
1981
|
+
SENSITIVE = []
|
1940
1982
|
include Aws::Structure
|
1941
1983
|
end
|
1942
1984
|
|
@@ -1962,6 +2004,7 @@ module Aws::GameLift
|
|
1962
2004
|
#
|
1963
2005
|
class DeleteMatchmakingConfigurationInput < Struct.new(
|
1964
2006
|
:name)
|
2007
|
+
SENSITIVE = []
|
1965
2008
|
include Aws::Structure
|
1966
2009
|
end
|
1967
2010
|
|
@@ -1989,6 +2032,7 @@ module Aws::GameLift
|
|
1989
2032
|
#
|
1990
2033
|
class DeleteMatchmakingRuleSetInput < Struct.new(
|
1991
2034
|
:name)
|
2035
|
+
SENSITIVE = []
|
1992
2036
|
include Aws::Structure
|
1993
2037
|
end
|
1994
2038
|
|
@@ -2023,6 +2067,7 @@ module Aws::GameLift
|
|
2023
2067
|
class DeleteScalingPolicyInput < Struct.new(
|
2024
2068
|
:name,
|
2025
2069
|
:fleet_id)
|
2070
|
+
SENSITIVE = []
|
2026
2071
|
include Aws::Structure
|
2027
2072
|
end
|
2028
2073
|
|
@@ -2042,6 +2087,7 @@ module Aws::GameLift
|
|
2042
2087
|
#
|
2043
2088
|
class DeleteScriptInput < Struct.new(
|
2044
2089
|
:script_id)
|
2090
|
+
SENSITIVE = []
|
2045
2091
|
include Aws::Structure
|
2046
2092
|
end
|
2047
2093
|
|
@@ -2079,6 +2125,7 @@ module Aws::GameLift
|
|
2079
2125
|
class DeleteVpcPeeringAuthorizationInput < Struct.new(
|
2080
2126
|
:game_lift_aws_account_id,
|
2081
2127
|
:peer_vpc_id)
|
2128
|
+
SENSITIVE = []
|
2082
2129
|
include Aws::Structure
|
2083
2130
|
end
|
2084
2131
|
|
@@ -2113,6 +2160,7 @@ module Aws::GameLift
|
|
2113
2160
|
class DeleteVpcPeeringConnectionInput < Struct.new(
|
2114
2161
|
:fleet_id,
|
2115
2162
|
:vpc_peering_connection_id)
|
2163
|
+
SENSITIVE = []
|
2116
2164
|
include Aws::Structure
|
2117
2165
|
end
|
2118
2166
|
|
@@ -2143,6 +2191,7 @@ module Aws::GameLift
|
|
2143
2191
|
class DeregisterGameServerInput < Struct.new(
|
2144
2192
|
:game_server_group_name,
|
2145
2193
|
:game_server_id)
|
2194
|
+
SENSITIVE = []
|
2146
2195
|
include Aws::Structure
|
2147
2196
|
end
|
2148
2197
|
|
@@ -2164,6 +2213,7 @@ module Aws::GameLift
|
|
2164
2213
|
#
|
2165
2214
|
class DescribeAliasInput < Struct.new(
|
2166
2215
|
:alias_id)
|
2216
|
+
SENSITIVE = []
|
2167
2217
|
include Aws::Structure
|
2168
2218
|
end
|
2169
2219
|
|
@@ -2177,6 +2227,7 @@ module Aws::GameLift
|
|
2177
2227
|
#
|
2178
2228
|
class DescribeAliasOutput < Struct.new(
|
2179
2229
|
:alias)
|
2230
|
+
SENSITIVE = []
|
2180
2231
|
include Aws::Structure
|
2181
2232
|
end
|
2182
2233
|
|
@@ -2198,6 +2249,7 @@ module Aws::GameLift
|
|
2198
2249
|
#
|
2199
2250
|
class DescribeBuildInput < Struct.new(
|
2200
2251
|
:build_id)
|
2252
|
+
SENSITIVE = []
|
2201
2253
|
include Aws::Structure
|
2202
2254
|
end
|
2203
2255
|
|
@@ -2211,6 +2263,7 @@ module Aws::GameLift
|
|
2211
2263
|
#
|
2212
2264
|
class DescribeBuildOutput < Struct.new(
|
2213
2265
|
:build)
|
2266
|
+
SENSITIVE = []
|
2214
2267
|
include Aws::Structure
|
2215
2268
|
end
|
2216
2269
|
|
@@ -2241,6 +2294,7 @@ module Aws::GameLift
|
|
2241
2294
|
#
|
2242
2295
|
class DescribeEC2InstanceLimitsInput < Struct.new(
|
2243
2296
|
:ec2_instance_type)
|
2297
|
+
SENSITIVE = []
|
2244
2298
|
include Aws::Structure
|
2245
2299
|
end
|
2246
2300
|
|
@@ -2254,6 +2308,7 @@ module Aws::GameLift
|
|
2254
2308
|
#
|
2255
2309
|
class DescribeEC2InstanceLimitsOutput < Struct.new(
|
2256
2310
|
:ec2_instance_limits)
|
2311
|
+
SENSITIVE = []
|
2257
2312
|
include Aws::Structure
|
2258
2313
|
end
|
2259
2314
|
|
@@ -2297,6 +2352,7 @@ module Aws::GameLift
|
|
2297
2352
|
:fleet_ids,
|
2298
2353
|
:limit,
|
2299
2354
|
:next_token)
|
2355
|
+
SENSITIVE = []
|
2300
2356
|
include Aws::Structure
|
2301
2357
|
end
|
2302
2358
|
|
@@ -2319,6 +2375,7 @@ module Aws::GameLift
|
|
2319
2375
|
class DescribeFleetAttributesOutput < Struct.new(
|
2320
2376
|
:fleet_attributes,
|
2321
2377
|
:next_token)
|
2378
|
+
SENSITIVE = []
|
2322
2379
|
include Aws::Structure
|
2323
2380
|
end
|
2324
2381
|
|
@@ -2359,6 +2416,7 @@ module Aws::GameLift
|
|
2359
2416
|
:fleet_ids,
|
2360
2417
|
:limit,
|
2361
2418
|
:next_token)
|
2419
|
+
SENSITIVE = []
|
2362
2420
|
include Aws::Structure
|
2363
2421
|
end
|
2364
2422
|
|
@@ -2381,6 +2439,7 @@ module Aws::GameLift
|
|
2381
2439
|
class DescribeFleetCapacityOutput < Struct.new(
|
2382
2440
|
:fleet_capacity,
|
2383
2441
|
:next_token)
|
2442
|
+
SENSITIVE = []
|
2384
2443
|
include Aws::Structure
|
2385
2444
|
end
|
2386
2445
|
|
@@ -2436,6 +2495,7 @@ module Aws::GameLift
|
|
2436
2495
|
:end_time,
|
2437
2496
|
:limit,
|
2438
2497
|
:next_token)
|
2498
|
+
SENSITIVE = []
|
2439
2499
|
include Aws::Structure
|
2440
2500
|
end
|
2441
2501
|
|
@@ -2457,6 +2517,7 @@ module Aws::GameLift
|
|
2457
2517
|
class DescribeFleetEventsOutput < Struct.new(
|
2458
2518
|
:events,
|
2459
2519
|
:next_token)
|
2520
|
+
SENSITIVE = []
|
2460
2521
|
include Aws::Structure
|
2461
2522
|
end
|
2462
2523
|
|
@@ -2478,6 +2539,7 @@ module Aws::GameLift
|
|
2478
2539
|
#
|
2479
2540
|
class DescribeFleetPortSettingsInput < Struct.new(
|
2480
2541
|
:fleet_id)
|
2542
|
+
SENSITIVE = []
|
2481
2543
|
include Aws::Structure
|
2482
2544
|
end
|
2483
2545
|
|
@@ -2491,6 +2553,7 @@ module Aws::GameLift
|
|
2491
2553
|
#
|
2492
2554
|
class DescribeFleetPortSettingsOutput < Struct.new(
|
2493
2555
|
:inbound_permissions)
|
2556
|
+
SENSITIVE = []
|
2494
2557
|
include Aws::Structure
|
2495
2558
|
end
|
2496
2559
|
|
@@ -2534,6 +2597,7 @@ module Aws::GameLift
|
|
2534
2597
|
:fleet_ids,
|
2535
2598
|
:limit,
|
2536
2599
|
:next_token)
|
2600
|
+
SENSITIVE = []
|
2537
2601
|
include Aws::Structure
|
2538
2602
|
end
|
2539
2603
|
|
@@ -2555,6 +2619,7 @@ module Aws::GameLift
|
|
2555
2619
|
class DescribeFleetUtilizationOutput < Struct.new(
|
2556
2620
|
:fleet_utilization,
|
2557
2621
|
:next_token)
|
2622
|
+
SENSITIVE = []
|
2558
2623
|
include Aws::Structure
|
2559
2624
|
end
|
2560
2625
|
|
@@ -2574,6 +2639,7 @@ module Aws::GameLift
|
|
2574
2639
|
#
|
2575
2640
|
class DescribeGameServerGroupInput < Struct.new(
|
2576
2641
|
:game_server_group_name)
|
2642
|
+
SENSITIVE = []
|
2577
2643
|
include Aws::Structure
|
2578
2644
|
end
|
2579
2645
|
|
@@ -2585,6 +2651,7 @@ module Aws::GameLift
|
|
2585
2651
|
#
|
2586
2652
|
class DescribeGameServerGroupOutput < Struct.new(
|
2587
2653
|
:game_server_group)
|
2654
|
+
SENSITIVE = []
|
2588
2655
|
include Aws::Structure
|
2589
2656
|
end
|
2590
2657
|
|
@@ -2610,6 +2677,7 @@ module Aws::GameLift
|
|
2610
2677
|
class DescribeGameServerInput < Struct.new(
|
2611
2678
|
:game_server_group_name,
|
2612
2679
|
:game_server_id)
|
2680
|
+
SENSITIVE = []
|
2613
2681
|
include Aws::Structure
|
2614
2682
|
end
|
2615
2683
|
|
@@ -2621,6 +2689,7 @@ module Aws::GameLift
|
|
2621
2689
|
#
|
2622
2690
|
class DescribeGameServerOutput < Struct.new(
|
2623
2691
|
:game_server)
|
2692
|
+
SENSITIVE = []
|
2624
2693
|
include Aws::Structure
|
2625
2694
|
end
|
2626
2695
|
|
@@ -2680,6 +2749,7 @@ module Aws::GameLift
|
|
2680
2749
|
:status_filter,
|
2681
2750
|
:limit,
|
2682
2751
|
:next_token)
|
2752
|
+
SENSITIVE = []
|
2683
2753
|
include Aws::Structure
|
2684
2754
|
end
|
2685
2755
|
|
@@ -2702,6 +2772,7 @@ module Aws::GameLift
|
|
2702
2772
|
class DescribeGameSessionDetailsOutput < Struct.new(
|
2703
2773
|
:game_session_details,
|
2704
2774
|
:next_token)
|
2775
|
+
SENSITIVE = []
|
2705
2776
|
include Aws::Structure
|
2706
2777
|
end
|
2707
2778
|
|
@@ -2722,6 +2793,7 @@ module Aws::GameLift
|
|
2722
2793
|
#
|
2723
2794
|
class DescribeGameSessionPlacementInput < Struct.new(
|
2724
2795
|
:placement_id)
|
2796
|
+
SENSITIVE = []
|
2725
2797
|
include Aws::Structure
|
2726
2798
|
end
|
2727
2799
|
|
@@ -2735,6 +2807,7 @@ module Aws::GameLift
|
|
2735
2807
|
#
|
2736
2808
|
class DescribeGameSessionPlacementOutput < Struct.new(
|
2737
2809
|
:game_session_placement)
|
2810
|
+
SENSITIVE = []
|
2738
2811
|
include Aws::Structure
|
2739
2812
|
end
|
2740
2813
|
|
@@ -2773,6 +2846,7 @@ module Aws::GameLift
|
|
2773
2846
|
:names,
|
2774
2847
|
:limit,
|
2775
2848
|
:next_token)
|
2849
|
+
SENSITIVE = []
|
2776
2850
|
include Aws::Structure
|
2777
2851
|
end
|
2778
2852
|
|
@@ -2794,6 +2868,7 @@ module Aws::GameLift
|
|
2794
2868
|
class DescribeGameSessionQueuesOutput < Struct.new(
|
2795
2869
|
:game_session_queues,
|
2796
2870
|
:next_token)
|
2871
|
+
SENSITIVE = []
|
2797
2872
|
include Aws::Structure
|
2798
2873
|
end
|
2799
2874
|
|
@@ -2853,6 +2928,7 @@ module Aws::GameLift
|
|
2853
2928
|
:status_filter,
|
2854
2929
|
:limit,
|
2855
2930
|
:next_token)
|
2931
|
+
SENSITIVE = []
|
2856
2932
|
include Aws::Structure
|
2857
2933
|
end
|
2858
2934
|
|
@@ -2874,6 +2950,7 @@ module Aws::GameLift
|
|
2874
2950
|
class DescribeGameSessionsOutput < Struct.new(
|
2875
2951
|
:game_sessions,
|
2876
2952
|
:next_token)
|
2953
|
+
SENSITIVE = []
|
2877
2954
|
include Aws::Structure
|
2878
2955
|
end
|
2879
2956
|
|
@@ -2918,6 +2995,7 @@ module Aws::GameLift
|
|
2918
2995
|
:instance_id,
|
2919
2996
|
:limit,
|
2920
2997
|
:next_token)
|
2998
|
+
SENSITIVE = []
|
2921
2999
|
include Aws::Structure
|
2922
3000
|
end
|
2923
3001
|
|
@@ -2939,6 +3017,7 @@ module Aws::GameLift
|
|
2939
3017
|
class DescribeInstancesOutput < Struct.new(
|
2940
3018
|
:instances,
|
2941
3019
|
:next_token)
|
3020
|
+
SENSITIVE = []
|
2942
3021
|
include Aws::Structure
|
2943
3022
|
end
|
2944
3023
|
|
@@ -2986,6 +3065,7 @@ module Aws::GameLift
|
|
2986
3065
|
:rule_set_name,
|
2987
3066
|
:limit,
|
2988
3067
|
:next_token)
|
3068
|
+
SENSITIVE = []
|
2989
3069
|
include Aws::Structure
|
2990
3070
|
end
|
2991
3071
|
|
@@ -3006,6 +3086,7 @@ module Aws::GameLift
|
|
3006
3086
|
class DescribeMatchmakingConfigurationsOutput < Struct.new(
|
3007
3087
|
:configurations,
|
3008
3088
|
:next_token)
|
3089
|
+
SENSITIVE = []
|
3009
3090
|
include Aws::Structure
|
3010
3091
|
end
|
3011
3092
|
|
@@ -3027,6 +3108,7 @@ module Aws::GameLift
|
|
3027
3108
|
#
|
3028
3109
|
class DescribeMatchmakingInput < Struct.new(
|
3029
3110
|
:ticket_ids)
|
3111
|
+
SENSITIVE = []
|
3030
3112
|
include Aws::Structure
|
3031
3113
|
end
|
3032
3114
|
|
@@ -3041,6 +3123,7 @@ module Aws::GameLift
|
|
3041
3123
|
#
|
3042
3124
|
class DescribeMatchmakingOutput < Struct.new(
|
3043
3125
|
:ticket_list)
|
3126
|
+
SENSITIVE = []
|
3044
3127
|
include Aws::Structure
|
3045
3128
|
end
|
3046
3129
|
|
@@ -3080,6 +3163,7 @@ module Aws::GameLift
|
|
3080
3163
|
:names,
|
3081
3164
|
:limit,
|
3082
3165
|
:next_token)
|
3166
|
+
SENSITIVE = []
|
3083
3167
|
include Aws::Structure
|
3084
3168
|
end
|
3085
3169
|
|
@@ -3100,6 +3184,7 @@ module Aws::GameLift
|
|
3100
3184
|
class DescribeMatchmakingRuleSetsOutput < Struct.new(
|
3101
3185
|
:rule_sets,
|
3102
3186
|
:next_token)
|
3187
|
+
SENSITIVE = []
|
3103
3188
|
include Aws::Structure
|
3104
3189
|
end
|
3105
3190
|
|
@@ -3172,6 +3257,7 @@ module Aws::GameLift
|
|
3172
3257
|
:player_session_status_filter,
|
3173
3258
|
:limit,
|
3174
3259
|
:next_token)
|
3260
|
+
SENSITIVE = []
|
3175
3261
|
include Aws::Structure
|
3176
3262
|
end
|
3177
3263
|
|
@@ -3193,6 +3279,7 @@ module Aws::GameLift
|
|
3193
3279
|
class DescribePlayerSessionsOutput < Struct.new(
|
3194
3280
|
:player_sessions,
|
3195
3281
|
:next_token)
|
3282
|
+
SENSITIVE = []
|
3196
3283
|
include Aws::Structure
|
3197
3284
|
end
|
3198
3285
|
|
@@ -3214,6 +3301,7 @@ module Aws::GameLift
|
|
3214
3301
|
#
|
3215
3302
|
class DescribeRuntimeConfigurationInput < Struct.new(
|
3216
3303
|
:fleet_id)
|
3304
|
+
SENSITIVE = []
|
3217
3305
|
include Aws::Structure
|
3218
3306
|
end
|
3219
3307
|
|
@@ -3228,6 +3316,7 @@ module Aws::GameLift
|
|
3228
3316
|
#
|
3229
3317
|
class DescribeRuntimeConfigurationOutput < Struct.new(
|
3230
3318
|
:runtime_configuration)
|
3319
|
+
SENSITIVE = []
|
3231
3320
|
include Aws::Structure
|
3232
3321
|
end
|
3233
3322
|
|
@@ -3289,6 +3378,7 @@ module Aws::GameLift
|
|
3289
3378
|
:status_filter,
|
3290
3379
|
:limit,
|
3291
3380
|
:next_token)
|
3381
|
+
SENSITIVE = []
|
3292
3382
|
include Aws::Structure
|
3293
3383
|
end
|
3294
3384
|
|
@@ -3310,6 +3400,7 @@ module Aws::GameLift
|
|
3310
3400
|
class DescribeScalingPoliciesOutput < Struct.new(
|
3311
3401
|
:scaling_policies,
|
3312
3402
|
:next_token)
|
3403
|
+
SENSITIVE = []
|
3313
3404
|
include Aws::Structure
|
3314
3405
|
end
|
3315
3406
|
|
@@ -3329,6 +3420,7 @@ module Aws::GameLift
|
|
3329
3420
|
#
|
3330
3421
|
class DescribeScriptInput < Struct.new(
|
3331
3422
|
:script_id)
|
3423
|
+
SENSITIVE = []
|
3332
3424
|
include Aws::Structure
|
3333
3425
|
end
|
3334
3426
|
|
@@ -3340,6 +3432,7 @@ module Aws::GameLift
|
|
3340
3432
|
#
|
3341
3433
|
class DescribeScriptOutput < Struct.new(
|
3342
3434
|
:script)
|
3435
|
+
SENSITIVE = []
|
3343
3436
|
include Aws::Structure
|
3344
3437
|
end
|
3345
3438
|
|
@@ -3358,6 +3451,7 @@ module Aws::GameLift
|
|
3358
3451
|
#
|
3359
3452
|
class DescribeVpcPeeringAuthorizationsOutput < Struct.new(
|
3360
3453
|
:vpc_peering_authorizations)
|
3454
|
+
SENSITIVE = []
|
3361
3455
|
include Aws::Structure
|
3362
3456
|
end
|
3363
3457
|
|
@@ -3379,6 +3473,7 @@ module Aws::GameLift
|
|
3379
3473
|
#
|
3380
3474
|
class DescribeVpcPeeringConnectionsInput < Struct.new(
|
3381
3475
|
:fleet_id)
|
3476
|
+
SENSITIVE = []
|
3382
3477
|
include Aws::Structure
|
3383
3478
|
end
|
3384
3479
|
|
@@ -3393,6 +3488,7 @@ module Aws::GameLift
|
|
3393
3488
|
#
|
3394
3489
|
class DescribeVpcPeeringConnectionsOutput < Struct.new(
|
3395
3490
|
:vpc_peering_connections)
|
3491
|
+
SENSITIVE = []
|
3396
3492
|
include Aws::Structure
|
3397
3493
|
end
|
3398
3494
|
|
@@ -3423,6 +3519,7 @@ module Aws::GameLift
|
|
3423
3519
|
class DesiredPlayerSession < Struct.new(
|
3424
3520
|
:player_id,
|
3425
3521
|
:player_data)
|
3522
|
+
SENSITIVE = []
|
3426
3523
|
include Aws::Structure
|
3427
3524
|
end
|
3428
3525
|
|
@@ -3485,6 +3582,7 @@ module Aws::GameLift
|
|
3485
3582
|
:active,
|
3486
3583
|
:idle,
|
3487
3584
|
:terminating)
|
3585
|
+
SENSITIVE = []
|
3488
3586
|
include Aws::Structure
|
3489
3587
|
end
|
3490
3588
|
|
@@ -3520,6 +3618,7 @@ module Aws::GameLift
|
|
3520
3618
|
:ec2_instance_type,
|
3521
3619
|
:current_instances,
|
3522
3620
|
:instance_limit)
|
3621
|
+
SENSITIVE = []
|
3523
3622
|
include Aws::Structure
|
3524
3623
|
end
|
3525
3624
|
|
@@ -3677,6 +3776,7 @@ module Aws::GameLift
|
|
3677
3776
|
:message,
|
3678
3777
|
:event_time,
|
3679
3778
|
:pre_signed_log_url)
|
3779
|
+
SENSITIVE = []
|
3680
3780
|
include Aws::Structure
|
3681
3781
|
end
|
3682
3782
|
|
@@ -3905,6 +4005,7 @@ module Aws::GameLift
|
|
3905
4005
|
:stopped_actions,
|
3906
4006
|
:instance_role_arn,
|
3907
4007
|
:certificate_configuration)
|
4008
|
+
SENSITIVE = []
|
3908
4009
|
include Aws::Structure
|
3909
4010
|
end
|
3910
4011
|
|
@@ -3952,6 +4053,7 @@ module Aws::GameLift
|
|
3952
4053
|
:fleet_id,
|
3953
4054
|
:instance_type,
|
3954
4055
|
:instance_counts)
|
4056
|
+
SENSITIVE = []
|
3955
4057
|
include Aws::Structure
|
3956
4058
|
end
|
3957
4059
|
|
@@ -3966,6 +4068,7 @@ module Aws::GameLift
|
|
3966
4068
|
#
|
3967
4069
|
class FleetCapacityExceededException < Struct.new(
|
3968
4070
|
:message)
|
4071
|
+
SENSITIVE = []
|
3969
4072
|
include Aws::Structure
|
3970
4073
|
end
|
3971
4074
|
|
@@ -4016,6 +4119,7 @@ module Aws::GameLift
|
|
4016
4119
|
:active_game_session_count,
|
4017
4120
|
:current_player_session_count,
|
4018
4121
|
:maximum_player_session_count)
|
4122
|
+
SENSITIVE = []
|
4019
4123
|
include Aws::Structure
|
4020
4124
|
end
|
4021
4125
|
|
@@ -4052,6 +4156,7 @@ module Aws::GameLift
|
|
4052
4156
|
class GameProperty < Struct.new(
|
4053
4157
|
:key,
|
4054
4158
|
:value)
|
4159
|
+
SENSITIVE = []
|
4055
4160
|
include Aws::Structure
|
4056
4161
|
end
|
4057
4162
|
|
@@ -4162,6 +4267,7 @@ module Aws::GameLift
|
|
4162
4267
|
:registration_time,
|
4163
4268
|
:last_claim_time,
|
4164
4269
|
:last_health_check_time)
|
4270
|
+
SENSITIVE = []
|
4165
4271
|
include Aws::Structure
|
4166
4272
|
end
|
4167
4273
|
|
@@ -4300,6 +4406,7 @@ module Aws::GameLift
|
|
4300
4406
|
:suspended_actions,
|
4301
4407
|
:creation_time,
|
4302
4408
|
:last_updated_time)
|
4409
|
+
SENSITIVE = []
|
4303
4410
|
include Aws::Structure
|
4304
4411
|
end
|
4305
4412
|
|
@@ -4346,6 +4453,7 @@ module Aws::GameLift
|
|
4346
4453
|
class GameServerGroupAutoScalingPolicy < Struct.new(
|
4347
4454
|
:estimated_instance_warmup,
|
4348
4455
|
:target_tracking_configuration)
|
4456
|
+
SENSITIVE = []
|
4349
4457
|
include Aws::Structure
|
4350
4458
|
end
|
4351
4459
|
|
@@ -4534,6 +4642,7 @@ module Aws::GameLift
|
|
4534
4642
|
:creator_id,
|
4535
4643
|
:game_session_data,
|
4536
4644
|
:matchmaker_data)
|
4645
|
+
SENSITIVE = []
|
4537
4646
|
include Aws::Structure
|
4538
4647
|
end
|
4539
4648
|
|
@@ -4597,6 +4706,7 @@ module Aws::GameLift
|
|
4597
4706
|
:dns_name,
|
4598
4707
|
:port,
|
4599
4708
|
:matched_player_sessions)
|
4709
|
+
SENSITIVE = []
|
4600
4710
|
include Aws::Structure
|
4601
4711
|
end
|
4602
4712
|
|
@@ -4622,6 +4732,7 @@ module Aws::GameLift
|
|
4622
4732
|
class GameSessionDetail < Struct.new(
|
4623
4733
|
:game_session,
|
4624
4734
|
:protection_policy)
|
4735
|
+
SENSITIVE = []
|
4625
4736
|
include Aws::Structure
|
4626
4737
|
end
|
4627
4738
|
|
@@ -4636,6 +4747,7 @@ module Aws::GameLift
|
|
4636
4747
|
#
|
4637
4748
|
class GameSessionFullException < Struct.new(
|
4638
4749
|
:message)
|
4750
|
+
SENSITIVE = []
|
4639
4751
|
include Aws::Structure
|
4640
4752
|
end
|
4641
4753
|
|
@@ -4828,6 +4940,7 @@ module Aws::GameLift
|
|
4828
4940
|
:placed_player_sessions,
|
4829
4941
|
:game_session_data,
|
4830
4942
|
:matchmaker_data)
|
4943
|
+
SENSITIVE = []
|
4831
4944
|
include Aws::Structure
|
4832
4945
|
end
|
4833
4946
|
|
@@ -4909,6 +5022,7 @@ module Aws::GameLift
|
|
4909
5022
|
:timeout_in_seconds,
|
4910
5023
|
:player_latency_policies,
|
4911
5024
|
:destinations)
|
5025
|
+
SENSITIVE = []
|
4912
5026
|
include Aws::Structure
|
4913
5027
|
end
|
4914
5028
|
|
@@ -4941,6 +5055,7 @@ module Aws::GameLift
|
|
4941
5055
|
#
|
4942
5056
|
class GameSessionQueueDestination < Struct.new(
|
4943
5057
|
:destination_arn)
|
5058
|
+
SENSITIVE = []
|
4944
5059
|
include Aws::Structure
|
4945
5060
|
end
|
4946
5061
|
|
@@ -4961,6 +5076,7 @@ module Aws::GameLift
|
|
4961
5076
|
#
|
4962
5077
|
class GetGameSessionLogUrlInput < Struct.new(
|
4963
5078
|
:game_session_id)
|
5079
|
+
SENSITIVE = []
|
4964
5080
|
include Aws::Structure
|
4965
5081
|
end
|
4966
5082
|
|
@@ -4977,6 +5093,7 @@ module Aws::GameLift
|
|
4977
5093
|
#
|
4978
5094
|
class GetGameSessionLogUrlOutput < Struct.new(
|
4979
5095
|
:pre_signed_url)
|
5096
|
+
SENSITIVE = []
|
4980
5097
|
include Aws::Structure
|
4981
5098
|
end
|
4982
5099
|
|
@@ -5008,6 +5125,7 @@ module Aws::GameLift
|
|
5008
5125
|
class GetInstanceAccessInput < Struct.new(
|
5009
5126
|
:fleet_id,
|
5010
5127
|
:instance_id)
|
5128
|
+
SENSITIVE = []
|
5011
5129
|
include Aws::Structure
|
5012
5130
|
end
|
5013
5131
|
|
@@ -5022,6 +5140,7 @@ module Aws::GameLift
|
|
5022
5140
|
#
|
5023
5141
|
class GetInstanceAccessOutput < Struct.new(
|
5024
5142
|
:instance_access)
|
5143
|
+
SENSITIVE = []
|
5025
5144
|
include Aws::Structure
|
5026
5145
|
end
|
5027
5146
|
|
@@ -5035,6 +5154,7 @@ module Aws::GameLift
|
|
5035
5154
|
#
|
5036
5155
|
class IdempotentParameterMismatchException < Struct.new(
|
5037
5156
|
:message)
|
5157
|
+
SENSITIVE = []
|
5038
5158
|
include Aws::Structure
|
5039
5159
|
end
|
5040
5160
|
|
@@ -5117,6 +5237,7 @@ module Aws::GameLift
|
|
5117
5237
|
:type,
|
5118
5238
|
:status,
|
5119
5239
|
:creation_time)
|
5240
|
+
SENSITIVE = []
|
5120
5241
|
include Aws::Structure
|
5121
5242
|
end
|
5122
5243
|
|
@@ -5152,6 +5273,7 @@ module Aws::GameLift
|
|
5152
5273
|
:ip_address,
|
5153
5274
|
:operating_system,
|
5154
5275
|
:credentials)
|
5276
|
+
SENSITIVE = [:credentials]
|
5155
5277
|
include Aws::Structure
|
5156
5278
|
end
|
5157
5279
|
|
@@ -5174,6 +5296,7 @@ module Aws::GameLift
|
|
5174
5296
|
class InstanceCredentials < Struct.new(
|
5175
5297
|
:user_name,
|
5176
5298
|
:secret)
|
5299
|
+
SENSITIVE = []
|
5177
5300
|
include Aws::Structure
|
5178
5301
|
end
|
5179
5302
|
|
@@ -5216,6 +5339,7 @@ module Aws::GameLift
|
|
5216
5339
|
class InstanceDefinition < Struct.new(
|
5217
5340
|
:instance_type,
|
5218
5341
|
:weighted_capacity)
|
5342
|
+
SENSITIVE = []
|
5219
5343
|
include Aws::Structure
|
5220
5344
|
end
|
5221
5345
|
|
@@ -5230,6 +5354,7 @@ module Aws::GameLift
|
|
5230
5354
|
#
|
5231
5355
|
class InternalServiceException < Struct.new(
|
5232
5356
|
:message)
|
5357
|
+
SENSITIVE = []
|
5233
5358
|
include Aws::Structure
|
5234
5359
|
end
|
5235
5360
|
|
@@ -5244,6 +5369,7 @@ module Aws::GameLift
|
|
5244
5369
|
#
|
5245
5370
|
class InvalidFleetStatusException < Struct.new(
|
5246
5371
|
:message)
|
5372
|
+
SENSITIVE = []
|
5247
5373
|
include Aws::Structure
|
5248
5374
|
end
|
5249
5375
|
|
@@ -5258,6 +5384,7 @@ module Aws::GameLift
|
|
5258
5384
|
#
|
5259
5385
|
class InvalidGameSessionStatusException < Struct.new(
|
5260
5386
|
:message)
|
5387
|
+
SENSITIVE = []
|
5261
5388
|
include Aws::Structure
|
5262
5389
|
end
|
5263
5390
|
|
@@ -5271,6 +5398,7 @@ module Aws::GameLift
|
|
5271
5398
|
#
|
5272
5399
|
class InvalidRequestException < Struct.new(
|
5273
5400
|
:message)
|
5401
|
+
SENSITIVE = []
|
5274
5402
|
include Aws::Structure
|
5275
5403
|
end
|
5276
5404
|
|
@@ -5319,6 +5447,7 @@ module Aws::GameLift
|
|
5319
5447
|
:to_port,
|
5320
5448
|
:ip_range,
|
5321
5449
|
:protocol)
|
5450
|
+
SENSITIVE = []
|
5322
5451
|
include Aws::Structure
|
5323
5452
|
end
|
5324
5453
|
|
@@ -5358,6 +5487,7 @@ module Aws::GameLift
|
|
5358
5487
|
:launch_template_id,
|
5359
5488
|
:launch_template_name,
|
5360
5489
|
:version)
|
5490
|
+
SENSITIVE = []
|
5361
5491
|
include Aws::Structure
|
5362
5492
|
end
|
5363
5493
|
|
@@ -5371,6 +5501,7 @@ module Aws::GameLift
|
|
5371
5501
|
#
|
5372
5502
|
class LimitExceededException < Struct.new(
|
5373
5503
|
:message)
|
5504
|
+
SENSITIVE = []
|
5374
5505
|
include Aws::Structure
|
5375
5506
|
end
|
5376
5507
|
|
@@ -5426,6 +5557,7 @@ module Aws::GameLift
|
|
5426
5557
|
:name,
|
5427
5558
|
:limit,
|
5428
5559
|
:next_token)
|
5560
|
+
SENSITIVE = []
|
5429
5561
|
include Aws::Structure
|
5430
5562
|
end
|
5431
5563
|
|
@@ -5446,6 +5578,7 @@ module Aws::GameLift
|
|
5446
5578
|
class ListAliasesOutput < Struct.new(
|
5447
5579
|
:aliases,
|
5448
5580
|
:next_token)
|
5581
|
+
SENSITIVE = []
|
5449
5582
|
include Aws::Structure
|
5450
5583
|
end
|
5451
5584
|
|
@@ -5496,6 +5629,7 @@ module Aws::GameLift
|
|
5496
5629
|
:status,
|
5497
5630
|
:limit,
|
5498
5631
|
:next_token)
|
5632
|
+
SENSITIVE = []
|
5499
5633
|
include Aws::Structure
|
5500
5634
|
end
|
5501
5635
|
|
@@ -5516,6 +5650,7 @@ module Aws::GameLift
|
|
5516
5650
|
class ListBuildsOutput < Struct.new(
|
5517
5651
|
:builds,
|
5518
5652
|
:next_token)
|
5653
|
+
SENSITIVE = []
|
5519
5654
|
include Aws::Structure
|
5520
5655
|
end
|
5521
5656
|
|
@@ -5564,6 +5699,7 @@ module Aws::GameLift
|
|
5564
5699
|
:script_id,
|
5565
5700
|
:limit,
|
5566
5701
|
:next_token)
|
5702
|
+
SENSITIVE = []
|
5567
5703
|
include Aws::Structure
|
5568
5704
|
end
|
5569
5705
|
|
@@ -5587,6 +5723,7 @@ module Aws::GameLift
|
|
5587
5723
|
class ListFleetsOutput < Struct.new(
|
5588
5724
|
:fleet_ids,
|
5589
5725
|
:next_token)
|
5726
|
+
SENSITIVE = []
|
5590
5727
|
include Aws::Structure
|
5591
5728
|
end
|
5592
5729
|
|
@@ -5615,6 +5752,7 @@ module Aws::GameLift
|
|
5615
5752
|
class ListGameServerGroupsInput < Struct.new(
|
5616
5753
|
:limit,
|
5617
5754
|
:next_token)
|
5755
|
+
SENSITIVE = []
|
5618
5756
|
include Aws::Structure
|
5619
5757
|
end
|
5620
5758
|
|
@@ -5633,6 +5771,7 @@ module Aws::GameLift
|
|
5633
5771
|
class ListGameServerGroupsOutput < Struct.new(
|
5634
5772
|
:game_server_groups,
|
5635
5773
|
:next_token)
|
5774
|
+
SENSITIVE = []
|
5636
5775
|
include Aws::Structure
|
5637
5776
|
end
|
5638
5777
|
|
@@ -5676,6 +5815,7 @@ module Aws::GameLift
|
|
5676
5815
|
:sort_order,
|
5677
5816
|
:limit,
|
5678
5817
|
:next_token)
|
5818
|
+
SENSITIVE = []
|
5679
5819
|
include Aws::Structure
|
5680
5820
|
end
|
5681
5821
|
|
@@ -5694,6 +5834,7 @@ module Aws::GameLift
|
|
5694
5834
|
class ListGameServersOutput < Struct.new(
|
5695
5835
|
:game_servers,
|
5696
5836
|
:next_token)
|
5837
|
+
SENSITIVE = []
|
5697
5838
|
include Aws::Structure
|
5698
5839
|
end
|
5699
5840
|
|
@@ -5722,6 +5863,7 @@ module Aws::GameLift
|
|
5722
5863
|
class ListScriptsInput < Struct.new(
|
5723
5864
|
:limit,
|
5724
5865
|
:next_token)
|
5866
|
+
SENSITIVE = []
|
5725
5867
|
include Aws::Structure
|
5726
5868
|
end
|
5727
5869
|
|
@@ -5740,6 +5882,7 @@ module Aws::GameLift
|
|
5740
5882
|
class ListScriptsOutput < Struct.new(
|
5741
5883
|
:scripts,
|
5742
5884
|
:next_token)
|
5885
|
+
SENSITIVE = []
|
5743
5886
|
include Aws::Structure
|
5744
5887
|
end
|
5745
5888
|
|
@@ -5766,6 +5909,7 @@ module Aws::GameLift
|
|
5766
5909
|
#
|
5767
5910
|
class ListTagsForResourceRequest < Struct.new(
|
5768
5911
|
:resource_arn)
|
5912
|
+
SENSITIVE = []
|
5769
5913
|
include Aws::Structure
|
5770
5914
|
end
|
5771
5915
|
|
@@ -5778,6 +5922,7 @@ module Aws::GameLift
|
|
5778
5922
|
#
|
5779
5923
|
class ListTagsForResourceResponse < Struct.new(
|
5780
5924
|
:tags)
|
5925
|
+
SENSITIVE = []
|
5781
5926
|
include Aws::Structure
|
5782
5927
|
end
|
5783
5928
|
|
@@ -5803,6 +5948,7 @@ module Aws::GameLift
|
|
5803
5948
|
class MatchedPlayerSession < Struct.new(
|
5804
5949
|
:player_id,
|
5805
5950
|
:player_session_id)
|
5951
|
+
SENSITIVE = []
|
5806
5952
|
include Aws::Structure
|
5807
5953
|
end
|
5808
5954
|
|
@@ -5959,6 +6105,7 @@ module Aws::GameLift
|
|
5959
6105
|
:game_properties,
|
5960
6106
|
:game_session_data,
|
5961
6107
|
:backfill_mode)
|
6108
|
+
SENSITIVE = []
|
5962
6109
|
include Aws::Structure
|
5963
6110
|
end
|
5964
6111
|
|
@@ -6036,6 +6183,7 @@ module Aws::GameLift
|
|
6036
6183
|
:rule_set_arn,
|
6037
6184
|
:rule_set_body,
|
6038
6185
|
:creation_time)
|
6186
|
+
SENSITIVE = []
|
6039
6187
|
include Aws::Structure
|
6040
6188
|
end
|
6041
6189
|
|
@@ -6158,6 +6306,7 @@ module Aws::GameLift
|
|
6158
6306
|
:players,
|
6159
6307
|
:game_session_connection_info,
|
6160
6308
|
:estimated_wait_time)
|
6309
|
+
SENSITIVE = []
|
6161
6310
|
include Aws::Structure
|
6162
6311
|
end
|
6163
6312
|
|
@@ -6171,6 +6320,7 @@ module Aws::GameLift
|
|
6171
6320
|
#
|
6172
6321
|
class NotFoundException < Struct.new(
|
6173
6322
|
:message)
|
6323
|
+
SENSITIVE = []
|
6174
6324
|
include Aws::Structure
|
6175
6325
|
end
|
6176
6326
|
|
@@ -6185,6 +6335,7 @@ module Aws::GameLift
|
|
6185
6335
|
#
|
6186
6336
|
class OutOfCapacityException < Struct.new(
|
6187
6337
|
:message)
|
6338
|
+
SENSITIVE = []
|
6188
6339
|
include Aws::Structure
|
6189
6340
|
end
|
6190
6341
|
|
@@ -6221,6 +6372,7 @@ module Aws::GameLift
|
|
6221
6372
|
class PlacedPlayerSession < Struct.new(
|
6222
6373
|
:player_id,
|
6223
6374
|
:player_session_id)
|
6375
|
+
SENSITIVE = []
|
6224
6376
|
include Aws::Structure
|
6225
6377
|
end
|
6226
6378
|
|
@@ -6279,6 +6431,7 @@ module Aws::GameLift
|
|
6279
6431
|
:player_attributes,
|
6280
6432
|
:team,
|
6281
6433
|
:latency_in_ms)
|
6434
|
+
SENSITIVE = []
|
6282
6435
|
include Aws::Structure
|
6283
6436
|
end
|
6284
6437
|
|
@@ -6317,6 +6470,7 @@ module Aws::GameLift
|
|
6317
6470
|
:player_id,
|
6318
6471
|
:region_identifier,
|
6319
6472
|
:latency_in_milliseconds)
|
6473
|
+
SENSITIVE = []
|
6320
6474
|
include Aws::Structure
|
6321
6475
|
end
|
6322
6476
|
|
@@ -6359,6 +6513,7 @@ module Aws::GameLift
|
|
6359
6513
|
class PlayerLatencyPolicy < Struct.new(
|
6360
6514
|
:maximum_individual_player_latency_milliseconds,
|
6361
6515
|
:policy_duration_seconds)
|
6516
|
+
SENSITIVE = []
|
6362
6517
|
include Aws::Structure
|
6363
6518
|
end
|
6364
6519
|
|
@@ -6499,6 +6654,7 @@ module Aws::GameLift
|
|
6499
6654
|
:dns_name,
|
6500
6655
|
:port,
|
6501
6656
|
:player_data)
|
6657
|
+
SENSITIVE = []
|
6502
6658
|
include Aws::Structure
|
6503
6659
|
end
|
6504
6660
|
|
@@ -6643,6 +6799,7 @@ module Aws::GameLift
|
|
6643
6799
|
:metric_name,
|
6644
6800
|
:policy_type,
|
6645
6801
|
:target_configuration)
|
6802
|
+
SENSITIVE = []
|
6646
6803
|
include Aws::Structure
|
6647
6804
|
end
|
6648
6805
|
|
@@ -6657,6 +6814,7 @@ module Aws::GameLift
|
|
6657
6814
|
#
|
6658
6815
|
class PutScalingPolicyOutput < Struct.new(
|
6659
6816
|
:name)
|
6817
|
+
SENSITIVE = []
|
6660
6818
|
include Aws::Structure
|
6661
6819
|
end
|
6662
6820
|
|
@@ -6738,6 +6896,7 @@ module Aws::GameLift
|
|
6738
6896
|
:game_server_data,
|
6739
6897
|
:custom_sort_key,
|
6740
6898
|
:tags)
|
6899
|
+
SENSITIVE = []
|
6741
6900
|
include Aws::Structure
|
6742
6901
|
end
|
6743
6902
|
|
@@ -6749,6 +6908,7 @@ module Aws::GameLift
|
|
6749
6908
|
#
|
6750
6909
|
class RegisterGameServerOutput < Struct.new(
|
6751
6910
|
:game_server)
|
6911
|
+
SENSITIVE = []
|
6752
6912
|
include Aws::Structure
|
6753
6913
|
end
|
6754
6914
|
|
@@ -6770,6 +6930,7 @@ module Aws::GameLift
|
|
6770
6930
|
#
|
6771
6931
|
class RequestUploadCredentialsInput < Struct.new(
|
6772
6932
|
:build_id)
|
6933
|
+
SENSITIVE = []
|
6773
6934
|
include Aws::Structure
|
6774
6935
|
end
|
6775
6936
|
|
@@ -6791,6 +6952,7 @@ module Aws::GameLift
|
|
6791
6952
|
class RequestUploadCredentialsOutput < Struct.new(
|
6792
6953
|
:upload_credentials,
|
6793
6954
|
:storage_location)
|
6955
|
+
SENSITIVE = [:upload_credentials]
|
6794
6956
|
include Aws::Structure
|
6795
6957
|
end
|
6796
6958
|
|
@@ -6812,6 +6974,7 @@ module Aws::GameLift
|
|
6812
6974
|
#
|
6813
6975
|
class ResolveAliasInput < Struct.new(
|
6814
6976
|
:alias_id)
|
6977
|
+
SENSITIVE = []
|
6815
6978
|
include Aws::Structure
|
6816
6979
|
end
|
6817
6980
|
|
@@ -6835,6 +6998,7 @@ module Aws::GameLift
|
|
6835
6998
|
class ResolveAliasOutput < Struct.new(
|
6836
6999
|
:fleet_id,
|
6837
7000
|
:fleet_arn)
|
7001
|
+
SENSITIVE = []
|
6838
7002
|
include Aws::Structure
|
6839
7003
|
end
|
6840
7004
|
|
@@ -6874,6 +7038,7 @@ module Aws::GameLift
|
|
6874
7038
|
class ResourceCreationLimitPolicy < Struct.new(
|
6875
7039
|
:new_game_sessions_per_creator,
|
6876
7040
|
:policy_period_in_minutes)
|
7041
|
+
SENSITIVE = []
|
6877
7042
|
include Aws::Structure
|
6878
7043
|
end
|
6879
7044
|
|
@@ -6899,6 +7064,7 @@ module Aws::GameLift
|
|
6899
7064
|
class ResumeGameServerGroupInput < Struct.new(
|
6900
7065
|
:game_server_group_name,
|
6901
7066
|
:resume_actions)
|
7067
|
+
SENSITIVE = []
|
6902
7068
|
include Aws::Structure
|
6903
7069
|
end
|
6904
7070
|
|
@@ -6911,6 +7077,7 @@ module Aws::GameLift
|
|
6911
7077
|
#
|
6912
7078
|
class ResumeGameServerGroupOutput < Struct.new(
|
6913
7079
|
:game_server_group)
|
7080
|
+
SENSITIVE = []
|
6914
7081
|
include Aws::Structure
|
6915
7082
|
end
|
6916
7083
|
|
@@ -6966,6 +7133,7 @@ module Aws::GameLift
|
|
6966
7133
|
:type,
|
6967
7134
|
:fleet_id,
|
6968
7135
|
:message)
|
7136
|
+
SENSITIVE = []
|
6969
7137
|
include Aws::Structure
|
6970
7138
|
end
|
6971
7139
|
|
@@ -7041,6 +7209,7 @@ module Aws::GameLift
|
|
7041
7209
|
:server_processes,
|
7042
7210
|
:max_concurrent_game_session_activations,
|
7043
7211
|
:game_session_activation_timeout_seconds)
|
7212
|
+
SENSITIVE = []
|
7044
7213
|
include Aws::Structure
|
7045
7214
|
end
|
7046
7215
|
|
@@ -7091,6 +7260,7 @@ module Aws::GameLift
|
|
7091
7260
|
:key,
|
7092
7261
|
:role_arn,
|
7093
7262
|
:object_version)
|
7263
|
+
SENSITIVE = []
|
7094
7264
|
include Aws::Structure
|
7095
7265
|
end
|
7096
7266
|
|
@@ -7262,6 +7432,7 @@ module Aws::GameLift
|
|
7262
7432
|
:metric_name,
|
7263
7433
|
:policy_type,
|
7264
7434
|
:target_configuration)
|
7435
|
+
SENSITIVE = []
|
7265
7436
|
include Aws::Structure
|
7266
7437
|
end
|
7267
7438
|
|
@@ -7332,6 +7503,7 @@ module Aws::GameLift
|
|
7332
7503
|
:size_on_disk,
|
7333
7504
|
:creation_time,
|
7334
7505
|
:storage_location)
|
7506
|
+
SENSITIVE = []
|
7335
7507
|
include Aws::Structure
|
7336
7508
|
end
|
7337
7509
|
|
@@ -7450,6 +7622,7 @@ module Aws::GameLift
|
|
7450
7622
|
:sort_expression,
|
7451
7623
|
:limit,
|
7452
7624
|
:next_token)
|
7625
|
+
SENSITIVE = []
|
7453
7626
|
include Aws::Structure
|
7454
7627
|
end
|
7455
7628
|
|
@@ -7471,6 +7644,7 @@ module Aws::GameLift
|
|
7471
7644
|
class SearchGameSessionsOutput < Struct.new(
|
7472
7645
|
:game_sessions,
|
7473
7646
|
:next_token)
|
7647
|
+
SENSITIVE = []
|
7474
7648
|
include Aws::Structure
|
7475
7649
|
end
|
7476
7650
|
|
@@ -7522,6 +7696,7 @@ module Aws::GameLift
|
|
7522
7696
|
:launch_path,
|
7523
7697
|
:parameters,
|
7524
7698
|
:concurrent_executions)
|
7699
|
+
SENSITIVE = []
|
7525
7700
|
include Aws::Structure
|
7526
7701
|
end
|
7527
7702
|
|
@@ -7547,6 +7722,7 @@ module Aws::GameLift
|
|
7547
7722
|
class StartFleetActionsInput < Struct.new(
|
7548
7723
|
:fleet_id,
|
7549
7724
|
:actions)
|
7725
|
+
SENSITIVE = []
|
7550
7726
|
include Aws::Structure
|
7551
7727
|
end
|
7552
7728
|
|
@@ -7652,6 +7828,7 @@ module Aws::GameLift
|
|
7652
7828
|
:player_latencies,
|
7653
7829
|
:desired_player_sessions,
|
7654
7830
|
:game_session_data)
|
7831
|
+
SENSITIVE = []
|
7655
7832
|
include Aws::Structure
|
7656
7833
|
end
|
7657
7834
|
|
@@ -7667,6 +7844,7 @@ module Aws::GameLift
|
|
7667
7844
|
#
|
7668
7845
|
class StartGameSessionPlacementOutput < Struct.new(
|
7669
7846
|
:game_session_placement)
|
7847
|
+
SENSITIVE = []
|
7670
7848
|
include Aws::Structure
|
7671
7849
|
end
|
7672
7850
|
|
@@ -7744,6 +7922,7 @@ module Aws::GameLift
|
|
7744
7922
|
:configuration_name,
|
7745
7923
|
:game_session_arn,
|
7746
7924
|
:players)
|
7925
|
+
SENSITIVE = []
|
7747
7926
|
include Aws::Structure
|
7748
7927
|
end
|
7749
7928
|
|
@@ -7759,6 +7938,7 @@ module Aws::GameLift
|
|
7759
7938
|
#
|
7760
7939
|
class StartMatchBackfillOutput < Struct.new(
|
7761
7940
|
:matchmaking_ticket)
|
7941
|
+
SENSITIVE = []
|
7762
7942
|
include Aws::Structure
|
7763
7943
|
end
|
7764
7944
|
|
@@ -7811,6 +7991,7 @@ module Aws::GameLift
|
|
7811
7991
|
:ticket_id,
|
7812
7992
|
:configuration_name,
|
7813
7993
|
:players)
|
7994
|
+
SENSITIVE = []
|
7814
7995
|
include Aws::Structure
|
7815
7996
|
end
|
7816
7997
|
|
@@ -7826,6 +8007,7 @@ module Aws::GameLift
|
|
7826
8007
|
#
|
7827
8008
|
class StartMatchmakingOutput < Struct.new(
|
7828
8009
|
:matchmaking_ticket)
|
8010
|
+
SENSITIVE = []
|
7829
8011
|
include Aws::Structure
|
7830
8012
|
end
|
7831
8013
|
|
@@ -7851,6 +8033,7 @@ module Aws::GameLift
|
|
7851
8033
|
class StopFleetActionsInput < Struct.new(
|
7852
8034
|
:fleet_id,
|
7853
8035
|
:actions)
|
8036
|
+
SENSITIVE = []
|
7854
8037
|
include Aws::Structure
|
7855
8038
|
end
|
7856
8039
|
|
@@ -7875,6 +8058,7 @@ module Aws::GameLift
|
|
7875
8058
|
#
|
7876
8059
|
class StopGameSessionPlacementInput < Struct.new(
|
7877
8060
|
:placement_id)
|
8061
|
+
SENSITIVE = []
|
7878
8062
|
include Aws::Structure
|
7879
8063
|
end
|
7880
8064
|
|
@@ -7889,6 +8073,7 @@ module Aws::GameLift
|
|
7889
8073
|
#
|
7890
8074
|
class StopGameSessionPlacementOutput < Struct.new(
|
7891
8075
|
:game_session_placement)
|
8076
|
+
SENSITIVE = []
|
7892
8077
|
include Aws::Structure
|
7893
8078
|
end
|
7894
8079
|
|
@@ -7909,6 +8094,7 @@ module Aws::GameLift
|
|
7909
8094
|
#
|
7910
8095
|
class StopMatchmakingInput < Struct.new(
|
7911
8096
|
:ticket_id)
|
8097
|
+
SENSITIVE = []
|
7912
8098
|
include Aws::Structure
|
7913
8099
|
end
|
7914
8100
|
|
@@ -7938,6 +8124,7 @@ module Aws::GameLift
|
|
7938
8124
|
class SuspendGameServerGroupInput < Struct.new(
|
7939
8125
|
:game_server_group_name,
|
7940
8126
|
:suspend_actions)
|
8127
|
+
SENSITIVE = []
|
7941
8128
|
include Aws::Structure
|
7942
8129
|
end
|
7943
8130
|
|
@@ -7951,6 +8138,7 @@ module Aws::GameLift
|
|
7951
8138
|
#
|
7952
8139
|
class SuspendGameServerGroupOutput < Struct.new(
|
7953
8140
|
:game_server_group)
|
8141
|
+
SENSITIVE = []
|
7954
8142
|
include Aws::Structure
|
7955
8143
|
end
|
7956
8144
|
|
@@ -7998,6 +8186,7 @@ module Aws::GameLift
|
|
7998
8186
|
class Tag < Struct.new(
|
7999
8187
|
:key,
|
8000
8188
|
:value)
|
8189
|
+
SENSITIVE = []
|
8001
8190
|
include Aws::Structure
|
8002
8191
|
end
|
8003
8192
|
|
@@ -8042,6 +8231,7 @@ module Aws::GameLift
|
|
8042
8231
|
class TagResourceRequest < Struct.new(
|
8043
8232
|
:resource_arn,
|
8044
8233
|
:tags)
|
8234
|
+
SENSITIVE = []
|
8045
8235
|
include Aws::Structure
|
8046
8236
|
end
|
8047
8237
|
|
@@ -8060,6 +8250,7 @@ module Aws::GameLift
|
|
8060
8250
|
#
|
8061
8251
|
class TaggingFailedException < Struct.new(
|
8062
8252
|
:message)
|
8253
|
+
SENSITIVE = []
|
8063
8254
|
include Aws::Structure
|
8064
8255
|
end
|
8065
8256
|
|
@@ -8110,6 +8301,7 @@ module Aws::GameLift
|
|
8110
8301
|
#
|
8111
8302
|
class TargetConfiguration < Struct.new(
|
8112
8303
|
:target_value)
|
8304
|
+
SENSITIVE = []
|
8113
8305
|
include Aws::Structure
|
8114
8306
|
end
|
8115
8307
|
|
@@ -8139,6 +8331,7 @@ module Aws::GameLift
|
|
8139
8331
|
#
|
8140
8332
|
class TargetTrackingConfiguration < Struct.new(
|
8141
8333
|
:target_value)
|
8334
|
+
SENSITIVE = []
|
8142
8335
|
include Aws::Structure
|
8143
8336
|
end
|
8144
8337
|
|
@@ -8155,6 +8348,7 @@ module Aws::GameLift
|
|
8155
8348
|
#
|
8156
8349
|
class TerminalRoutingStrategyException < Struct.new(
|
8157
8350
|
:message)
|
8351
|
+
SENSITIVE = []
|
8158
8352
|
include Aws::Structure
|
8159
8353
|
end
|
8160
8354
|
|
@@ -8168,6 +8362,7 @@ module Aws::GameLift
|
|
8168
8362
|
#
|
8169
8363
|
class UnauthorizedException < Struct.new(
|
8170
8364
|
:message)
|
8365
|
+
SENSITIVE = []
|
8171
8366
|
include Aws::Structure
|
8172
8367
|
end
|
8173
8368
|
|
@@ -8180,6 +8375,7 @@ module Aws::GameLift
|
|
8180
8375
|
#
|
8181
8376
|
class UnsupportedRegionException < Struct.new(
|
8182
8377
|
:message)
|
8378
|
+
SENSITIVE = []
|
8183
8379
|
include Aws::Structure
|
8184
8380
|
end
|
8185
8381
|
|
@@ -8214,6 +8410,7 @@ module Aws::GameLift
|
|
8214
8410
|
class UntagResourceRequest < Struct.new(
|
8215
8411
|
:resource_arn,
|
8216
8412
|
:tag_keys)
|
8413
|
+
SENSITIVE = []
|
8217
8414
|
include Aws::Structure
|
8218
8415
|
end
|
8219
8416
|
|
@@ -8263,6 +8460,7 @@ module Aws::GameLift
|
|
8263
8460
|
:name,
|
8264
8461
|
:description,
|
8265
8462
|
:routing_strategy)
|
8463
|
+
SENSITIVE = []
|
8266
8464
|
include Aws::Structure
|
8267
8465
|
end
|
8268
8466
|
|
@@ -8276,6 +8474,7 @@ module Aws::GameLift
|
|
8276
8474
|
#
|
8277
8475
|
class UpdateAliasOutput < Struct.new(
|
8278
8476
|
:alias)
|
8477
|
+
SENSITIVE = []
|
8279
8478
|
include Aws::Structure
|
8280
8479
|
end
|
8281
8480
|
|
@@ -8311,6 +8510,7 @@ module Aws::GameLift
|
|
8311
8510
|
:build_id,
|
8312
8511
|
:name,
|
8313
8512
|
:version)
|
8513
|
+
SENSITIVE = []
|
8314
8514
|
include Aws::Structure
|
8315
8515
|
end
|
8316
8516
|
|
@@ -8324,6 +8524,7 @@ module Aws::GameLift
|
|
8324
8524
|
#
|
8325
8525
|
class UpdateBuildOutput < Struct.new(
|
8326
8526
|
:build)
|
8527
|
+
SENSITIVE = []
|
8327
8528
|
include Aws::Structure
|
8328
8529
|
end
|
8329
8530
|
|
@@ -8392,6 +8593,7 @@ module Aws::GameLift
|
|
8392
8593
|
:new_game_session_protection_policy,
|
8393
8594
|
:resource_creation_limit_policy,
|
8394
8595
|
:metric_groups)
|
8596
|
+
SENSITIVE = []
|
8395
8597
|
include Aws::Structure
|
8396
8598
|
end
|
8397
8599
|
|
@@ -8406,6 +8608,7 @@ module Aws::GameLift
|
|
8406
8608
|
#
|
8407
8609
|
class UpdateFleetAttributesOutput < Struct.new(
|
8408
8610
|
:fleet_id)
|
8611
|
+
SENSITIVE = []
|
8409
8612
|
include Aws::Structure
|
8410
8613
|
end
|
8411
8614
|
|
@@ -8447,6 +8650,7 @@ module Aws::GameLift
|
|
8447
8650
|
:desired_instances,
|
8448
8651
|
:min_size,
|
8449
8652
|
:max_size)
|
8653
|
+
SENSITIVE = []
|
8450
8654
|
include Aws::Structure
|
8451
8655
|
end
|
8452
8656
|
|
@@ -8460,6 +8664,7 @@ module Aws::GameLift
|
|
8460
8664
|
#
|
8461
8665
|
class UpdateFleetCapacityOutput < Struct.new(
|
8462
8666
|
:fleet_id)
|
8667
|
+
SENSITIVE = []
|
8463
8668
|
include Aws::Structure
|
8464
8669
|
end
|
8465
8670
|
|
@@ -8507,6 +8712,7 @@ module Aws::GameLift
|
|
8507
8712
|
:fleet_id,
|
8508
8713
|
:inbound_permission_authorizations,
|
8509
8714
|
:inbound_permission_revocations)
|
8715
|
+
SENSITIVE = []
|
8510
8716
|
include Aws::Structure
|
8511
8717
|
end
|
8512
8718
|
|
@@ -8520,6 +8726,7 @@ module Aws::GameLift
|
|
8520
8726
|
#
|
8521
8727
|
class UpdateFleetPortSettingsOutput < Struct.new(
|
8522
8728
|
:fleet_id)
|
8729
|
+
SENSITIVE = []
|
8523
8730
|
include Aws::Structure
|
8524
8731
|
end
|
8525
8732
|
|
@@ -8606,6 +8813,7 @@ module Aws::GameLift
|
|
8606
8813
|
:instance_definitions,
|
8607
8814
|
:game_server_protection_policy,
|
8608
8815
|
:balancing_strategy)
|
8816
|
+
SENSITIVE = []
|
8609
8817
|
include Aws::Structure
|
8610
8818
|
end
|
8611
8819
|
|
@@ -8618,6 +8826,7 @@ module Aws::GameLift
|
|
8618
8826
|
#
|
8619
8827
|
class UpdateGameServerGroupOutput < Struct.new(
|
8620
8828
|
:game_server_group)
|
8829
|
+
SENSITIVE = []
|
8621
8830
|
include Aws::Structure
|
8622
8831
|
end
|
8623
8832
|
|
@@ -8676,6 +8885,7 @@ module Aws::GameLift
|
|
8676
8885
|
:custom_sort_key,
|
8677
8886
|
:utilization_status,
|
8678
8887
|
:health_check)
|
8888
|
+
SENSITIVE = []
|
8679
8889
|
include Aws::Structure
|
8680
8890
|
end
|
8681
8891
|
|
@@ -8687,6 +8897,7 @@ module Aws::GameLift
|
|
8687
8897
|
#
|
8688
8898
|
class UpdateGameServerOutput < Struct.new(
|
8689
8899
|
:game_server)
|
8900
|
+
SENSITIVE = []
|
8690
8901
|
include Aws::Structure
|
8691
8902
|
end
|
8692
8903
|
|
@@ -8740,6 +8951,7 @@ module Aws::GameLift
|
|
8740
8951
|
:name,
|
8741
8952
|
:player_session_creation_policy,
|
8742
8953
|
:protection_policy)
|
8954
|
+
SENSITIVE = []
|
8743
8955
|
include Aws::Structure
|
8744
8956
|
end
|
8745
8957
|
|
@@ -8753,6 +8965,7 @@ module Aws::GameLift
|
|
8753
8965
|
#
|
8754
8966
|
class UpdateGameSessionOutput < Struct.new(
|
8755
8967
|
:game_session)
|
8968
|
+
SENSITIVE = []
|
8756
8969
|
include Aws::Structure
|
8757
8970
|
end
|
8758
8971
|
|
@@ -8818,6 +9031,7 @@ module Aws::GameLift
|
|
8818
9031
|
:timeout_in_seconds,
|
8819
9032
|
:player_latency_policies,
|
8820
9033
|
:destinations)
|
9034
|
+
SENSITIVE = []
|
8821
9035
|
include Aws::Structure
|
8822
9036
|
end
|
8823
9037
|
|
@@ -8831,6 +9045,7 @@ module Aws::GameLift
|
|
8831
9045
|
#
|
8832
9046
|
class UpdateGameSessionQueueOutput < Struct.new(
|
8833
9047
|
:game_session_queue)
|
9048
|
+
SENSITIVE = []
|
8834
9049
|
include Aws::Structure
|
8835
9050
|
end
|
8836
9051
|
|
@@ -8986,6 +9201,7 @@ module Aws::GameLift
|
|
8986
9201
|
:game_properties,
|
8987
9202
|
:game_session_data,
|
8988
9203
|
:backfill_mode)
|
9204
|
+
SENSITIVE = []
|
8989
9205
|
include Aws::Structure
|
8990
9206
|
end
|
8991
9207
|
|
@@ -8999,6 +9215,7 @@ module Aws::GameLift
|
|
8999
9215
|
#
|
9000
9216
|
class UpdateMatchmakingConfigurationOutput < Struct.new(
|
9001
9217
|
:configuration)
|
9218
|
+
SENSITIVE = []
|
9002
9219
|
include Aws::Structure
|
9003
9220
|
end
|
9004
9221
|
|
@@ -9043,6 +9260,7 @@ module Aws::GameLift
|
|
9043
9260
|
class UpdateRuntimeConfigurationInput < Struct.new(
|
9044
9261
|
:fleet_id,
|
9045
9262
|
:runtime_configuration)
|
9263
|
+
SENSITIVE = []
|
9046
9264
|
include Aws::Structure
|
9047
9265
|
end
|
9048
9266
|
|
@@ -9057,6 +9275,7 @@ module Aws::GameLift
|
|
9057
9275
|
#
|
9058
9276
|
class UpdateRuntimeConfigurationOutput < Struct.new(
|
9059
9277
|
:runtime_configuration)
|
9278
|
+
SENSITIVE = []
|
9060
9279
|
include Aws::Structure
|
9061
9280
|
end
|
9062
9281
|
|
@@ -9122,6 +9341,7 @@ module Aws::GameLift
|
|
9122
9341
|
:version,
|
9123
9342
|
:storage_location,
|
9124
9343
|
:zip_file)
|
9344
|
+
SENSITIVE = []
|
9125
9345
|
include Aws::Structure
|
9126
9346
|
end
|
9127
9347
|
|
@@ -9139,6 +9359,7 @@ module Aws::GameLift
|
|
9139
9359
|
#
|
9140
9360
|
class UpdateScriptOutput < Struct.new(
|
9141
9361
|
:script)
|
9362
|
+
SENSITIVE = []
|
9142
9363
|
include Aws::Structure
|
9143
9364
|
end
|
9144
9365
|
|
@@ -9160,6 +9381,7 @@ module Aws::GameLift
|
|
9160
9381
|
#
|
9161
9382
|
class ValidateMatchmakingRuleSetInput < Struct.new(
|
9162
9383
|
:rule_set_body)
|
9384
|
+
SENSITIVE = []
|
9163
9385
|
include Aws::Structure
|
9164
9386
|
end
|
9165
9387
|
|
@@ -9173,6 +9395,7 @@ module Aws::GameLift
|
|
9173
9395
|
#
|
9174
9396
|
class ValidateMatchmakingRuleSetOutput < Struct.new(
|
9175
9397
|
:valid)
|
9398
|
+
SENSITIVE = []
|
9176
9399
|
include Aws::Structure
|
9177
9400
|
end
|
9178
9401
|
|
@@ -9236,6 +9459,7 @@ module Aws::GameLift
|
|
9236
9459
|
:peer_vpc_id,
|
9237
9460
|
:creation_time,
|
9238
9461
|
:expiration_time)
|
9462
|
+
SENSITIVE = []
|
9239
9463
|
include Aws::Structure
|
9240
9464
|
end
|
9241
9465
|
|
@@ -9317,6 +9541,7 @@ module Aws::GameLift
|
|
9317
9541
|
:status,
|
9318
9542
|
:peer_vpc_id,
|
9319
9543
|
:game_lift_vpc_id)
|
9544
|
+
SENSITIVE = []
|
9320
9545
|
include Aws::Structure
|
9321
9546
|
end
|
9322
9547
|
|
@@ -9343,6 +9568,7 @@ module Aws::GameLift
|
|
9343
9568
|
class VpcPeeringConnectionStatus < Struct.new(
|
9344
9569
|
:code,
|
9345
9570
|
:message)
|
9571
|
+
SENSITIVE = []
|
9346
9572
|
include Aws::Structure
|
9347
9573
|
end
|
9348
9574
|
|