@aws-sdk/client-gamelift 3.1018.0 → 3.1020.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/auth/httpAuthSchemeProvider.js +2 -2
- package/dist-cjs/runtimeConfig.js +4 -3
- package/dist-cjs/runtimeConfig.shared.js +2 -2
- package/dist-es/GameLift.js +15 -15
- package/dist-es/auth/httpAuthSchemeProvider.js +1 -1
- package/dist-es/runtimeConfig.js +2 -1
- package/dist-es/runtimeConfig.shared.js +1 -1
- package/dist-types/GameLift.d.ts +119 -119
- package/dist-types/GameLiftClient.d.ts +122 -122
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +1 -1
- package/dist-types/index.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +14 -2
- package/dist-types/models/models_1.d.ts +2 -2
- package/dist-types/pagination/DescribeFleetAttributesPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeFleetCapacityPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeFleetEventsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeFleetLocationAttributesPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeFleetUtilizationPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeGameServerInstancesPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeGameSessionDetailsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeGameSessionQueuesPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeGameSessionsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeInstancesPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeMatchmakingConfigurationsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeMatchmakingRuleSetsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribePlayerSessionsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeScalingPoliciesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListAliasesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListBuildsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListComputePaginator.d.ts +1 -1
- package/dist-types/pagination/ListContainerFleetsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListContainerGroupDefinitionVersionsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListContainerGroupDefinitionsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListFleetDeploymentsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListFleetsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListGameServerGroupsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListGameServersPaginator.d.ts +1 -1
- package/dist-types/pagination/ListLocationsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListScriptsPaginator.d.ts +1 -1
- package/dist-types/pagination/SearchGameSessionsPaginator.d.ts +1 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/GameLiftClient.d.ts +2 -3
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +1 -1
- package/dist-types/ts3.4/models/models_1.d.ts +5 -5
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +13 -13
|
@@ -5,128 +5,128 @@ import { type EndpointInputConfig, type EndpointResolvedConfig } from "@smithy/m
|
|
|
5
5
|
import { type RetryInputConfig, type RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
6
|
import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
7
|
import { type DefaultsMode as __DefaultsMode, type SmithyConfiguration as __SmithyConfiguration, type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client } from "@smithy/smithy-client";
|
|
8
|
-
import {
|
|
8
|
+
import type { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { type HttpAuthSchemeInputConfig, type HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
|
-
import { AcceptMatchCommandInput, AcceptMatchCommandOutput } from "./commands/AcceptMatchCommand";
|
|
11
|
-
import { ClaimGameServerCommandInput, ClaimGameServerCommandOutput } from "./commands/ClaimGameServerCommand";
|
|
12
|
-
import { CreateAliasCommandInput, CreateAliasCommandOutput } from "./commands/CreateAliasCommand";
|
|
13
|
-
import { CreateBuildCommandInput, CreateBuildCommandOutput } from "./commands/CreateBuildCommand";
|
|
14
|
-
import { CreateContainerFleetCommandInput, CreateContainerFleetCommandOutput } from "./commands/CreateContainerFleetCommand";
|
|
15
|
-
import { CreateContainerGroupDefinitionCommandInput, CreateContainerGroupDefinitionCommandOutput } from "./commands/CreateContainerGroupDefinitionCommand";
|
|
16
|
-
import { CreateFleetCommandInput, CreateFleetCommandOutput } from "./commands/CreateFleetCommand";
|
|
17
|
-
import { CreateFleetLocationsCommandInput, CreateFleetLocationsCommandOutput } from "./commands/CreateFleetLocationsCommand";
|
|
18
|
-
import { CreateGameServerGroupCommandInput, CreateGameServerGroupCommandOutput } from "./commands/CreateGameServerGroupCommand";
|
|
19
|
-
import { CreateGameSessionCommandInput, CreateGameSessionCommandOutput } from "./commands/CreateGameSessionCommand";
|
|
20
|
-
import { CreateGameSessionQueueCommandInput, CreateGameSessionQueueCommandOutput } from "./commands/CreateGameSessionQueueCommand";
|
|
21
|
-
import { CreateLocationCommandInput, CreateLocationCommandOutput } from "./commands/CreateLocationCommand";
|
|
22
|
-
import { CreateMatchmakingConfigurationCommandInput, CreateMatchmakingConfigurationCommandOutput } from "./commands/CreateMatchmakingConfigurationCommand";
|
|
23
|
-
import { CreateMatchmakingRuleSetCommandInput, CreateMatchmakingRuleSetCommandOutput } from "./commands/CreateMatchmakingRuleSetCommand";
|
|
24
|
-
import { CreatePlayerSessionCommandInput, CreatePlayerSessionCommandOutput } from "./commands/CreatePlayerSessionCommand";
|
|
25
|
-
import { CreatePlayerSessionsCommandInput, CreatePlayerSessionsCommandOutput } from "./commands/CreatePlayerSessionsCommand";
|
|
26
|
-
import { CreateScriptCommandInput, CreateScriptCommandOutput } from "./commands/CreateScriptCommand";
|
|
27
|
-
import { CreateVpcPeeringAuthorizationCommandInput, CreateVpcPeeringAuthorizationCommandOutput } from "./commands/CreateVpcPeeringAuthorizationCommand";
|
|
28
|
-
import { CreateVpcPeeringConnectionCommandInput, CreateVpcPeeringConnectionCommandOutput } from "./commands/CreateVpcPeeringConnectionCommand";
|
|
29
|
-
import { DeleteAliasCommandInput, DeleteAliasCommandOutput } from "./commands/DeleteAliasCommand";
|
|
30
|
-
import { DeleteBuildCommandInput, DeleteBuildCommandOutput } from "./commands/DeleteBuildCommand";
|
|
31
|
-
import { DeleteContainerFleetCommandInput, DeleteContainerFleetCommandOutput } from "./commands/DeleteContainerFleetCommand";
|
|
32
|
-
import { DeleteContainerGroupDefinitionCommandInput, DeleteContainerGroupDefinitionCommandOutput } from "./commands/DeleteContainerGroupDefinitionCommand";
|
|
33
|
-
import { DeleteFleetCommandInput, DeleteFleetCommandOutput } from "./commands/DeleteFleetCommand";
|
|
34
|
-
import { DeleteFleetLocationsCommandInput, DeleteFleetLocationsCommandOutput } from "./commands/DeleteFleetLocationsCommand";
|
|
35
|
-
import { DeleteGameServerGroupCommandInput, DeleteGameServerGroupCommandOutput } from "./commands/DeleteGameServerGroupCommand";
|
|
36
|
-
import { DeleteGameSessionQueueCommandInput, DeleteGameSessionQueueCommandOutput } from "./commands/DeleteGameSessionQueueCommand";
|
|
37
|
-
import { DeleteLocationCommandInput, DeleteLocationCommandOutput } from "./commands/DeleteLocationCommand";
|
|
38
|
-
import { DeleteMatchmakingConfigurationCommandInput, DeleteMatchmakingConfigurationCommandOutput } from "./commands/DeleteMatchmakingConfigurationCommand";
|
|
39
|
-
import { DeleteMatchmakingRuleSetCommandInput, DeleteMatchmakingRuleSetCommandOutput } from "./commands/DeleteMatchmakingRuleSetCommand";
|
|
40
|
-
import { DeleteScalingPolicyCommandInput, DeleteScalingPolicyCommandOutput } from "./commands/DeleteScalingPolicyCommand";
|
|
41
|
-
import { DeleteScriptCommandInput, DeleteScriptCommandOutput } from "./commands/DeleteScriptCommand";
|
|
42
|
-
import { DeleteVpcPeeringAuthorizationCommandInput, DeleteVpcPeeringAuthorizationCommandOutput } from "./commands/DeleteVpcPeeringAuthorizationCommand";
|
|
43
|
-
import { DeleteVpcPeeringConnectionCommandInput, DeleteVpcPeeringConnectionCommandOutput } from "./commands/DeleteVpcPeeringConnectionCommand";
|
|
44
|
-
import { DeregisterComputeCommandInput, DeregisterComputeCommandOutput } from "./commands/DeregisterComputeCommand";
|
|
45
|
-
import { DeregisterGameServerCommandInput, DeregisterGameServerCommandOutput } from "./commands/DeregisterGameServerCommand";
|
|
46
|
-
import { DescribeAliasCommandInput, DescribeAliasCommandOutput } from "./commands/DescribeAliasCommand";
|
|
47
|
-
import { DescribeBuildCommandInput, DescribeBuildCommandOutput } from "./commands/DescribeBuildCommand";
|
|
48
|
-
import { DescribeComputeCommandInput, DescribeComputeCommandOutput } from "./commands/DescribeComputeCommand";
|
|
49
|
-
import { DescribeContainerFleetCommandInput, DescribeContainerFleetCommandOutput } from "./commands/DescribeContainerFleetCommand";
|
|
50
|
-
import { DescribeContainerGroupDefinitionCommandInput, DescribeContainerGroupDefinitionCommandOutput } from "./commands/DescribeContainerGroupDefinitionCommand";
|
|
51
|
-
import { DescribeEC2InstanceLimitsCommandInput, DescribeEC2InstanceLimitsCommandOutput } from "./commands/DescribeEC2InstanceLimitsCommand";
|
|
52
|
-
import { DescribeFleetAttributesCommandInput, DescribeFleetAttributesCommandOutput } from "./commands/DescribeFleetAttributesCommand";
|
|
53
|
-
import { DescribeFleetCapacityCommandInput, DescribeFleetCapacityCommandOutput } from "./commands/DescribeFleetCapacityCommand";
|
|
54
|
-
import { DescribeFleetDeploymentCommandInput, DescribeFleetDeploymentCommandOutput } from "./commands/DescribeFleetDeploymentCommand";
|
|
55
|
-
import { DescribeFleetEventsCommandInput, DescribeFleetEventsCommandOutput } from "./commands/DescribeFleetEventsCommand";
|
|
56
|
-
import { DescribeFleetLocationAttributesCommandInput, DescribeFleetLocationAttributesCommandOutput } from "./commands/DescribeFleetLocationAttributesCommand";
|
|
57
|
-
import { DescribeFleetLocationCapacityCommandInput, DescribeFleetLocationCapacityCommandOutput } from "./commands/DescribeFleetLocationCapacityCommand";
|
|
58
|
-
import { DescribeFleetLocationUtilizationCommandInput, DescribeFleetLocationUtilizationCommandOutput } from "./commands/DescribeFleetLocationUtilizationCommand";
|
|
59
|
-
import { DescribeFleetPortSettingsCommandInput, DescribeFleetPortSettingsCommandOutput } from "./commands/DescribeFleetPortSettingsCommand";
|
|
60
|
-
import { DescribeFleetUtilizationCommandInput, DescribeFleetUtilizationCommandOutput } from "./commands/DescribeFleetUtilizationCommand";
|
|
61
|
-
import { DescribeGameServerCommandInput, DescribeGameServerCommandOutput } from "./commands/DescribeGameServerCommand";
|
|
62
|
-
import { DescribeGameServerGroupCommandInput, DescribeGameServerGroupCommandOutput } from "./commands/DescribeGameServerGroupCommand";
|
|
63
|
-
import { DescribeGameServerInstancesCommandInput, DescribeGameServerInstancesCommandOutput } from "./commands/DescribeGameServerInstancesCommand";
|
|
64
|
-
import { DescribeGameSessionDetailsCommandInput, DescribeGameSessionDetailsCommandOutput } from "./commands/DescribeGameSessionDetailsCommand";
|
|
65
|
-
import { DescribeGameSessionPlacementCommandInput, DescribeGameSessionPlacementCommandOutput } from "./commands/DescribeGameSessionPlacementCommand";
|
|
66
|
-
import { DescribeGameSessionQueuesCommandInput, DescribeGameSessionQueuesCommandOutput } from "./commands/DescribeGameSessionQueuesCommand";
|
|
67
|
-
import { DescribeGameSessionsCommandInput, DescribeGameSessionsCommandOutput } from "./commands/DescribeGameSessionsCommand";
|
|
68
|
-
import { DescribeInstancesCommandInput, DescribeInstancesCommandOutput } from "./commands/DescribeInstancesCommand";
|
|
69
|
-
import { DescribeMatchmakingCommandInput, DescribeMatchmakingCommandOutput } from "./commands/DescribeMatchmakingCommand";
|
|
70
|
-
import { DescribeMatchmakingConfigurationsCommandInput, DescribeMatchmakingConfigurationsCommandOutput } from "./commands/DescribeMatchmakingConfigurationsCommand";
|
|
71
|
-
import { DescribeMatchmakingRuleSetsCommandInput, DescribeMatchmakingRuleSetsCommandOutput } from "./commands/DescribeMatchmakingRuleSetsCommand";
|
|
72
|
-
import { DescribePlayerSessionsCommandInput, DescribePlayerSessionsCommandOutput } from "./commands/DescribePlayerSessionsCommand";
|
|
73
|
-
import { DescribeRuntimeConfigurationCommandInput, DescribeRuntimeConfigurationCommandOutput } from "./commands/DescribeRuntimeConfigurationCommand";
|
|
74
|
-
import { DescribeScalingPoliciesCommandInput, DescribeScalingPoliciesCommandOutput } from "./commands/DescribeScalingPoliciesCommand";
|
|
75
|
-
import { DescribeScriptCommandInput, DescribeScriptCommandOutput } from "./commands/DescribeScriptCommand";
|
|
76
|
-
import { DescribeVpcPeeringAuthorizationsCommandInput, DescribeVpcPeeringAuthorizationsCommandOutput } from "./commands/DescribeVpcPeeringAuthorizationsCommand";
|
|
77
|
-
import { DescribeVpcPeeringConnectionsCommandInput, DescribeVpcPeeringConnectionsCommandOutput } from "./commands/DescribeVpcPeeringConnectionsCommand";
|
|
78
|
-
import { GetComputeAccessCommandInput, GetComputeAccessCommandOutput } from "./commands/GetComputeAccessCommand";
|
|
79
|
-
import { GetComputeAuthTokenCommandInput, GetComputeAuthTokenCommandOutput } from "./commands/GetComputeAuthTokenCommand";
|
|
80
|
-
import { GetGameSessionLogUrlCommandInput, GetGameSessionLogUrlCommandOutput } from "./commands/GetGameSessionLogUrlCommand";
|
|
81
|
-
import { GetInstanceAccessCommandInput, GetInstanceAccessCommandOutput } from "./commands/GetInstanceAccessCommand";
|
|
82
|
-
import { GetPlayerConnectionDetailsCommandInput, GetPlayerConnectionDetailsCommandOutput } from "./commands/GetPlayerConnectionDetailsCommand";
|
|
83
|
-
import { ListAliasesCommandInput, ListAliasesCommandOutput } from "./commands/ListAliasesCommand";
|
|
84
|
-
import { ListBuildsCommandInput, ListBuildsCommandOutput } from "./commands/ListBuildsCommand";
|
|
85
|
-
import { ListComputeCommandInput, ListComputeCommandOutput } from "./commands/ListComputeCommand";
|
|
86
|
-
import { ListContainerFleetsCommandInput, ListContainerFleetsCommandOutput } from "./commands/ListContainerFleetsCommand";
|
|
87
|
-
import { ListContainerGroupDefinitionsCommandInput, ListContainerGroupDefinitionsCommandOutput } from "./commands/ListContainerGroupDefinitionsCommand";
|
|
88
|
-
import { ListContainerGroupDefinitionVersionsCommandInput, ListContainerGroupDefinitionVersionsCommandOutput } from "./commands/ListContainerGroupDefinitionVersionsCommand";
|
|
89
|
-
import { ListFleetDeploymentsCommandInput, ListFleetDeploymentsCommandOutput } from "./commands/ListFleetDeploymentsCommand";
|
|
90
|
-
import { ListFleetsCommandInput, ListFleetsCommandOutput } from "./commands/ListFleetsCommand";
|
|
91
|
-
import { ListGameServerGroupsCommandInput, ListGameServerGroupsCommandOutput } from "./commands/ListGameServerGroupsCommand";
|
|
92
|
-
import { ListGameServersCommandInput, ListGameServersCommandOutput } from "./commands/ListGameServersCommand";
|
|
93
|
-
import { ListLocationsCommandInput, ListLocationsCommandOutput } from "./commands/ListLocationsCommand";
|
|
94
|
-
import { ListScriptsCommandInput, ListScriptsCommandOutput } from "./commands/ListScriptsCommand";
|
|
95
|
-
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
96
|
-
import { PutScalingPolicyCommandInput, PutScalingPolicyCommandOutput } from "./commands/PutScalingPolicyCommand";
|
|
97
|
-
import { RegisterComputeCommandInput, RegisterComputeCommandOutput } from "./commands/RegisterComputeCommand";
|
|
98
|
-
import { RegisterGameServerCommandInput, RegisterGameServerCommandOutput } from "./commands/RegisterGameServerCommand";
|
|
99
|
-
import { RequestUploadCredentialsCommandInput, RequestUploadCredentialsCommandOutput } from "./commands/RequestUploadCredentialsCommand";
|
|
100
|
-
import { ResolveAliasCommandInput, ResolveAliasCommandOutput } from "./commands/ResolveAliasCommand";
|
|
101
|
-
import { ResumeGameServerGroupCommandInput, ResumeGameServerGroupCommandOutput } from "./commands/ResumeGameServerGroupCommand";
|
|
102
|
-
import { SearchGameSessionsCommandInput, SearchGameSessionsCommandOutput } from "./commands/SearchGameSessionsCommand";
|
|
103
|
-
import { StartFleetActionsCommandInput, StartFleetActionsCommandOutput } from "./commands/StartFleetActionsCommand";
|
|
104
|
-
import { StartGameSessionPlacementCommandInput, StartGameSessionPlacementCommandOutput } from "./commands/StartGameSessionPlacementCommand";
|
|
105
|
-
import { StartMatchBackfillCommandInput, StartMatchBackfillCommandOutput } from "./commands/StartMatchBackfillCommand";
|
|
106
|
-
import { StartMatchmakingCommandInput, StartMatchmakingCommandOutput } from "./commands/StartMatchmakingCommand";
|
|
107
|
-
import { StopFleetActionsCommandInput, StopFleetActionsCommandOutput } from "./commands/StopFleetActionsCommand";
|
|
108
|
-
import { StopGameSessionPlacementCommandInput, StopGameSessionPlacementCommandOutput } from "./commands/StopGameSessionPlacementCommand";
|
|
109
|
-
import { StopMatchmakingCommandInput, StopMatchmakingCommandOutput } from "./commands/StopMatchmakingCommand";
|
|
110
|
-
import { SuspendGameServerGroupCommandInput, SuspendGameServerGroupCommandOutput } from "./commands/SuspendGameServerGroupCommand";
|
|
111
|
-
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
112
|
-
import { TerminateGameSessionCommandInput, TerminateGameSessionCommandOutput } from "./commands/TerminateGameSessionCommand";
|
|
113
|
-
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
114
|
-
import { UpdateAliasCommandInput, UpdateAliasCommandOutput } from "./commands/UpdateAliasCommand";
|
|
115
|
-
import { UpdateBuildCommandInput, UpdateBuildCommandOutput } from "./commands/UpdateBuildCommand";
|
|
116
|
-
import { UpdateContainerFleetCommandInput, UpdateContainerFleetCommandOutput } from "./commands/UpdateContainerFleetCommand";
|
|
117
|
-
import { UpdateContainerGroupDefinitionCommandInput, UpdateContainerGroupDefinitionCommandOutput } from "./commands/UpdateContainerGroupDefinitionCommand";
|
|
118
|
-
import { UpdateFleetAttributesCommandInput, UpdateFleetAttributesCommandOutput } from "./commands/UpdateFleetAttributesCommand";
|
|
119
|
-
import { UpdateFleetCapacityCommandInput, UpdateFleetCapacityCommandOutput } from "./commands/UpdateFleetCapacityCommand";
|
|
120
|
-
import { UpdateFleetPortSettingsCommandInput, UpdateFleetPortSettingsCommandOutput } from "./commands/UpdateFleetPortSettingsCommand";
|
|
121
|
-
import { UpdateGameServerCommandInput, UpdateGameServerCommandOutput } from "./commands/UpdateGameServerCommand";
|
|
122
|
-
import { UpdateGameServerGroupCommandInput, UpdateGameServerGroupCommandOutput } from "./commands/UpdateGameServerGroupCommand";
|
|
123
|
-
import { UpdateGameSessionCommandInput, UpdateGameSessionCommandOutput } from "./commands/UpdateGameSessionCommand";
|
|
124
|
-
import { UpdateGameSessionQueueCommandInput, UpdateGameSessionQueueCommandOutput } from "./commands/UpdateGameSessionQueueCommand";
|
|
125
|
-
import { UpdateMatchmakingConfigurationCommandInput, UpdateMatchmakingConfigurationCommandOutput } from "./commands/UpdateMatchmakingConfigurationCommand";
|
|
126
|
-
import { UpdateRuntimeConfigurationCommandInput, UpdateRuntimeConfigurationCommandOutput } from "./commands/UpdateRuntimeConfigurationCommand";
|
|
127
|
-
import { UpdateScriptCommandInput, UpdateScriptCommandOutput } from "./commands/UpdateScriptCommand";
|
|
128
|
-
import { ValidateMatchmakingRuleSetCommandInput, ValidateMatchmakingRuleSetCommandOutput } from "./commands/ValidateMatchmakingRuleSetCommand";
|
|
129
|
-
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
10
|
+
import type { AcceptMatchCommandInput, AcceptMatchCommandOutput } from "./commands/AcceptMatchCommand";
|
|
11
|
+
import type { ClaimGameServerCommandInput, ClaimGameServerCommandOutput } from "./commands/ClaimGameServerCommand";
|
|
12
|
+
import type { CreateAliasCommandInput, CreateAliasCommandOutput } from "./commands/CreateAliasCommand";
|
|
13
|
+
import type { CreateBuildCommandInput, CreateBuildCommandOutput } from "./commands/CreateBuildCommand";
|
|
14
|
+
import type { CreateContainerFleetCommandInput, CreateContainerFleetCommandOutput } from "./commands/CreateContainerFleetCommand";
|
|
15
|
+
import type { CreateContainerGroupDefinitionCommandInput, CreateContainerGroupDefinitionCommandOutput } from "./commands/CreateContainerGroupDefinitionCommand";
|
|
16
|
+
import type { CreateFleetCommandInput, CreateFleetCommandOutput } from "./commands/CreateFleetCommand";
|
|
17
|
+
import type { CreateFleetLocationsCommandInput, CreateFleetLocationsCommandOutput } from "./commands/CreateFleetLocationsCommand";
|
|
18
|
+
import type { CreateGameServerGroupCommandInput, CreateGameServerGroupCommandOutput } from "./commands/CreateGameServerGroupCommand";
|
|
19
|
+
import type { CreateGameSessionCommandInput, CreateGameSessionCommandOutput } from "./commands/CreateGameSessionCommand";
|
|
20
|
+
import type { CreateGameSessionQueueCommandInput, CreateGameSessionQueueCommandOutput } from "./commands/CreateGameSessionQueueCommand";
|
|
21
|
+
import type { CreateLocationCommandInput, CreateLocationCommandOutput } from "./commands/CreateLocationCommand";
|
|
22
|
+
import type { CreateMatchmakingConfigurationCommandInput, CreateMatchmakingConfigurationCommandOutput } from "./commands/CreateMatchmakingConfigurationCommand";
|
|
23
|
+
import type { CreateMatchmakingRuleSetCommandInput, CreateMatchmakingRuleSetCommandOutput } from "./commands/CreateMatchmakingRuleSetCommand";
|
|
24
|
+
import type { CreatePlayerSessionCommandInput, CreatePlayerSessionCommandOutput } from "./commands/CreatePlayerSessionCommand";
|
|
25
|
+
import type { CreatePlayerSessionsCommandInput, CreatePlayerSessionsCommandOutput } from "./commands/CreatePlayerSessionsCommand";
|
|
26
|
+
import type { CreateScriptCommandInput, CreateScriptCommandOutput } from "./commands/CreateScriptCommand";
|
|
27
|
+
import type { CreateVpcPeeringAuthorizationCommandInput, CreateVpcPeeringAuthorizationCommandOutput } from "./commands/CreateVpcPeeringAuthorizationCommand";
|
|
28
|
+
import type { CreateVpcPeeringConnectionCommandInput, CreateVpcPeeringConnectionCommandOutput } from "./commands/CreateVpcPeeringConnectionCommand";
|
|
29
|
+
import type { DeleteAliasCommandInput, DeleteAliasCommandOutput } from "./commands/DeleteAliasCommand";
|
|
30
|
+
import type { DeleteBuildCommandInput, DeleteBuildCommandOutput } from "./commands/DeleteBuildCommand";
|
|
31
|
+
import type { DeleteContainerFleetCommandInput, DeleteContainerFleetCommandOutput } from "./commands/DeleteContainerFleetCommand";
|
|
32
|
+
import type { DeleteContainerGroupDefinitionCommandInput, DeleteContainerGroupDefinitionCommandOutput } from "./commands/DeleteContainerGroupDefinitionCommand";
|
|
33
|
+
import type { DeleteFleetCommandInput, DeleteFleetCommandOutput } from "./commands/DeleteFleetCommand";
|
|
34
|
+
import type { DeleteFleetLocationsCommandInput, DeleteFleetLocationsCommandOutput } from "./commands/DeleteFleetLocationsCommand";
|
|
35
|
+
import type { DeleteGameServerGroupCommandInput, DeleteGameServerGroupCommandOutput } from "./commands/DeleteGameServerGroupCommand";
|
|
36
|
+
import type { DeleteGameSessionQueueCommandInput, DeleteGameSessionQueueCommandOutput } from "./commands/DeleteGameSessionQueueCommand";
|
|
37
|
+
import type { DeleteLocationCommandInput, DeleteLocationCommandOutput } from "./commands/DeleteLocationCommand";
|
|
38
|
+
import type { DeleteMatchmakingConfigurationCommandInput, DeleteMatchmakingConfigurationCommandOutput } from "./commands/DeleteMatchmakingConfigurationCommand";
|
|
39
|
+
import type { DeleteMatchmakingRuleSetCommandInput, DeleteMatchmakingRuleSetCommandOutput } from "./commands/DeleteMatchmakingRuleSetCommand";
|
|
40
|
+
import type { DeleteScalingPolicyCommandInput, DeleteScalingPolicyCommandOutput } from "./commands/DeleteScalingPolicyCommand";
|
|
41
|
+
import type { DeleteScriptCommandInput, DeleteScriptCommandOutput } from "./commands/DeleteScriptCommand";
|
|
42
|
+
import type { DeleteVpcPeeringAuthorizationCommandInput, DeleteVpcPeeringAuthorizationCommandOutput } from "./commands/DeleteVpcPeeringAuthorizationCommand";
|
|
43
|
+
import type { DeleteVpcPeeringConnectionCommandInput, DeleteVpcPeeringConnectionCommandOutput } from "./commands/DeleteVpcPeeringConnectionCommand";
|
|
44
|
+
import type { DeregisterComputeCommandInput, DeregisterComputeCommandOutput } from "./commands/DeregisterComputeCommand";
|
|
45
|
+
import type { DeregisterGameServerCommandInput, DeregisterGameServerCommandOutput } from "./commands/DeregisterGameServerCommand";
|
|
46
|
+
import type { DescribeAliasCommandInput, DescribeAliasCommandOutput } from "./commands/DescribeAliasCommand";
|
|
47
|
+
import type { DescribeBuildCommandInput, DescribeBuildCommandOutput } from "./commands/DescribeBuildCommand";
|
|
48
|
+
import type { DescribeComputeCommandInput, DescribeComputeCommandOutput } from "./commands/DescribeComputeCommand";
|
|
49
|
+
import type { DescribeContainerFleetCommandInput, DescribeContainerFleetCommandOutput } from "./commands/DescribeContainerFleetCommand";
|
|
50
|
+
import type { DescribeContainerGroupDefinitionCommandInput, DescribeContainerGroupDefinitionCommandOutput } from "./commands/DescribeContainerGroupDefinitionCommand";
|
|
51
|
+
import type { DescribeEC2InstanceLimitsCommandInput, DescribeEC2InstanceLimitsCommandOutput } from "./commands/DescribeEC2InstanceLimitsCommand";
|
|
52
|
+
import type { DescribeFleetAttributesCommandInput, DescribeFleetAttributesCommandOutput } from "./commands/DescribeFleetAttributesCommand";
|
|
53
|
+
import type { DescribeFleetCapacityCommandInput, DescribeFleetCapacityCommandOutput } from "./commands/DescribeFleetCapacityCommand";
|
|
54
|
+
import type { DescribeFleetDeploymentCommandInput, DescribeFleetDeploymentCommandOutput } from "./commands/DescribeFleetDeploymentCommand";
|
|
55
|
+
import type { DescribeFleetEventsCommandInput, DescribeFleetEventsCommandOutput } from "./commands/DescribeFleetEventsCommand";
|
|
56
|
+
import type { DescribeFleetLocationAttributesCommandInput, DescribeFleetLocationAttributesCommandOutput } from "./commands/DescribeFleetLocationAttributesCommand";
|
|
57
|
+
import type { DescribeFleetLocationCapacityCommandInput, DescribeFleetLocationCapacityCommandOutput } from "./commands/DescribeFleetLocationCapacityCommand";
|
|
58
|
+
import type { DescribeFleetLocationUtilizationCommandInput, DescribeFleetLocationUtilizationCommandOutput } from "./commands/DescribeFleetLocationUtilizationCommand";
|
|
59
|
+
import type { DescribeFleetPortSettingsCommandInput, DescribeFleetPortSettingsCommandOutput } from "./commands/DescribeFleetPortSettingsCommand";
|
|
60
|
+
import type { DescribeFleetUtilizationCommandInput, DescribeFleetUtilizationCommandOutput } from "./commands/DescribeFleetUtilizationCommand";
|
|
61
|
+
import type { DescribeGameServerCommandInput, DescribeGameServerCommandOutput } from "./commands/DescribeGameServerCommand";
|
|
62
|
+
import type { DescribeGameServerGroupCommandInput, DescribeGameServerGroupCommandOutput } from "./commands/DescribeGameServerGroupCommand";
|
|
63
|
+
import type { DescribeGameServerInstancesCommandInput, DescribeGameServerInstancesCommandOutput } from "./commands/DescribeGameServerInstancesCommand";
|
|
64
|
+
import type { DescribeGameSessionDetailsCommandInput, DescribeGameSessionDetailsCommandOutput } from "./commands/DescribeGameSessionDetailsCommand";
|
|
65
|
+
import type { DescribeGameSessionPlacementCommandInput, DescribeGameSessionPlacementCommandOutput } from "./commands/DescribeGameSessionPlacementCommand";
|
|
66
|
+
import type { DescribeGameSessionQueuesCommandInput, DescribeGameSessionQueuesCommandOutput } from "./commands/DescribeGameSessionQueuesCommand";
|
|
67
|
+
import type { DescribeGameSessionsCommandInput, DescribeGameSessionsCommandOutput } from "./commands/DescribeGameSessionsCommand";
|
|
68
|
+
import type { DescribeInstancesCommandInput, DescribeInstancesCommandOutput } from "./commands/DescribeInstancesCommand";
|
|
69
|
+
import type { DescribeMatchmakingCommandInput, DescribeMatchmakingCommandOutput } from "./commands/DescribeMatchmakingCommand";
|
|
70
|
+
import type { DescribeMatchmakingConfigurationsCommandInput, DescribeMatchmakingConfigurationsCommandOutput } from "./commands/DescribeMatchmakingConfigurationsCommand";
|
|
71
|
+
import type { DescribeMatchmakingRuleSetsCommandInput, DescribeMatchmakingRuleSetsCommandOutput } from "./commands/DescribeMatchmakingRuleSetsCommand";
|
|
72
|
+
import type { DescribePlayerSessionsCommandInput, DescribePlayerSessionsCommandOutput } from "./commands/DescribePlayerSessionsCommand";
|
|
73
|
+
import type { DescribeRuntimeConfigurationCommandInput, DescribeRuntimeConfigurationCommandOutput } from "./commands/DescribeRuntimeConfigurationCommand";
|
|
74
|
+
import type { DescribeScalingPoliciesCommandInput, DescribeScalingPoliciesCommandOutput } from "./commands/DescribeScalingPoliciesCommand";
|
|
75
|
+
import type { DescribeScriptCommandInput, DescribeScriptCommandOutput } from "./commands/DescribeScriptCommand";
|
|
76
|
+
import type { DescribeVpcPeeringAuthorizationsCommandInput, DescribeVpcPeeringAuthorizationsCommandOutput } from "./commands/DescribeVpcPeeringAuthorizationsCommand";
|
|
77
|
+
import type { DescribeVpcPeeringConnectionsCommandInput, DescribeVpcPeeringConnectionsCommandOutput } from "./commands/DescribeVpcPeeringConnectionsCommand";
|
|
78
|
+
import type { GetComputeAccessCommandInput, GetComputeAccessCommandOutput } from "./commands/GetComputeAccessCommand";
|
|
79
|
+
import type { GetComputeAuthTokenCommandInput, GetComputeAuthTokenCommandOutput } from "./commands/GetComputeAuthTokenCommand";
|
|
80
|
+
import type { GetGameSessionLogUrlCommandInput, GetGameSessionLogUrlCommandOutput } from "./commands/GetGameSessionLogUrlCommand";
|
|
81
|
+
import type { GetInstanceAccessCommandInput, GetInstanceAccessCommandOutput } from "./commands/GetInstanceAccessCommand";
|
|
82
|
+
import type { GetPlayerConnectionDetailsCommandInput, GetPlayerConnectionDetailsCommandOutput } from "./commands/GetPlayerConnectionDetailsCommand";
|
|
83
|
+
import type { ListAliasesCommandInput, ListAliasesCommandOutput } from "./commands/ListAliasesCommand";
|
|
84
|
+
import type { ListBuildsCommandInput, ListBuildsCommandOutput } from "./commands/ListBuildsCommand";
|
|
85
|
+
import type { ListComputeCommandInput, ListComputeCommandOutput } from "./commands/ListComputeCommand";
|
|
86
|
+
import type { ListContainerFleetsCommandInput, ListContainerFleetsCommandOutput } from "./commands/ListContainerFleetsCommand";
|
|
87
|
+
import type { ListContainerGroupDefinitionsCommandInput, ListContainerGroupDefinitionsCommandOutput } from "./commands/ListContainerGroupDefinitionsCommand";
|
|
88
|
+
import type { ListContainerGroupDefinitionVersionsCommandInput, ListContainerGroupDefinitionVersionsCommandOutput } from "./commands/ListContainerGroupDefinitionVersionsCommand";
|
|
89
|
+
import type { ListFleetDeploymentsCommandInput, ListFleetDeploymentsCommandOutput } from "./commands/ListFleetDeploymentsCommand";
|
|
90
|
+
import type { ListFleetsCommandInput, ListFleetsCommandOutput } from "./commands/ListFleetsCommand";
|
|
91
|
+
import type { ListGameServerGroupsCommandInput, ListGameServerGroupsCommandOutput } from "./commands/ListGameServerGroupsCommand";
|
|
92
|
+
import type { ListGameServersCommandInput, ListGameServersCommandOutput } from "./commands/ListGameServersCommand";
|
|
93
|
+
import type { ListLocationsCommandInput, ListLocationsCommandOutput } from "./commands/ListLocationsCommand";
|
|
94
|
+
import type { ListScriptsCommandInput, ListScriptsCommandOutput } from "./commands/ListScriptsCommand";
|
|
95
|
+
import type { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
96
|
+
import type { PutScalingPolicyCommandInput, PutScalingPolicyCommandOutput } from "./commands/PutScalingPolicyCommand";
|
|
97
|
+
import type { RegisterComputeCommandInput, RegisterComputeCommandOutput } from "./commands/RegisterComputeCommand";
|
|
98
|
+
import type { RegisterGameServerCommandInput, RegisterGameServerCommandOutput } from "./commands/RegisterGameServerCommand";
|
|
99
|
+
import type { RequestUploadCredentialsCommandInput, RequestUploadCredentialsCommandOutput } from "./commands/RequestUploadCredentialsCommand";
|
|
100
|
+
import type { ResolveAliasCommandInput, ResolveAliasCommandOutput } from "./commands/ResolveAliasCommand";
|
|
101
|
+
import type { ResumeGameServerGroupCommandInput, ResumeGameServerGroupCommandOutput } from "./commands/ResumeGameServerGroupCommand";
|
|
102
|
+
import type { SearchGameSessionsCommandInput, SearchGameSessionsCommandOutput } from "./commands/SearchGameSessionsCommand";
|
|
103
|
+
import type { StartFleetActionsCommandInput, StartFleetActionsCommandOutput } from "./commands/StartFleetActionsCommand";
|
|
104
|
+
import type { StartGameSessionPlacementCommandInput, StartGameSessionPlacementCommandOutput } from "./commands/StartGameSessionPlacementCommand";
|
|
105
|
+
import type { StartMatchBackfillCommandInput, StartMatchBackfillCommandOutput } from "./commands/StartMatchBackfillCommand";
|
|
106
|
+
import type { StartMatchmakingCommandInput, StartMatchmakingCommandOutput } from "./commands/StartMatchmakingCommand";
|
|
107
|
+
import type { StopFleetActionsCommandInput, StopFleetActionsCommandOutput } from "./commands/StopFleetActionsCommand";
|
|
108
|
+
import type { StopGameSessionPlacementCommandInput, StopGameSessionPlacementCommandOutput } from "./commands/StopGameSessionPlacementCommand";
|
|
109
|
+
import type { StopMatchmakingCommandInput, StopMatchmakingCommandOutput } from "./commands/StopMatchmakingCommand";
|
|
110
|
+
import type { SuspendGameServerGroupCommandInput, SuspendGameServerGroupCommandOutput } from "./commands/SuspendGameServerGroupCommand";
|
|
111
|
+
import type { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
112
|
+
import type { TerminateGameSessionCommandInput, TerminateGameSessionCommandOutput } from "./commands/TerminateGameSessionCommand";
|
|
113
|
+
import type { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
114
|
+
import type { UpdateAliasCommandInput, UpdateAliasCommandOutput } from "./commands/UpdateAliasCommand";
|
|
115
|
+
import type { UpdateBuildCommandInput, UpdateBuildCommandOutput } from "./commands/UpdateBuildCommand";
|
|
116
|
+
import type { UpdateContainerFleetCommandInput, UpdateContainerFleetCommandOutput } from "./commands/UpdateContainerFleetCommand";
|
|
117
|
+
import type { UpdateContainerGroupDefinitionCommandInput, UpdateContainerGroupDefinitionCommandOutput } from "./commands/UpdateContainerGroupDefinitionCommand";
|
|
118
|
+
import type { UpdateFleetAttributesCommandInput, UpdateFleetAttributesCommandOutput } from "./commands/UpdateFleetAttributesCommand";
|
|
119
|
+
import type { UpdateFleetCapacityCommandInput, UpdateFleetCapacityCommandOutput } from "./commands/UpdateFleetCapacityCommand";
|
|
120
|
+
import type { UpdateFleetPortSettingsCommandInput, UpdateFleetPortSettingsCommandOutput } from "./commands/UpdateFleetPortSettingsCommand";
|
|
121
|
+
import type { UpdateGameServerCommandInput, UpdateGameServerCommandOutput } from "./commands/UpdateGameServerCommand";
|
|
122
|
+
import type { UpdateGameServerGroupCommandInput, UpdateGameServerGroupCommandOutput } from "./commands/UpdateGameServerGroupCommand";
|
|
123
|
+
import type { UpdateGameSessionCommandInput, UpdateGameSessionCommandOutput } from "./commands/UpdateGameSessionCommand";
|
|
124
|
+
import type { UpdateGameSessionQueueCommandInput, UpdateGameSessionQueueCommandOutput } from "./commands/UpdateGameSessionQueueCommand";
|
|
125
|
+
import type { UpdateMatchmakingConfigurationCommandInput, UpdateMatchmakingConfigurationCommandOutput } from "./commands/UpdateMatchmakingConfigurationCommand";
|
|
126
|
+
import type { UpdateRuntimeConfigurationCommandInput, UpdateRuntimeConfigurationCommandOutput } from "./commands/UpdateRuntimeConfigurationCommand";
|
|
127
|
+
import type { UpdateScriptCommandInput, UpdateScriptCommandOutput } from "./commands/UpdateScriptCommand";
|
|
128
|
+
import type { ValidateMatchmakingRuleSetCommandInput, ValidateMatchmakingRuleSetCommandOutput } from "./commands/ValidateMatchmakingRuleSetCommand";
|
|
129
|
+
import { type ClientInputEndpointParameters, type ClientResolvedEndpointParameters, type EndpointParameters } from "./endpoint/EndpointParameters";
|
|
130
130
|
import { type RuntimeExtension, type RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
131
131
|
export { __Client };
|
|
132
132
|
/**
|
|
@@ -235,7 +235,7 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
235
235
|
* The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header
|
|
236
236
|
* @internal
|
|
237
237
|
*/
|
|
238
|
-
defaultUserAgentProvider?:
|
|
238
|
+
defaultUserAgentProvider?: __Provider<__UserAgent>;
|
|
239
239
|
/**
|
|
240
240
|
* Default credentials provider; Not available in browser runtime.
|
|
241
241
|
* @deprecated
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import type { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types";
|
|
2
2
|
import type { GameLiftHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AwsSdkSigV4AuthInputConfig, AwsSdkSigV4AuthResolvedConfig, AwsSdkSigV4PreviouslyResolved } from "@aws-sdk/core";
|
|
1
|
+
import { AwsSdkSigV4AuthInputConfig, AwsSdkSigV4AuthResolvedConfig, AwsSdkSigV4PreviouslyResolved } from "@aws-sdk/core/httpAuthSchemes";
|
|
2
2
|
import type { HandlerExecutionContext, HttpAuthScheme, HttpAuthSchemeParameters, HttpAuthSchemeParametersProvider, HttpAuthSchemeProvider, Provider } from "@smithy/types";
|
|
3
3
|
import { type GameLiftClientResolvedConfig } from "../GameLiftClient";
|
|
4
4
|
/**
|
package/dist-types/index.d.ts
CHANGED
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
*/
|
|
63
63
|
export * from "./GameLiftClient";
|
|
64
64
|
export * from "./GameLift";
|
|
65
|
-
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
65
|
+
export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
66
66
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
67
67
|
export type { GameLiftExtensionConfiguration } from "./extensionConfiguration";
|
|
68
68
|
export * from "./commands";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AcceptanceType, BackfillMode, BalancingStrategy, BuildStatus, CertificateType, ComparisonOperatorType, ComputeStatus, ComputeType, ContainerDependencyCondition, ContainerFleetBillingType, ContainerFleetLocationStatus, ContainerFleetRemoveAttribute, ContainerFleetStatus, ContainerGroupDefinitionStatus, ContainerGroupType, ContainerMountPointAccessLevel, ContainerOperatingSystem, DeploymentImpairmentStrategy, DeploymentProtectionStrategy, DeploymentStatus, EC2InstanceType, EventCode, FilterInstanceStatus, FleetAction, FleetStatus, FleetType, FlexMatchMode, GameServerClaimStatus, GameServerGroupAction, GameServerGroupDeleteOption, GameServerGroupInstanceType, GameServerGroupStatus, GameServerInstanceStatus, GameServerIpProtocolSupported, GameServerProtectionPolicy, GameServerUtilizationStatus, GameSessionPlacementState, GameSessionStatus, GameSessionStatusReason, InstanceRoleCredentialsProvider, InstanceStatus, IpProtocol, ListComputeInputStatus, LocationFilter, LocationUpdateStatus, LogDestination, MatchmakingConfigurationStatus, MetricName, OperatingSystem, PlacementFallbackStrategy, PlayerGatewayMode, PlayerGatewayStatus, PlayerSessionCreationPolicy, PlayerSessionStatus, PolicyType, PriorityType, ProtectionPolicy, RoutingStrategyType, ScalingAdjustmentType, ScalingStatusType, SortOrder, TerminationMode, ZeroCapacityStrategy } from "./enums";
|
|
1
|
+
import type { AcceptanceType, BackfillMode, BalancingStrategy, BuildStatus, CertificateType, ComparisonOperatorType, ComputeStatus, ComputeType, ContainerDependencyCondition, ContainerFleetBillingType, ContainerFleetLocationStatus, ContainerFleetRemoveAttribute, ContainerFleetStatus, ContainerGroupDefinitionStatus, ContainerGroupType, ContainerMountPointAccessLevel, ContainerOperatingSystem, DeploymentImpairmentStrategy, DeploymentProtectionStrategy, DeploymentStatus, EC2InstanceType, EventCode, FilterInstanceStatus, FleetAction, FleetStatus, FleetType, FlexMatchMode, GameServerClaimStatus, GameServerGroupAction, GameServerGroupDeleteOption, GameServerGroupInstanceType, GameServerGroupStatus, GameServerInstanceStatus, GameServerIpProtocolSupported, GameServerProtectionPolicy, GameServerUtilizationStatus, GameSessionPlacementState, GameSessionStatus, GameSessionStatusReason, InstanceRoleCredentialsProvider, InstanceStatus, IpProtocol, ListComputeInputStatus, LocationFilter, LocationUpdateStatus, LogDestination, MatchmakingConfigurationStatus, MetricName, OperatingSystem, PlacementFallbackStrategy, PlayerGatewayMode, PlayerGatewayStatus, PlayerSessionCreationPolicy, PlayerSessionStatus, PolicyType, PriorityType, ProtectionPolicy, RoutingStrategyType, ScalingAdjustmentType, ScalingStatusType, SortOrder, TerminationMode, ZeroCapacityStrategy } from "./enums";
|
|
2
2
|
/**
|
|
3
3
|
* @public
|
|
4
4
|
*/
|
|
@@ -4788,6 +4788,12 @@ export interface CreateScriptInput {
|
|
|
4788
4788
|
* <code>10.x | 24.x</code>. By default, <code>NodeJsVersion</code> is <code>10.x</code>.
|
|
4789
4789
|
* This value cannot be updated later.
|
|
4790
4790
|
* </p>
|
|
4791
|
+
* <note>
|
|
4792
|
+
* <p>Node.js 10 will reach end of support on September 30, 2026. See more details
|
|
4793
|
+
* in the <a href="http://aws.amazon.com/gamelift/faq/nodejs10/">Node.js 10 FAQs</a>. For migration guidance,
|
|
4794
|
+
* see <a href="https://docs.aws.amazon.com/gamelift/latest/realtimeguide/realtime-script.html#realtime-script-nodejs-migration">
|
|
4795
|
+
* Migrating from Node.js 10 to 24</a>.</p>
|
|
4796
|
+
* </note>
|
|
4791
4797
|
* @public
|
|
4792
4798
|
*/
|
|
4793
4799
|
NodeJsVersion?: string | undefined;
|
|
@@ -4851,6 +4857,12 @@ export interface Script {
|
|
|
4851
4857
|
* <code>10.x | 24.x</code>. By default, <code>NodeJsVersion</code> is <code>10.x</code>.
|
|
4852
4858
|
* This value cannot be updated later.
|
|
4853
4859
|
* </p>
|
|
4860
|
+
* <note>
|
|
4861
|
+
* <p>Node.js 10 will reach end of support on September 30, 2026. See more details
|
|
4862
|
+
* in the <a href="http://aws.amazon.com/gamelift/faq/nodejs10/">Node.js 10 FAQs</a>. For migration guidance,
|
|
4863
|
+
* see <a href="https://docs.aws.amazon.com/gamelift/latest/realtimeguide/realtime-script.html#realtime-script-nodejs-migration">
|
|
4864
|
+
* Migrating from Node.js 10 to 24</a>.</p>
|
|
4865
|
+
* </note>
|
|
4854
4866
|
* @public
|
|
4855
4867
|
*/
|
|
4856
4868
|
NodeJsVersion?: string | undefined;
|
|
@@ -7309,7 +7321,7 @@ export interface MatchedPlayerSession {
|
|
|
7309
7321
|
*/
|
|
7310
7322
|
PlayerId?: string | undefined;
|
|
7311
7323
|
/**
|
|
7312
|
-
* <p>A unique identifier for a player session
|
|
7324
|
+
* <p>A unique identifier for a player session. PlayerSessionId will only be populated for player sessions that are in ACTIVE or RESERVED status when the ticket is completed.</p>
|
|
7313
7325
|
* @public
|
|
7314
7326
|
*/
|
|
7315
7327
|
PlayerSessionId?: string | undefined;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { BackfillMode, BalancingStrategy, FlexMatchMode, GameServerHealthCheck, GameServerProtectionPolicy, GameServerUtilizationStatus, PlayerSessionCreationPolicy, ProtectionPolicy } from "./enums";
|
|
2
|
-
import {
|
|
1
|
+
import type { BackfillMode, BalancingStrategy, FlexMatchMode, GameServerHealthCheck, GameServerProtectionPolicy, GameServerUtilizationStatus, PlayerSessionCreationPolicy, ProtectionPolicy } from "./enums";
|
|
2
|
+
import type { AnywhereConfiguration, FilterConfiguration, GameProperty, GameServer, GameServerGroup, GameSession, GameSessionQueue, GameSessionQueueDestination, InstanceDefinition, IpPermission, ManagedCapacityConfiguration, MatchmakingConfiguration, PlayerLatencyPolicy, PriorityConfiguration, ResourceCreationLimitPolicy, RuntimeConfiguration, S3Location, Script } from "./models_0";
|
|
3
3
|
/**
|
|
4
4
|
* @public
|
|
5
5
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { DescribeFleetAttributesCommandInput, DescribeFleetAttributesCommandOutput } from "../commands/DescribeFleetAttributesCommand";
|
|
3
|
-
import { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { DescribeFleetCapacityCommandInput, DescribeFleetCapacityCommandOutput } from "../commands/DescribeFleetCapacityCommand";
|
|
3
|
-
import { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { DescribeFleetEventsCommandInput, DescribeFleetEventsCommandOutput } from "../commands/DescribeFleetEventsCommand";
|
|
3
|
-
import { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { DescribeFleetLocationAttributesCommandInput, DescribeFleetLocationAttributesCommandOutput } from "../commands/DescribeFleetLocationAttributesCommand";
|
|
3
|
-
import { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { DescribeFleetUtilizationCommandInput, DescribeFleetUtilizationCommandOutput } from "../commands/DescribeFleetUtilizationCommand";
|
|
3
|
-
import { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { DescribeGameServerInstancesCommandInput, DescribeGameServerInstancesCommandOutput } from "../commands/DescribeGameServerInstancesCommand";
|
|
3
|
-
import { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { DescribeGameSessionDetailsCommandInput, DescribeGameSessionDetailsCommandOutput } from "../commands/DescribeGameSessionDetailsCommand";
|
|
3
|
-
import { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { DescribeGameSessionQueuesCommandInput, DescribeGameSessionQueuesCommandOutput } from "../commands/DescribeGameSessionQueuesCommand";
|
|
3
|
-
import { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { DescribeGameSessionsCommandInput, DescribeGameSessionsCommandOutput } from "../commands/DescribeGameSessionsCommand";
|
|
3
|
-
import { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { DescribeInstancesCommandInput, DescribeInstancesCommandOutput } from "../commands/DescribeInstancesCommand";
|
|
3
|
-
import { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { DescribeMatchmakingConfigurationsCommandInput, DescribeMatchmakingConfigurationsCommandOutput } from "../commands/DescribeMatchmakingConfigurationsCommand";
|
|
3
|
-
import { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { DescribeMatchmakingRuleSetsCommandInput, DescribeMatchmakingRuleSetsCommandOutput } from "../commands/DescribeMatchmakingRuleSetsCommand";
|
|
3
|
-
import { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { DescribePlayerSessionsCommandInput, DescribePlayerSessionsCommandOutput } from "../commands/DescribePlayerSessionsCommand";
|
|
3
|
-
import { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { DescribeScalingPoliciesCommandInput, DescribeScalingPoliciesCommandOutput } from "../commands/DescribeScalingPoliciesCommand";
|
|
3
|
-
import { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListAliasesCommandInput, ListAliasesCommandOutput } from "../commands/ListAliasesCommand";
|
|
3
|
-
import { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListBuildsCommandInput, ListBuildsCommandOutput } from "../commands/ListBuildsCommand";
|
|
3
|
-
import { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListComputeCommandInput, ListComputeCommandOutput } from "../commands/ListComputeCommand";
|
|
3
|
-
import { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListContainerFleetsCommandInput, ListContainerFleetsCommandOutput } from "../commands/ListContainerFleetsCommand";
|
|
3
|
-
import { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListContainerGroupDefinitionVersionsCommandInput, ListContainerGroupDefinitionVersionsCommandOutput } from "../commands/ListContainerGroupDefinitionVersionsCommand";
|
|
3
|
-
import { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListContainerGroupDefinitionsCommandInput, ListContainerGroupDefinitionsCommandOutput } from "../commands/ListContainerGroupDefinitionsCommand";
|
|
3
|
-
import { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListFleetDeploymentsCommandInput, ListFleetDeploymentsCommandOutput } from "../commands/ListFleetDeploymentsCommand";
|
|
3
|
-
import { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListFleetsCommandInput, ListFleetsCommandOutput } from "../commands/ListFleetsCommand";
|
|
3
|
-
import { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListGameServerGroupsCommandInput, ListGameServerGroupsCommandOutput } from "../commands/ListGameServerGroupsCommand";
|
|
3
|
-
import { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListGameServersCommandInput, ListGameServersCommandOutput } from "../commands/ListGameServersCommand";
|
|
3
|
-
import { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|