File Explorer

/proc/self/root/var/runtime/node_modules/@aws-sdk/client-gamelift/dist-cjs

This explorer reads the filesystem of the server it runs on, so /workspace/user isn't present here. Browsing and the terminal still work against this server's own disk from /.

index.js105 KB · 2967 lines
'use strict'; var client$1 = require('@aws-sdk/core/client');var core = require('@smithy/core');var client = require('@smithy/core/client');var config = require('@smithy/core/config');var endpoints = require('@smithy/core/endpoints');var protocols = require('@smithy/core/protocols');var retry = require('@smithy/core/retry');var schema = require('@smithy/core/schema');var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');var runtimeConfig = require('./runtimeConfig');var schemas_0 = require('./schemas/schemas_0');var errors = require('./models/errors');var GameLiftServiceException = require('./models/GameLiftServiceException'); const resolveClientEndpointParameters = (options) => {    return Object.assign(options, {        useDualstackEndpoint: options.useDualstackEndpoint ?? false,        useFipsEndpoint: options.useFipsEndpoint ?? false,        defaultSigningName: "gamelift",    });};const commonParams = {    UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },    Endpoint: { type: "builtInParams", name: "endpoint" },    Region: { type: "builtInParams", name: "region" },    UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },}; const getHttpAuthExtensionConfiguration = (runtimeConfig) => {    const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;    let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;    let _credentials = runtimeConfig.credentials;    return {        setHttpAuthScheme(httpAuthScheme) {            const index = _httpAuthSchemes.findIndex((scheme) => scheme.schemeId === httpAuthScheme.schemeId);            if (index === -1) {                _httpAuthSchemes.push(httpAuthScheme);            }            else {                _httpAuthSchemes.splice(index, 1, httpAuthScheme);            }        },        httpAuthSchemes() {            return _httpAuthSchemes;        },        setHttpAuthSchemeProvider(httpAuthSchemeProvider) {            _httpAuthSchemeProvider = httpAuthSchemeProvider;        },        httpAuthSchemeProvider() {            return _httpAuthSchemeProvider;        },        setCredentials(credentials) {            _credentials = credentials;        },        credentials() {            return _credentials;        },    };};const resolveHttpAuthRuntimeConfig = (config) => {    return {        httpAuthSchemes: config.httpAuthSchemes(),        httpAuthSchemeProvider: config.httpAuthSchemeProvider(),        credentials: config.credentials(),    };}; const resolveRuntimeExtensions = (runtimeConfig, extensions) => {    const extensionConfiguration = Object.assign(client$1.getAwsRegionExtensionConfiguration(runtimeConfig), client.getDefaultExtensionConfiguration(runtimeConfig), protocols.getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));    extensions.forEach((extension) => extension.configure(extensionConfiguration));    return Object.assign(runtimeConfig, client$1.resolveAwsRegionExtensionConfiguration(extensionConfiguration), client.resolveDefaultRuntimeConfig(extensionConfiguration), protocols.resolveHttpHandlerRuntimeConfig(extensionConfiguration), resolveHttpAuthRuntimeConfig(extensionConfiguration));}; class GameLiftClient extends client.Client {    config;    constructor(...[configuration]) {        const _config_0 = runtimeConfig.getRuntimeConfig(configuration || {});        super(_config_0);        this.initConfig = _config_0;        const _config_1 = resolveClientEndpointParameters(_config_0);        const _config_2 = client$1.resolveUserAgentConfig(_config_1);        const _config_3 = retry.resolveRetryConfig(_config_2);        const _config_4 = config.resolveRegionConfig(_config_3);        const _config_5 = client$1.resolveHostHeaderConfig(_config_4);        const _config_6 = endpoints.resolveEndpointConfig(_config_5);        const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);        const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);        this.config = _config_8;        this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));        this.middlewareStack.use(client$1.getUserAgentPlugin(this.config));        this.middlewareStack.use(retry.getRetryPlugin(this.config));        this.middlewareStack.use(protocols.getContentLengthPlugin(this.config));        this.middlewareStack.use(client$1.getHostHeaderPlugin(this.config));        this.middlewareStack.use(client$1.getLoggerPlugin(this.config));        this.middlewareStack.use(client$1.getRecursionDetectionPlugin(this.config));        this.middlewareStack.use(core.getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {            httpAuthSchemeParametersProvider: httpAuthSchemeProvider.defaultGameLiftHttpAuthSchemeParametersProvider,            identityProviderConfigProvider: async (config) => new core.DefaultIdentityProviderConfig({                "aws.auth#sigv4": config.credentials,            }),        }));        this.middlewareStack.use(core.getHttpSigningPlugin(this.config));    }    destroy() {        super.destroy();    }} class AcceptMatchCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "AcceptMatch", {})    .n("GameLiftClient", "AcceptMatchCommand")    .sc(schemas_0.AcceptMatch$)    .build() {} class ClaimGameServerCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "ClaimGameServer", {})    .n("GameLiftClient", "ClaimGameServerCommand")    .sc(schemas_0.ClaimGameServer$)    .build() {} class CreateAliasCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "CreateAlias", {})    .n("GameLiftClient", "CreateAliasCommand")    .sc(schemas_0.CreateAlias$)    .build() {} class CreateBuildCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "CreateBuild", {})    .n("GameLiftClient", "CreateBuildCommand")    .sc(schemas_0.CreateBuild$)    .build() {} class CreateContainerFleetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "CreateContainerFleet", {})    .n("GameLiftClient", "CreateContainerFleetCommand")    .sc(schemas_0.CreateContainerFleet$)    .build() {} class CreateContainerGroupDefinitionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "CreateContainerGroupDefinition", {})    .n("GameLiftClient", "CreateContainerGroupDefinitionCommand")    .sc(schemas_0.CreateContainerGroupDefinition$)    .build() {} class CreateFleetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "CreateFleet", {})    .n("GameLiftClient", "CreateFleetCommand")    .sc(schemas_0.CreateFleet$)    .build() {} class CreateFleetLocationsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "CreateFleetLocations", {})    .n("GameLiftClient", "CreateFleetLocationsCommand")    .sc(schemas_0.CreateFleetLocations$)    .build() {} class CreateGameServerGroupCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "CreateGameServerGroup", {})    .n("GameLiftClient", "CreateGameServerGroupCommand")    .sc(schemas_0.CreateGameServerGroup$)    .build() {} class CreateGameSessionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "CreateGameSession", {})    .n("GameLiftClient", "CreateGameSessionCommand")    .sc(schemas_0.CreateGameSession$)    .build() {} class CreateGameSessionQueueCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "CreateGameSessionQueue", {})    .n("GameLiftClient", "CreateGameSessionQueueCommand")    .sc(schemas_0.CreateGameSessionQueue$)    .build() {} class CreateLocationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "CreateLocation", {})    .n("GameLiftClient", "CreateLocationCommand")    .sc(schemas_0.CreateLocation$)    .build() {} class CreateMatchmakingConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "CreateMatchmakingConfiguration", {})    .n("GameLiftClient", "CreateMatchmakingConfigurationCommand")    .sc(schemas_0.CreateMatchmakingConfiguration$)    .build() {} class CreateMatchmakingRuleSetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "CreateMatchmakingRuleSet", {})    .n("GameLiftClient", "CreateMatchmakingRuleSetCommand")    .sc(schemas_0.CreateMatchmakingRuleSet$)    .build() {} class CreatePlayerSessionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "CreatePlayerSession", {})    .n("GameLiftClient", "CreatePlayerSessionCommand")    .sc(schemas_0.CreatePlayerSession$)    .build() {} class CreatePlayerSessionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "CreatePlayerSessions", {})    .n("GameLiftClient", "CreatePlayerSessionsCommand")    .sc(schemas_0.CreatePlayerSessions$)    .build() {} class CreateScriptCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "CreateScript", {})    .n("GameLiftClient", "CreateScriptCommand")    .sc(schemas_0.CreateScript$)    .build() {} class CreateVpcPeeringAuthorizationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "CreateVpcPeeringAuthorization", {})    .n("GameLiftClient", "CreateVpcPeeringAuthorizationCommand")    .sc(schemas_0.CreateVpcPeeringAuthorization$)    .build() {} class CreateVpcPeeringConnectionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "CreateVpcPeeringConnection", {})    .n("GameLiftClient", "CreateVpcPeeringConnectionCommand")    .sc(schemas_0.CreateVpcPeeringConnection$)    .build() {} class DeleteAliasCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "DeleteAlias", {})    .n("GameLiftClient", "DeleteAliasCommand")    .sc(schemas_0.DeleteAlias$)    .build() {} class DeleteBuildCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "DeleteBuild", {})    .n("GameLiftClient", "DeleteBuildCommand")    .sc(schemas_0.DeleteBuild$)    .build() {} class DeleteContainerFleetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "DeleteContainerFleet", {})    .n("GameLiftClient", "DeleteContainerFleetCommand")    .sc(schemas_0.DeleteContainerFleet$)    .build() {} class DeleteContainerGroupDefinitionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "DeleteContainerGroupDefinition", {})    .n("GameLiftClient", "DeleteContainerGroupDefinitionCommand")    .sc(schemas_0.DeleteContainerGroupDefinition$)    .build() {} class DeleteFleetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "DeleteFleet", {})    .n("GameLiftClient", "DeleteFleetCommand")    .sc(schemas_0.DeleteFleet$)    .build() {} class DeleteFleetLocationsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "DeleteFleetLocations", {})    .n("GameLiftClient", "DeleteFleetLocationsCommand")    .sc(schemas_0.DeleteFleetLocations$)    .build() {} class DeleteGameServerGroupCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "DeleteGameServerGroup", {})    .n("GameLiftClient", "DeleteGameServerGroupCommand")    .sc(schemas_0.DeleteGameServerGroup$)    .build() {} class DeleteGameSessionQueueCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "DeleteGameSessionQueue", {})    .n("GameLiftClient", "DeleteGameSessionQueueCommand")    .sc(schemas_0.DeleteGameSessionQueue$)    .build() {} class DeleteLocationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "DeleteLocation", {})    .n("GameLiftClient", "DeleteLocationCommand")    .sc(schemas_0.DeleteLocation$)    .build() {} class DeleteMatchmakingConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "DeleteMatchmakingConfiguration", {})    .n("GameLiftClient", "DeleteMatchmakingConfigurationCommand")    .sc(schemas_0.DeleteMatchmakingConfiguration$)    .build() {} class DeleteMatchmakingRuleSetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "DeleteMatchmakingRuleSet", {})    .n("GameLiftClient", "DeleteMatchmakingRuleSetCommand")    .sc(schemas_0.DeleteMatchmakingRuleSet$)    .build() {} class DeleteScalingPolicyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "DeleteScalingPolicy", {})    .n("GameLiftClient", "DeleteScalingPolicyCommand")    .sc(schemas_0.DeleteScalingPolicy$)    .build() {} class DeleteScriptCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "DeleteScript", {})    .n("GameLiftClient", "DeleteScriptCommand")    .sc(schemas_0.DeleteScript$)    .build() {} class DeleteVpcPeeringAuthorizationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "DeleteVpcPeeringAuthorization", {})    .n("GameLiftClient", "DeleteVpcPeeringAuthorizationCommand")    .sc(schemas_0.DeleteVpcPeeringAuthorization$)    .build() {} class DeleteVpcPeeringConnectionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "DeleteVpcPeeringConnection", {})    .n("GameLiftClient", "DeleteVpcPeeringConnectionCommand")    .sc(schemas_0.DeleteVpcPeeringConnection$)    .build() {} class DeregisterComputeCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "DeregisterCompute", {})    .n("GameLiftClient", "DeregisterComputeCommand")    .sc(schemas_0.DeregisterCompute$)    .build() {} class DeregisterGameServerCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "DeregisterGameServer", {})    .n("GameLiftClient", "DeregisterGameServerCommand")    .sc(schemas_0.DeregisterGameServer$)    .build() {} class DescribeAliasCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "DescribeAlias", {})    .n("GameLiftClient", "DescribeAliasCommand")    .sc(schemas_0.DescribeAlias$)    .build() {} class DescribeBuildCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "DescribeBuild", {})    .n("GameLiftClient", "DescribeBuildCommand")    .sc(schemas_0.DescribeBuild$)    .build() {} class DescribeComputeCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "DescribeCompute", {})    .n("GameLiftClient", "DescribeComputeCommand")    .sc(schemas_0.DescribeCompute$)    .build() {} class DescribeContainerFleetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "DescribeContainerFleet", {})    .n("GameLiftClient", "DescribeContainerFleetCommand")    .sc(schemas_0.DescribeContainerFleet$)    .build() {} class DescribeContainerGroupDefinitionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "DescribeContainerGroupDefinition", {})    .n("GameLiftClient", "DescribeContainerGroupDefinitionCommand")    .sc(schemas_0.DescribeContainerGroupDefinition$)    .build() {} class DescribeContainerGroupPortMappingsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "DescribeContainerGroupPortMappings", {})    .n("GameLiftClient", "DescribeContainerGroupPortMappingsCommand")    .sc(schemas_0.DescribeContainerGroupPortMappings$)    .build() {} class DescribeEC2InstanceLimitsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "DescribeEC2InstanceLimits", {})    .n("GameLiftClient", "DescribeEC2InstanceLimitsCommand")    .sc(schemas_0.DescribeEC2InstanceLimits$)    .build() {} class DescribeFleetAttributesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "DescribeFleetAttributes", {})    .n("GameLiftClient", "DescribeFleetAttributesCommand")    .sc(schemas_0.DescribeFleetAttributes$)    .build() {} class DescribeFleetCapacityCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "DescribeFleetCapacity", {})    .n("GameLiftClient", "DescribeFleetCapacityCommand")    .sc(schemas_0.DescribeFleetCapacity$)    .build() {} class DescribeFleetDeploymentCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "DescribeFleetDeployment", {})    .n("GameLiftClient", "DescribeFleetDeploymentCommand")    .sc(schemas_0.DescribeFleetDeployment$)    .build() {} class DescribeFleetEventsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "DescribeFleetEvents", {})    .n("GameLiftClient", "DescribeFleetEventsCommand")    .sc(schemas_0.DescribeFleetEvents$)    .build() {} class DescribeFleetLocationAttributesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "DescribeFleetLocationAttributes", {})    .n("GameLiftClient", "DescribeFleetLocationAttributesCommand")    .sc(schemas_0.DescribeFleetLocationAttributes$)    .build() {} class DescribeFleetLocationCapacityCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "DescribeFleetLocationCapacity", {})    .n("GameLiftClient", "DescribeFleetLocationCapacityCommand")    .sc(schemas_0.DescribeFleetLocationCapacity$)    .build() {} class DescribeFleetLocationUtilizationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "DescribeFleetLocationUtilization", {})    .n("GameLiftClient", "DescribeFleetLocationUtilizationCommand")    .sc(schemas_0.DescribeFleetLocationUtilization$)    .build() {} class DescribeFleetPortSettingsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "DescribeFleetPortSettings", {})    .n("GameLiftClient", "DescribeFleetPortSettingsCommand")    .sc(schemas_0.DescribeFleetPortSettings$)    .build() {} class DescribeFleetUtilizationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "DescribeFleetUtilization", {})    .n("GameLiftClient", "DescribeFleetUtilizationCommand")    .sc(schemas_0.DescribeFleetUtilization$)    .build() {} class DescribeGameServerCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "DescribeGameServer", {})    .n("GameLiftClient", "DescribeGameServerCommand")    .sc(schemas_0.DescribeGameServer$)    .build() {} class DescribeGameServerGroupCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "DescribeGameServerGroup", {})    .n("GameLiftClient", "DescribeGameServerGroupCommand")    .sc(schemas_0.DescribeGameServerGroup$)    .build() {} class DescribeGameServerInstancesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "DescribeGameServerInstances", {})    .n("GameLiftClient", "DescribeGameServerInstancesCommand")    .sc(schemas_0.DescribeGameServerInstances$)    .build() {} class DescribeGameSessionDetailsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "DescribeGameSessionDetails", {})    .n("GameLiftClient", "DescribeGameSessionDetailsCommand")    .sc(schemas_0.DescribeGameSessionDetails$)    .build() {} class DescribeGameSessionPlacementCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "DescribeGameSessionPlacement", {})    .n("GameLiftClient", "DescribeGameSessionPlacementCommand")    .sc(schemas_0.DescribeGameSessionPlacement$)    .build() {} class DescribeGameSessionQueuesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "DescribeGameSessionQueues", {})    .n("GameLiftClient", "DescribeGameSessionQueuesCommand")    .sc(schemas_0.DescribeGameSessionQueues$)    .build() {} class DescribeGameSessionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "DescribeGameSessions", {})    .n("GameLiftClient", "DescribeGameSessionsCommand")    .sc(schemas_0.DescribeGameSessions$)    .build() {} class DescribeInstancesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "DescribeInstances", {})    .n("GameLiftClient", "DescribeInstancesCommand")    .sc(schemas_0.DescribeInstances$)    .build() {} class DescribeMatchmakingCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "DescribeMatchmaking", {})    .n("GameLiftClient", "DescribeMatchmakingCommand")    .sc(schemas_0.DescribeMatchmaking$)    .build() {} class DescribeMatchmakingConfigurationsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "DescribeMatchmakingConfigurations", {})    .n("GameLiftClient", "DescribeMatchmakingConfigurationsCommand")    .sc(schemas_0.DescribeMatchmakingConfigurations$)    .build() {} class DescribeMatchmakingRuleSetsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "DescribeMatchmakingRuleSets", {})    .n("GameLiftClient", "DescribeMatchmakingRuleSetsCommand")    .sc(schemas_0.DescribeMatchmakingRuleSets$)    .build() {} class DescribePlayerSessionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "DescribePlayerSessions", {})    .n("GameLiftClient", "DescribePlayerSessionsCommand")    .sc(schemas_0.DescribePlayerSessions$)    .build() {} class DescribeRuntimeConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "DescribeRuntimeConfiguration", {})    .n("GameLiftClient", "DescribeRuntimeConfigurationCommand")    .sc(schemas_0.DescribeRuntimeConfiguration$)    .build() {} class DescribeScalingPoliciesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "DescribeScalingPolicies", {})    .n("GameLiftClient", "DescribeScalingPoliciesCommand")    .sc(schemas_0.DescribeScalingPolicies$)    .build() {} class DescribeScriptCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "DescribeScript", {})    .n("GameLiftClient", "DescribeScriptCommand")    .sc(schemas_0.DescribeScript$)    .build() {} class DescribeVpcPeeringAuthorizationsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "DescribeVpcPeeringAuthorizations", {})    .n("GameLiftClient", "DescribeVpcPeeringAuthorizationsCommand")    .sc(schemas_0.DescribeVpcPeeringAuthorizations$)    .build() {} class DescribeVpcPeeringConnectionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "DescribeVpcPeeringConnections", {})    .n("GameLiftClient", "DescribeVpcPeeringConnectionsCommand")    .sc(schemas_0.DescribeVpcPeeringConnections$)    .build() {} class GetComputeAccessCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "GetComputeAccess", {})    .n("GameLiftClient", "GetComputeAccessCommand")    .sc(schemas_0.GetComputeAccess$)    .build() {} class GetComputeAuthTokenCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "GetComputeAuthToken", {})    .n("GameLiftClient", "GetComputeAuthTokenCommand")    .sc(schemas_0.GetComputeAuthToken$)    .build() {} class GetGameSessionLogUrlCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "GetGameSessionLogUrl", {})    .n("GameLiftClient", "GetGameSessionLogUrlCommand")    .sc(schemas_0.GetGameSessionLogUrl$)    .build() {} class GetInstanceAccessCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "GetInstanceAccess", {})    .n("GameLiftClient", "GetInstanceAccessCommand")    .sc(schemas_0.GetInstanceAccess$)    .build() {} class GetPlayerConnectionDetailsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "GetPlayerConnectionDetails", {})    .n("GameLiftClient", "GetPlayerConnectionDetailsCommand")    .sc(schemas_0.GetPlayerConnectionDetails$)    .build() {} class ListAliasesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "ListAliases", {})    .n("GameLiftClient", "ListAliasesCommand")    .sc(schemas_0.ListAliases$)    .build() {} class ListBuildsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "ListBuilds", {})    .n("GameLiftClient", "ListBuildsCommand")    .sc(schemas_0.ListBuilds$)    .build() {} class ListComputeCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "ListCompute", {})    .n("GameLiftClient", "ListComputeCommand")    .sc(schemas_0.ListCompute$)    .build() {} class ListContainerFleetsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "ListContainerFleets", {})    .n("GameLiftClient", "ListContainerFleetsCommand")    .sc(schemas_0.ListContainerFleets$)    .build() {} class ListContainerGroupDefinitionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "ListContainerGroupDefinitions", {})    .n("GameLiftClient", "ListContainerGroupDefinitionsCommand")    .sc(schemas_0.ListContainerGroupDefinitions$)    .build() {} class ListContainerGroupDefinitionVersionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "ListContainerGroupDefinitionVersions", {})    .n("GameLiftClient", "ListContainerGroupDefinitionVersionsCommand")    .sc(schemas_0.ListContainerGroupDefinitionVersions$)    .build() {} class ListFleetDeploymentsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "ListFleetDeployments", {})    .n("GameLiftClient", "ListFleetDeploymentsCommand")    .sc(schemas_0.ListFleetDeployments$)    .build() {} class ListFleetsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "ListFleets", {})    .n("GameLiftClient", "ListFleetsCommand")    .sc(schemas_0.ListFleets$)    .build() {} class ListGameServerGroupsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "ListGameServerGroups", {})    .n("GameLiftClient", "ListGameServerGroupsCommand")    .sc(schemas_0.ListGameServerGroups$)    .build() {} class ListGameServersCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "ListGameServers", {})    .n("GameLiftClient", "ListGameServersCommand")    .sc(schemas_0.ListGameServers$)    .build() {} class ListLocationsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "ListLocations", {})    .n("GameLiftClient", "ListLocationsCommand")    .sc(schemas_0.ListLocations$)    .build() {} class ListScriptsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "ListScripts", {})    .n("GameLiftClient", "ListScriptsCommand")    .sc(schemas_0.ListScripts$)    .build() {} class ListTagsForResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "ListTagsForResource", {})    .n("GameLiftClient", "ListTagsForResourceCommand")    .sc(schemas_0.ListTagsForResource$)    .build() {} class PutScalingPolicyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "PutScalingPolicy", {})    .n("GameLiftClient", "PutScalingPolicyCommand")    .sc(schemas_0.PutScalingPolicy$)    .build() {} class RegisterComputeCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "RegisterCompute", {})    .n("GameLiftClient", "RegisterComputeCommand")    .sc(schemas_0.RegisterCompute$)    .build() {} class RegisterGameServerCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "RegisterGameServer", {})    .n("GameLiftClient", "RegisterGameServerCommand")    .sc(schemas_0.RegisterGameServer$)    .build() {} class RequestUploadCredentialsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "RequestUploadCredentials", {})    .n("GameLiftClient", "RequestUploadCredentialsCommand")    .sc(schemas_0.RequestUploadCredentials$)    .build() {} class ResolveAliasCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "ResolveAlias", {})    .n("GameLiftClient", "ResolveAliasCommand")    .sc(schemas_0.ResolveAlias$)    .build() {} class ResumeGameServerGroupCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "ResumeGameServerGroup", {})    .n("GameLiftClient", "ResumeGameServerGroupCommand")    .sc(schemas_0.ResumeGameServerGroup$)    .build() {} class SearchGameSessionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "SearchGameSessions", {})    .n("GameLiftClient", "SearchGameSessionsCommand")    .sc(schemas_0.SearchGameSessions$)    .build() {} class StartFleetActionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "StartFleetActions", {})    .n("GameLiftClient", "StartFleetActionsCommand")    .sc(schemas_0.StartFleetActions$)    .build() {} class StartGameSessionPlacementCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "StartGameSessionPlacement", {})    .n("GameLiftClient", "StartGameSessionPlacementCommand")    .sc(schemas_0.StartGameSessionPlacement$)    .build() {} class StartMatchBackfillCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "StartMatchBackfill", {})    .n("GameLiftClient", "StartMatchBackfillCommand")    .sc(schemas_0.StartMatchBackfill$)    .build() {} class StartMatchmakingCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "StartMatchmaking", {})    .n("GameLiftClient", "StartMatchmakingCommand")    .sc(schemas_0.StartMatchmaking$)    .build() {} class StopFleetActionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "StopFleetActions", {})    .n("GameLiftClient", "StopFleetActionsCommand")    .sc(schemas_0.StopFleetActions$)    .build() {} class StopGameSessionPlacementCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "StopGameSessionPlacement", {})    .n("GameLiftClient", "StopGameSessionPlacementCommand")    .sc(schemas_0.StopGameSessionPlacement$)    .build() {} class StopMatchmakingCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "StopMatchmaking", {})    .n("GameLiftClient", "StopMatchmakingCommand")    .sc(schemas_0.StopMatchmaking$)    .build() {} class SuspendGameServerGroupCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "SuspendGameServerGroup", {})    .n("GameLiftClient", "SuspendGameServerGroupCommand")    .sc(schemas_0.SuspendGameServerGroup$)    .build() {} class TagResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "TagResource", {})    .n("GameLiftClient", "TagResourceCommand")    .sc(schemas_0.TagResource$)    .build() {} class TerminateGameSessionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "TerminateGameSession", {})    .n("GameLiftClient", "TerminateGameSessionCommand")    .sc(schemas_0.TerminateGameSession$)    .build() {} class UntagResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "UntagResource", {})    .n("GameLiftClient", "UntagResourceCommand")    .sc(schemas_0.UntagResource$)    .build() {} class UpdateAliasCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "UpdateAlias", {})    .n("GameLiftClient", "UpdateAliasCommand")    .sc(schemas_0.UpdateAlias$)    .build() {} class UpdateBuildCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "UpdateBuild", {})    .n("GameLiftClient", "UpdateBuildCommand")    .sc(schemas_0.UpdateBuild$)    .build() {} class UpdateContainerFleetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "UpdateContainerFleet", {})    .n("GameLiftClient", "UpdateContainerFleetCommand")    .sc(schemas_0.UpdateContainerFleet$)    .build() {} class UpdateContainerGroupDefinitionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "UpdateContainerGroupDefinition", {})    .n("GameLiftClient", "UpdateContainerGroupDefinitionCommand")    .sc(schemas_0.UpdateContainerGroupDefinition$)    .build() {} class UpdateFleetAttributesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "UpdateFleetAttributes", {})    .n("GameLiftClient", "UpdateFleetAttributesCommand")    .sc(schemas_0.UpdateFleetAttributes$)    .build() {} class UpdateFleetCapacityCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "UpdateFleetCapacity", {})    .n("GameLiftClient", "UpdateFleetCapacityCommand")    .sc(schemas_0.UpdateFleetCapacity$)    .build() {} class UpdateFleetPortSettingsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "UpdateFleetPortSettings", {})    .n("GameLiftClient", "UpdateFleetPortSettingsCommand")    .sc(schemas_0.UpdateFleetPortSettings$)    .build() {} class UpdateGameServerCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "UpdateGameServer", {})    .n("GameLiftClient", "UpdateGameServerCommand")    .sc(schemas_0.UpdateGameServer$)    .build() {} class UpdateGameServerGroupCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "UpdateGameServerGroup", {})    .n("GameLiftClient", "UpdateGameServerGroupCommand")    .sc(schemas_0.UpdateGameServerGroup$)    .build() {} class UpdateGameSessionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "UpdateGameSession", {})    .n("GameLiftClient", "UpdateGameSessionCommand")    .sc(schemas_0.UpdateGameSession$)    .build() {} class UpdateGameSessionQueueCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "UpdateGameSessionQueue", {})    .n("GameLiftClient", "UpdateGameSessionQueueCommand")    .sc(schemas_0.UpdateGameSessionQueue$)    .build() {} class UpdateMatchmakingConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "UpdateMatchmakingConfiguration", {})    .n("GameLiftClient", "UpdateMatchmakingConfigurationCommand")    .sc(schemas_0.UpdateMatchmakingConfiguration$)    .build() {} class UpdateRuntimeConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "UpdateRuntimeConfiguration", {})    .n("GameLiftClient", "UpdateRuntimeConfigurationCommand")    .sc(schemas_0.UpdateRuntimeConfiguration$)    .build() {} class UpdateScriptCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "UpdateScript", {})    .n("GameLiftClient", "UpdateScriptCommand")    .sc(schemas_0.UpdateScript$)    .build() {} class ValidateMatchmakingRuleSetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GameLift", "ValidateMatchmakingRuleSet", {})    .n("GameLiftClient", "ValidateMatchmakingRuleSetCommand")    .sc(schemas_0.ValidateMatchmakingRuleSet$)    .build() {} const paginateDescribeFleetAttributes = core.createPaginator(GameLiftClient, DescribeFleetAttributesCommand, "NextToken", "NextToken", "Limit"); const paginateDescribeFleetCapacity = core.createPaginator(GameLiftClient, DescribeFleetCapacityCommand, "NextToken", "NextToken", "Limit"); const paginateDescribeFleetEvents = core.createPaginator(GameLiftClient, DescribeFleetEventsCommand, "NextToken", "NextToken", "Limit"); const paginateDescribeFleetLocationAttributes = core.createPaginator(GameLiftClient, DescribeFleetLocationAttributesCommand, "NextToken", "NextToken", "Limit"); const paginateDescribeFleetUtilization = core.createPaginator(GameLiftClient, DescribeFleetUtilizationCommand, "NextToken", "NextToken", "Limit"); const paginateDescribeGameServerInstances = core.createPaginator(GameLiftClient, DescribeGameServerInstancesCommand, "NextToken", "NextToken", "Limit"); const paginateDescribeGameSessionDetails = core.createPaginator(GameLiftClient, DescribeGameSessionDetailsCommand, "NextToken", "NextToken", "Limit"); const paginateDescribeGameSessionQueues = core.createPaginator(GameLiftClient, DescribeGameSessionQueuesCommand, "NextToken", "NextToken", "Limit"); const paginateDescribeGameSessions = core.createPaginator(GameLiftClient, DescribeGameSessionsCommand, "NextToken", "NextToken", "Limit"); const paginateDescribeInstances = core.createPaginator(GameLiftClient, DescribeInstancesCommand, "NextToken", "NextToken", "Limit"); const paginateDescribeMatchmakingConfigurations = core.createPaginator(GameLiftClient, DescribeMatchmakingConfigurationsCommand, "NextToken", "NextToken", "Limit"); const paginateDescribeMatchmakingRuleSets = core.createPaginator(GameLiftClient, DescribeMatchmakingRuleSetsCommand, "NextToken", "NextToken", "Limit"); const paginateDescribePlayerSessions = core.createPaginator(GameLiftClient, DescribePlayerSessionsCommand, "NextToken", "NextToken", "Limit"); const paginateDescribeScalingPolicies = core.createPaginator(GameLiftClient, DescribeScalingPoliciesCommand, "NextToken", "NextToken", "Limit"); const paginateListAliases = core.createPaginator(GameLiftClient, ListAliasesCommand, "NextToken", "NextToken", "Limit"); const paginateListBuilds = core.createPaginator(GameLiftClient, ListBuildsCommand, "NextToken", "NextToken", "Limit"); const paginateListCompute = core.createPaginator(GameLiftClient, ListComputeCommand, "NextToken", "NextToken", "Limit"); const paginateListContainerFleets = core.createPaginator(GameLiftClient, ListContainerFleetsCommand, "NextToken", "NextToken", "Limit"); const paginateListContainerGroupDefinitions = core.createPaginator(GameLiftClient, ListContainerGroupDefinitionsCommand, "NextToken", "NextToken", "Limit"); const paginateListContainerGroupDefinitionVersions = core.createPaginator(GameLiftClient, ListContainerGroupDefinitionVersionsCommand, "NextToken", "NextToken", "Limit"); const paginateListFleetDeployments = core.createPaginator(GameLiftClient, ListFleetDeploymentsCommand, "NextToken", "NextToken", "Limit"); const paginateListFleets = core.createPaginator(GameLiftClient, ListFleetsCommand, "NextToken", "NextToken", "Limit"); const paginateListGameServerGroups = core.createPaginator(GameLiftClient, ListGameServerGroupsCommand, "NextToken", "NextToken", "Limit"); const paginateListGameServers = core.createPaginator(GameLiftClient, ListGameServersCommand, "NextToken", "NextToken", "Limit"); const paginateListLocations = core.createPaginator(GameLiftClient, ListLocationsCommand, "NextToken", "NextToken", "Limit"); const paginateListScripts = core.createPaginator(GameLiftClient, ListScriptsCommand, "NextToken", "NextToken", "Limit"); const paginateSearchGameSessions = core.createPaginator(GameLiftClient, SearchGameSessionsCommand, "NextToken", "NextToken", "Limit"); const commands = {    AcceptMatchCommand,    ClaimGameServerCommand,    CreateAliasCommand,    CreateBuildCommand,    CreateContainerFleetCommand,    CreateContainerGroupDefinitionCommand,    CreateFleetCommand,    CreateFleetLocationsCommand,    CreateGameServerGroupCommand,    CreateGameSessionCommand,    CreateGameSessionQueueCommand,    CreateLocationCommand,    CreateMatchmakingConfigurationCommand,    CreateMatchmakingRuleSetCommand,    CreatePlayerSessionCommand,    CreatePlayerSessionsCommand,    CreateScriptCommand,    CreateVpcPeeringAuthorizationCommand,    CreateVpcPeeringConnectionCommand,    DeleteAliasCommand,    DeleteBuildCommand,    DeleteContainerFleetCommand,    DeleteContainerGroupDefinitionCommand,    DeleteFleetCommand,    DeleteFleetLocationsCommand,    DeleteGameServerGroupCommand,    DeleteGameSessionQueueCommand,    DeleteLocationCommand,    DeleteMatchmakingConfigurationCommand,    DeleteMatchmakingRuleSetCommand,    DeleteScalingPolicyCommand,    DeleteScriptCommand,    DeleteVpcPeeringAuthorizationCommand,    DeleteVpcPeeringConnectionCommand,    DeregisterComputeCommand,    DeregisterGameServerCommand,    DescribeAliasCommand,    DescribeBuildCommand,    DescribeComputeCommand,    DescribeContainerFleetCommand,    DescribeContainerGroupDefinitionCommand,    DescribeContainerGroupPortMappingsCommand,    DescribeEC2InstanceLimitsCommand,    DescribeFleetAttributesCommand,    DescribeFleetCapacityCommand,    DescribeFleetDeploymentCommand,    DescribeFleetEventsCommand,    DescribeFleetLocationAttributesCommand,    DescribeFleetLocationCapacityCommand,    DescribeFleetLocationUtilizationCommand,    DescribeFleetPortSettingsCommand,    DescribeFleetUtilizationCommand,    DescribeGameServerCommand,    DescribeGameServerGroupCommand,    DescribeGameServerInstancesCommand,    DescribeGameSessionDetailsCommand,    DescribeGameSessionPlacementCommand,    DescribeGameSessionQueuesCommand,    DescribeGameSessionsCommand,    DescribeInstancesCommand,    DescribeMatchmakingCommand,    DescribeMatchmakingConfigurationsCommand,    DescribeMatchmakingRuleSetsCommand,    DescribePlayerSessionsCommand,    DescribeRuntimeConfigurationCommand,    DescribeScalingPoliciesCommand,    DescribeScriptCommand,    DescribeVpcPeeringAuthorizationsCommand,    DescribeVpcPeeringConnectionsCommand,    GetComputeAccessCommand,    GetComputeAuthTokenCommand,    GetGameSessionLogUrlCommand,    GetInstanceAccessCommand,    GetPlayerConnectionDetailsCommand,    ListAliasesCommand,    ListBuildsCommand,    ListComputeCommand,    ListContainerFleetsCommand,    ListContainerGroupDefinitionsCommand,    ListContainerGroupDefinitionVersionsCommand,    ListFleetDeploymentsCommand,    ListFleetsCommand,    ListGameServerGroupsCommand,    ListGameServersCommand,    ListLocationsCommand,    ListScriptsCommand,    ListTagsForResourceCommand,    PutScalingPolicyCommand,    RegisterComputeCommand,    RegisterGameServerCommand,    RequestUploadCredentialsCommand,    ResolveAliasCommand,    ResumeGameServerGroupCommand,    SearchGameSessionsCommand,    StartFleetActionsCommand,    StartGameSessionPlacementCommand,    StartMatchBackfillCommand,    StartMatchmakingCommand,    StopFleetActionsCommand,    StopGameSessionPlacementCommand,    StopMatchmakingCommand,    SuspendGameServerGroupCommand,    TagResourceCommand,    TerminateGameSessionCommand,    UntagResourceCommand,    UpdateAliasCommand,    UpdateBuildCommand,    UpdateContainerFleetCommand,    UpdateContainerGroupDefinitionCommand,    UpdateFleetAttributesCommand,    UpdateFleetCapacityCommand,    UpdateFleetPortSettingsCommand,    UpdateGameServerCommand,    UpdateGameServerGroupCommand,    UpdateGameSessionCommand,    UpdateGameSessionQueueCommand,    UpdateMatchmakingConfigurationCommand,    UpdateRuntimeConfigurationCommand,    UpdateScriptCommand,    ValidateMatchmakingRuleSetCommand,};const paginators = {    paginateDescribeFleetAttributes,    paginateDescribeFleetCapacity,    paginateDescribeFleetEvents,    paginateDescribeFleetLocationAttributes,    paginateDescribeFleetUtilization,    paginateDescribeGameServerInstances,    paginateDescribeGameSessionDetails,    paginateDescribeGameSessionQueues,    paginateDescribeGameSessions,    paginateDescribeInstances,    paginateDescribeMatchmakingConfigurations,    paginateDescribeMatchmakingRuleSets,    paginateDescribePlayerSessions,    paginateDescribeScalingPolicies,    paginateListAliases,    paginateListBuilds,    paginateListCompute,    paginateListContainerFleets,    paginateListContainerGroupDefinitions,    paginateListContainerGroupDefinitionVersions,    paginateListFleetDeployments,    paginateListFleets,    paginateListGameServerGroups,    paginateListGameServers,    paginateListLocations,    paginateListScripts,    paginateSearchGameSessions,};class GameLift extends GameLiftClient {}client.createAggregatedClient(commands, GameLift, { paginators }); const AcceptanceType = {    ACCEPT: "ACCEPT",    REJECT: "REJECT",};const RoutingStrategyType = {    SIMPLE: "SIMPLE",    TERMINAL: "TERMINAL",};const BackfillMode = {    AUTOMATIC: "AUTOMATIC",    MANUAL: "MANUAL",};const BalancingStrategy = {    ON_DEMAND_ONLY: "ON_DEMAND_ONLY",    SPOT_ONLY: "SPOT_ONLY",    SPOT_PREFERRED: "SPOT_PREFERRED",};const OperatingSystem = {    AMAZON_LINUX: "AMAZON_LINUX",    AMAZON_LINUX_2: "AMAZON_LINUX_2",    AMAZON_LINUX_2023: "AMAZON_LINUX_2023",    WINDOWS_2012: "WINDOWS_2012",    WINDOWS_2016: "WINDOWS_2016",    WINDOWS_2022: "WINDOWS_2022",};const BuildStatus = {    FAILED: "FAILED",    INITIALIZED: "INITIALIZED",    READY: "READY",};const CertificateType = {    Disabled: "DISABLED",    Generated: "GENERATED",};const FilterInstanceStatus = {    ACTIVE: "ACTIVE",    DRAINING: "DRAINING",};const GameServerClaimStatus = {    CLAIMED: "CLAIMED",};const GameServerUtilizationStatus = {    AVAILABLE: "AVAILABLE",    UTILIZED: "UTILIZED",};const ComparisonOperatorType = {    GreaterThanOrEqualToThreshold: "GreaterThanOrEqualToThreshold",    GreaterThanThreshold: "GreaterThanThreshold",    LessThanOrEqualToThreshold: "LessThanOrEqualToThreshold",    LessThanThreshold: "LessThanThreshold",};const ComputeStatus = {    ACTIVE: "ACTIVE",    IMPAIRED: "IMPAIRED",    PENDING: "PENDING",    TERMINATING: "TERMINATING",};const EC2InstanceType = {    c3_2xlarge: "c3.2xlarge",    c3_4xlarge: "c3.4xlarge",    c3_8xlarge: "c3.8xlarge",    c3_large: "c3.large",    c3_xlarge: "c3.xlarge",    c4_2xlarge: "c4.2xlarge",    c4_4xlarge: "c4.4xlarge",    c4_8xlarge: "c4.8xlarge",    c4_large: "c4.large",    c4_xlarge: "c4.xlarge",    c5_12xlarge: "c5.12xlarge",    c5_18xlarge: "c5.18xlarge",    c5_24xlarge: "c5.24xlarge",    c5_2xlarge: "c5.2xlarge",    c5_4xlarge: "c5.4xlarge",    c5_9xlarge: "c5.9xlarge",    c5_large: "c5.large",    c5_xlarge: "c5.xlarge",    c5a_12xlarge: "c5a.12xlarge",    c5a_16xlarge: "c5a.16xlarge",    c5a_24xlarge: "c5a.24xlarge",    c5a_2xlarge: "c5a.2xlarge",    c5a_4xlarge: "c5a.4xlarge",    c5a_8xlarge: "c5a.8xlarge",    c5a_large: "c5a.large",    c5a_xlarge: "c5a.xlarge",    c5ad_12xlarge: "c5ad.12xlarge",    c5ad_16xlarge: "c5ad.16xlarge",    c5ad_24xlarge: "c5ad.24xlarge",    c5ad_2xlarge: "c5ad.2xlarge",    c5ad_4xlarge: "c5ad.4xlarge",    c5ad_8xlarge: "c5ad.8xlarge",    c5ad_large: "c5ad.large",    c5ad_xlarge: "c5ad.xlarge",    c5d_12xlarge: "c5d.12xlarge",    c5d_18xlarge: "c5d.18xlarge",    c5d_24xlarge: "c5d.24xlarge",    c5d_2xlarge: "c5d.2xlarge",    c5d_4xlarge: "c5d.4xlarge",    c5d_9xlarge: "c5d.9xlarge",    c5d_large: "c5d.large",    c5d_xlarge: "c5d.xlarge",    c5n_18xlarge: "c5n.18xlarge",    c5n_2xlarge: "c5n.2xlarge",    c5n_4xlarge: "c5n.4xlarge",    c5n_9xlarge: "c5n.9xlarge",    c5n_large: "c5n.large",    c5n_xlarge: "c5n.xlarge",    c6a_12xlarge: "c6a.12xlarge",    c6a_16xlarge: "c6a.16xlarge",    c6a_24xlarge: "c6a.24xlarge",    c6a_2xlarge: "c6a.2xlarge",    c6a_32xlarge: "c6a.32xlarge",    c6a_48xlarge: "c6a.48xlarge",    c6a_4xlarge: "c6a.4xlarge",    c6a_8xlarge: "c6a.8xlarge",    c6a_large: "c6a.large",    c6a_xlarge: "c6a.xlarge",    c6g_12xlarge: "c6g.12xlarge",    c6g_16xlarge: "c6g.16xlarge",    c6g_2xlarge: "c6g.2xlarge",    c6g_4xlarge: "c6g.4xlarge",    c6g_8xlarge: "c6g.8xlarge",    c6g_large: "c6g.large",    c6g_medium: "c6g.medium",    c6g_xlarge: "c6g.xlarge",    c6gd_12xlarge: "c6gd.12xlarge",    c6gd_16xlarge: "c6gd.16xlarge",    c6gd_2xlarge: "c6gd.2xlarge",    c6gd_4xlarge: "c6gd.4xlarge",    c6gd_8xlarge: "c6gd.8xlarge",    c6gd_large: "c6gd.large",    c6gd_medium: "c6gd.medium",    c6gd_xlarge: "c6gd.xlarge",    c6gn_12xlarge: "c6gn.12xlarge",    c6gn_16xlarge: "c6gn.16xlarge",    c6gn_2xlarge: "c6gn.2xlarge",    c6gn_4xlarge: "c6gn.4xlarge",    c6gn_8xlarge: "c6gn.8xlarge",    c6gn_large: "c6gn.large",    c6gn_medium: "c6gn.medium",    c6gn_xlarge: "c6gn.xlarge",    c6i_12xlarge: "c6i.12xlarge",    c6i_16xlarge: "c6i.16xlarge",    c6i_24xlarge: "c6i.24xlarge",    c6i_2xlarge: "c6i.2xlarge",    c6i_32xlarge: "c6i.32xlarge",    c6i_4xlarge: "c6i.4xlarge",    c6i_8xlarge: "c6i.8xlarge",    c6i_large: "c6i.large",    c6i_xlarge: "c6i.xlarge",    c6id_12xlarge: "c6id.12xlarge",    c6id_16xlarge: "c6id.16xlarge",    c6id_24xlarge: "c6id.24xlarge",    c6id_2xlarge: "c6id.2xlarge",    c6id_32xlarge: "c6id.32xlarge",    c6id_4xlarge: "c6id.4xlarge",    c6id_8xlarge: "c6id.8xlarge",    c6id_large: "c6id.large",    c6id_xlarge: "c6id.xlarge",    c6in_12xlarge: "c6in.12xlarge",    c6in_16xlarge: "c6in.16xlarge",    c6in_24xlarge: "c6in.24xlarge",    c6in_2xlarge: "c6in.2xlarge",    c6in_32xlarge: "c6in.32xlarge",    c6in_4xlarge: "c6in.4xlarge",    c6in_8xlarge: "c6in.8xlarge",    c6in_large: "c6in.large",    c6in_xlarge: "c6in.xlarge",    c7a_12xlarge: "c7a.12xlarge",    c7a_16xlarge: "c7a.16xlarge",    c7a_24xlarge: "c7a.24xlarge",    c7a_2xlarge: "c7a.2xlarge",    c7a_32xlarge: "c7a.32xlarge",    c7a_48xlarge: "c7a.48xlarge",    c7a_4xlarge: "c7a.4xlarge",    c7a_8xlarge: "c7a.8xlarge",    c7a_large: "c7a.large",    c7a_medium: "c7a.medium",    c7a_xlarge: "c7a.xlarge",    c7g_12xlarge: "c7g.12xlarge",    c7g_16xlarge: "c7g.16xlarge",    c7g_2xlarge: "c7g.2xlarge",    c7g_4xlarge: "c7g.4xlarge",    c7g_8xlarge: "c7g.8xlarge",    c7g_large: "c7g.large",    c7g_medium: "c7g.medium",    c7g_xlarge: "c7g.xlarge",    c7gd_12xlarge: "c7gd.12xlarge",    c7gd_16xlarge: "c7gd.16xlarge",    c7gd_2xlarge: "c7gd.2xlarge",    c7gd_4xlarge: "c7gd.4xlarge",    c7gd_8xlarge: "c7gd.8xlarge",    c7gd_large: "c7gd.large",    c7gd_medium: "c7gd.medium",    c7gd_xlarge: "c7gd.xlarge",    c7gn_12xlarge: "c7gn.12xlarge",    c7gn_16xlarge: "c7gn.16xlarge",    c7gn_2xlarge: "c7gn.2xlarge",    c7gn_4xlarge: "c7gn.4xlarge",    c7gn_8xlarge: "c7gn.8xlarge",    c7gn_large: "c7gn.large",    c7gn_medium: "c7gn.medium",    c7gn_xlarge: "c7gn.xlarge",    c7i_12xlarge: "c7i.12xlarge",    c7i_16xlarge: "c7i.16xlarge",    c7i_24xlarge: "c7i.24xlarge",    c7i_2xlarge: "c7i.2xlarge",    c7i_48xlarge: "c7i.48xlarge",    c7i_4xlarge: "c7i.4xlarge",    c7i_8xlarge: "c7i.8xlarge",    c7i_large: "c7i.large",    c7i_xlarge: "c7i.xlarge",    c8g_12xlarge: "c8g.12xlarge",    c8g_16xlarge: "c8g.16xlarge",    c8g_24xlarge: "c8g.24xlarge",    c8g_2xlarge: "c8g.2xlarge",    c8g_48xlarge: "c8g.48xlarge",    c8g_4xlarge: "c8g.4xlarge",    c8g_8xlarge: "c8g.8xlarge",    c8g_large: "c8g.large",    c8g_medium: "c8g.medium",    c8g_xlarge: "c8g.xlarge",    g5g_16xlarge: "g5g.16xlarge",    g5g_2xlarge: "g5g.2xlarge",    g5g_4xlarge: "g5g.4xlarge",    g5g_8xlarge: "g5g.8xlarge",    g5g_xlarge: "g5g.xlarge",    m3_2xlarge: "m3.2xlarge",    m3_large: "m3.large",    m3_medium: "m3.medium",    m3_xlarge: "m3.xlarge",    m4_10xlarge: "m4.10xlarge",    m4_16xlarge: "m4.16xlarge",    m4_2xlarge: "m4.2xlarge",    m4_4xlarge: "m4.4xlarge",    m4_large: "m4.large",    m4_xlarge: "m4.xlarge",    m5_12xlarge: "m5.12xlarge",    m5_16xlarge: "m5.16xlarge",    m5_24xlarge: "m5.24xlarge",    m5_2xlarge: "m5.2xlarge",    m5_4xlarge: "m5.4xlarge",    m5_8xlarge: "m5.8xlarge",    m5_large: "m5.large",    m5_xlarge: "m5.xlarge",    m5a_12xlarge: "m5a.12xlarge",    m5a_16xlarge: "m5a.16xlarge",    m5a_24xlarge: "m5a.24xlarge",    m5a_2xlarge: "m5a.2xlarge",    m5a_4xlarge: "m5a.4xlarge",    m5a_8xlarge: "m5a.8xlarge",    m5a_large: "m5a.large",    m5a_xlarge: "m5a.xlarge",    m5ad_12xlarge: "m5ad.12xlarge",    m5ad_16xlarge: "m5ad.16xlarge",    m5ad_24xlarge: "m5ad.24xlarge",    m5ad_2xlarge: "m5ad.2xlarge",    m5ad_4xlarge: "m5ad.4xlarge",    m5ad_8xlarge: "m5ad.8xlarge",    m5ad_large: "m5ad.large",    m5ad_xlarge: "m5ad.xlarge",    m5d_12xlarge: "m5d.12xlarge",    m5d_16xlarge: "m5d.16xlarge",    m5d_24xlarge: "m5d.24xlarge",    m5d_2xlarge: "m5d.2xlarge",    m5d_4xlarge: "m5d.4xlarge",    m5d_8xlarge: "m5d.8xlarge",    m5d_large: "m5d.large",    m5d_xlarge: "m5d.xlarge",    m5dn_12xlarge: "m5dn.12xlarge",    m5dn_16xlarge: "m5dn.16xlarge",    m5dn_24xlarge: "m5dn.24xlarge",    m5dn_2xlarge: "m5dn.2xlarge",    m5dn_4xlarge: "m5dn.4xlarge",    m5dn_8xlarge: "m5dn.8xlarge",    m5dn_large: "m5dn.large",    m5dn_xlarge: "m5dn.xlarge",    m5n_12xlarge: "m5n.12xlarge",    m5n_16xlarge: "m5n.16xlarge",    m5n_24xlarge: "m5n.24xlarge",    m5n_2xlarge: "m5n.2xlarge",    m5n_4xlarge: "m5n.4xlarge",    m5n_8xlarge: "m5n.8xlarge",    m5n_large: "m5n.large",    m5n_xlarge: "m5n.xlarge",    m6a_12xlarge: "m6a.12xlarge",    m6a_16xlarge: "m6a.16xlarge",    m6a_24xlarge: "m6a.24xlarge",    m6a_2xlarge: "m6a.2xlarge",    m6a_32xlarge: "m6a.32xlarge",    m6a_48xlarge: "m6a.48xlarge",    m6a_4xlarge: "m6a.4xlarge",    m6a_8xlarge: "m6a.8xlarge",    m6a_large: "m6a.large",    m6a_xlarge: "m6a.xlarge",    m6g_12xlarge: "m6g.12xlarge",    m6g_16xlarge: "m6g.16xlarge",    m6g_2xlarge: "m6g.2xlarge",    m6g_4xlarge: "m6g.4xlarge",    m6g_8xlarge: "m6g.8xlarge",    m6g_large: "m6g.large",    m6g_medium: "m6g.medium",    m6g_xlarge: "m6g.xlarge",    m6gd_12xlarge: "m6gd.12xlarge",    m6gd_16xlarge: "m6gd.16xlarge",    m6gd_2xlarge: "m6gd.2xlarge",    m6gd_4xlarge: "m6gd.4xlarge",    m6gd_8xlarge: "m6gd.8xlarge",    m6gd_large: "m6gd.large",    m6gd_medium: "m6gd.medium",    m6gd_xlarge: "m6gd.xlarge",    m6i_12xlarge: "m6i.12xlarge",    m6i_16xlarge: "m6i.16xlarge",    m6i_24xlarge: "m6i.24xlarge",    m6i_2xlarge: "m6i.2xlarge",    m6i_32xlarge: "m6i.32xlarge",    m6i_4xlarge: "m6i.4xlarge",    m6i_8xlarge: "m6i.8xlarge",    m6i_large: "m6i.large",    m6i_xlarge: "m6i.xlarge",    m6id_12xlarge: "m6id.12xlarge",    m6id_16xlarge: "m6id.16xlarge",    m6id_24xlarge: "m6id.24xlarge",    m6id_2xlarge: "m6id.2xlarge",    m6id_32xlarge: "m6id.32xlarge",    m6id_4xlarge: "m6id.4xlarge",    m6id_8xlarge: "m6id.8xlarge",    m6id_large: "m6id.large",    m6id_xlarge: "m6id.xlarge",    m6idn_12xlarge: "m6idn.12xlarge",    m6idn_16xlarge: "m6idn.16xlarge",    m6idn_24xlarge: "m6idn.24xlarge",    m6idn_2xlarge: "m6idn.2xlarge",    m6idn_32xlarge: "m6idn.32xlarge",    m6idn_4xlarge: "m6idn.4xlarge",    m6idn_8xlarge: "m6idn.8xlarge",    m6idn_large: "m6idn.large",    m6idn_xlarge: "m6idn.xlarge",    m6in_12xlarge: "m6in.12xlarge",    m6in_16xlarge: "m6in.16xlarge",    m6in_24xlarge: "m6in.24xlarge",    m6in_2xlarge: "m6in.2xlarge",    m6in_32xlarge: "m6in.32xlarge",    m6in_4xlarge: "m6in.4xlarge",    m6in_8xlarge: "m6in.8xlarge",    m6in_large: "m6in.large",    m6in_xlarge: "m6in.xlarge",    m7a_12xlarge: "m7a.12xlarge",    m7a_16xlarge: "m7a.16xlarge",    m7a_24xlarge: "m7a.24xlarge",    m7a_2xlarge: "m7a.2xlarge",    m7a_32xlarge: "m7a.32xlarge",    m7a_48xlarge: "m7a.48xlarge",    m7a_4xlarge: "m7a.4xlarge",    m7a_8xlarge: "m7a.8xlarge",    m7a_large: "m7a.large",    m7a_medium: "m7a.medium",    m7a_xlarge: "m7a.xlarge",    m7g_12xlarge: "m7g.12xlarge",    m7g_16xlarge: "m7g.16xlarge",    m7g_2xlarge: "m7g.2xlarge",    m7g_4xlarge: "m7g.4xlarge",    m7g_8xlarge: "m7g.8xlarge",    m7g_large: "m7g.large",    m7g_medium: "m7g.medium",    m7g_xlarge: "m7g.xlarge",    m7gd_12xlarge: "m7gd.12xlarge",    m7gd_16xlarge: "m7gd.16xlarge",    m7gd_2xlarge: "m7gd.2xlarge",    m7gd_4xlarge: "m7gd.4xlarge",    m7gd_8xlarge: "m7gd.8xlarge",    m7gd_large: "m7gd.large",    m7gd_medium: "m7gd.medium",    m7gd_xlarge: "m7gd.xlarge",    m7i_12xlarge: "m7i.12xlarge",    m7i_16xlarge: "m7i.16xlarge",    m7i_24xlarge: "m7i.24xlarge",    m7i_2xlarge: "m7i.2xlarge",    m7i_48xlarge: "m7i.48xlarge",    m7i_4xlarge: "m7i.4xlarge",    m7i_8xlarge: "m7i.8xlarge",    m7i_large: "m7i.large",    m7i_xlarge: "m7i.xlarge",    m8g_12xlarge: "m8g.12xlarge",    m8g_16xlarge: "m8g.16xlarge",    m8g_24xlarge: "m8g.24xlarge",    m8g_2xlarge: "m8g.2xlarge",    m8g_48xlarge: "m8g.48xlarge",    m8g_4xlarge: "m8g.4xlarge",    m8g_8xlarge: "m8g.8xlarge",    m8g_large: "m8g.large",    m8g_medium: "m8g.medium",    m8g_xlarge: "m8g.xlarge",    r3_2xlarge: "r3.2xlarge",    r3_4xlarge: "r3.4xlarge",    r3_8xlarge: "r3.8xlarge",    r3_large: "r3.large",    r3_xlarge: "r3.xlarge",    r4_16xlarge: "r4.16xlarge",    r4_2xlarge: "r4.2xlarge",    r4_4xlarge: "r4.4xlarge",    r4_8xlarge: "r4.8xlarge",    r4_large: "r4.large",    r4_xlarge: "r4.xlarge",    r5_12xlarge: "r5.12xlarge",    r5_16xlarge: "r5.16xlarge",    r5_24xlarge: "r5.24xlarge",    r5_2xlarge: "r5.2xlarge",    r5_4xlarge: "r5.4xlarge",    r5_8xlarge: "r5.8xlarge",    r5_large: "r5.large",    r5_xlarge: "r5.xlarge",    r5a_12xlarge: "r5a.12xlarge",    r5a_16xlarge: "r5a.16xlarge",    r5a_24xlarge: "r5a.24xlarge",    r5a_2xlarge: "r5a.2xlarge",    r5a_4xlarge: "r5a.4xlarge",    r5a_8xlarge: "r5a.8xlarge",    r5a_large: "r5a.large",    r5a_xlarge: "r5a.xlarge",    r5ad_12xlarge: "r5ad.12xlarge",    r5ad_16xlarge: "r5ad.16xlarge",    r5ad_24xlarge: "r5ad.24xlarge",    r5ad_2xlarge: "r5ad.2xlarge",    r5ad_4xlarge: "r5ad.4xlarge",    r5ad_8xlarge: "r5ad.8xlarge",    r5ad_large: "r5ad.large",    r5ad_xlarge: "r5ad.xlarge",    r5d_12xlarge: "r5d.12xlarge",    r5d_16xlarge: "r5d.16xlarge",    r5d_24xlarge: "r5d.24xlarge",    r5d_2xlarge: "r5d.2xlarge",    r5d_4xlarge: "r5d.4xlarge",    r5d_8xlarge: "r5d.8xlarge",    r5d_large: "r5d.large",    r5d_xlarge: "r5d.xlarge",    r5dn_12xlarge: "r5dn.12xlarge",    r5dn_16xlarge: "r5dn.16xlarge",    r5dn_24xlarge: "r5dn.24xlarge",    r5dn_2xlarge: "r5dn.2xlarge",    r5dn_4xlarge: "r5dn.4xlarge",    r5dn_8xlarge: "r5dn.8xlarge",    r5dn_large: "r5dn.large",    r5dn_xlarge: "r5dn.xlarge",    r5n_12xlarge: "r5n.12xlarge",    r5n_16xlarge: "r5n.16xlarge",    r5n_24xlarge: "r5n.24xlarge",    r5n_2xlarge: "r5n.2xlarge",    r5n_4xlarge: "r5n.4xlarge",    r5n_8xlarge: "r5n.8xlarge",    r5n_large: "r5n.large",    r5n_xlarge: "r5n.xlarge",    r6a_12xlarge: "r6a.12xlarge",    r6a_16xlarge: "r6a.16xlarge",    r6a_24xlarge: "r6a.24xlarge",    r6a_2xlarge: "r6a.2xlarge",    r6a_32xlarge: "r6a.32xlarge",    r6a_48xlarge: "r6a.48xlarge",    r6a_4xlarge: "r6a.4xlarge",    r6a_8xlarge: "r6a.8xlarge",    r6a_large: "r6a.large",    r6a_xlarge: "r6a.xlarge",    r6g_12xlarge: "r6g.12xlarge",    r6g_16xlarge: "r6g.16xlarge",    r6g_2xlarge: "r6g.2xlarge",    r6g_4xlarge: "r6g.4xlarge",    r6g_8xlarge: "r6g.8xlarge",    r6g_large: "r6g.large",    r6g_medium: "r6g.medium",    r6g_xlarge: "r6g.xlarge",    r6gd_12xlarge: "r6gd.12xlarge",    r6gd_16xlarge: "r6gd.16xlarge",    r6gd_2xlarge: "r6gd.2xlarge",    r6gd_4xlarge: "r6gd.4xlarge",    r6gd_8xlarge: "r6gd.8xlarge",    r6gd_large: "r6gd.large",    r6gd_medium: "r6gd.medium",    r6gd_xlarge: "r6gd.xlarge",    r6i_12xlarge: "r6i.12xlarge",    r6i_16xlarge: "r6i.16xlarge",    r6i_24xlarge: "r6i.24xlarge",    r6i_2xlarge: "r6i.2xlarge",    r6i_32xlarge: "r6i.32xlarge",    r6i_4xlarge: "r6i.4xlarge",    r6i_8xlarge: "r6i.8xlarge",    r6i_large: "r6i.large",    r6i_xlarge: "r6i.xlarge",    r6id_12xlarge: "r6id.12xlarge",    r6id_16xlarge: "r6id.16xlarge",    r6id_24xlarge: "r6id.24xlarge",    r6id_2xlarge: "r6id.2xlarge",    r6id_32xlarge: "r6id.32xlarge",    r6id_4xlarge: "r6id.4xlarge",    r6id_8xlarge: "r6id.8xlarge",    r6id_large: "r6id.large",    r6id_xlarge: "r6id.xlarge",    r6idn_12xlarge: "r6idn.12xlarge",    r6idn_16xlarge: "r6idn.16xlarge",    r6idn_24xlarge: "r6idn.24xlarge",    r6idn_2xlarge: "r6idn.2xlarge",    r6idn_32xlarge: "r6idn.32xlarge",    r6idn_4xlarge: "r6idn.4xlarge",    r6idn_8xlarge: "r6idn.8xlarge",    r6idn_large: "r6idn.large",    r6idn_xlarge: "r6idn.xlarge",    r6in_12xlarge: "r6in.12xlarge",    r6in_16xlarge: "r6in.16xlarge",    r6in_24xlarge: "r6in.24xlarge",    r6in_2xlarge: "r6in.2xlarge",    r6in_32xlarge: "r6in.32xlarge",    r6in_4xlarge: "r6in.4xlarge",    r6in_8xlarge: "r6in.8xlarge",    r6in_large: "r6in.large",    r6in_xlarge: "r6in.xlarge",    r7a_12xlarge: "r7a.12xlarge",    r7a_16xlarge: "r7a.16xlarge",    r7a_24xlarge: "r7a.24xlarge",    r7a_2xlarge: "r7a.2xlarge",    r7a_32xlarge: "r7a.32xlarge",    r7a_48xlarge: "r7a.48xlarge",    r7a_4xlarge: "r7a.4xlarge",    r7a_8xlarge: "r7a.8xlarge",    r7a_large: "r7a.large",    r7a_medium: "r7a.medium",    r7a_xlarge: "r7a.xlarge",    r7g_12xlarge: "r7g.12xlarge",    r7g_16xlarge: "r7g.16xlarge",    r7g_2xlarge: "r7g.2xlarge",    r7g_4xlarge: "r7g.4xlarge",    r7g_8xlarge: "r7g.8xlarge",    r7g_large: "r7g.large",    r7g_medium: "r7g.medium",    r7g_xlarge: "r7g.xlarge",    r7gd_12xlarge: "r7gd.12xlarge",    r7gd_16xlarge: "r7gd.16xlarge",    r7gd_2xlarge: "r7gd.2xlarge",    r7gd_4xlarge: "r7gd.4xlarge",    r7gd_8xlarge: "r7gd.8xlarge",    r7gd_large: "r7gd.large",    r7gd_medium: "r7gd.medium",    r7gd_xlarge: "r7gd.xlarge",    r7i_12xlarge: "r7i.12xlarge",    r7i_16xlarge: "r7i.16xlarge",    r7i_24xlarge: "r7i.24xlarge",    r7i_2xlarge: "r7i.2xlarge",    r7i_48xlarge: "r7i.48xlarge",    r7i_4xlarge: "r7i.4xlarge",    r7i_8xlarge: "r7i.8xlarge",    r7i_large: "r7i.large",    r7i_xlarge: "r7i.xlarge",    r8g_12xlarge: "r8g.12xlarge",    r8g_16xlarge: "r8g.16xlarge",    r8g_24xlarge: "r8g.24xlarge",    r8g_2xlarge: "r8g.2xlarge",    r8g_48xlarge: "r8g.48xlarge",    r8g_4xlarge: "r8g.4xlarge",    r8g_8xlarge: "r8g.8xlarge",    r8g_large: "r8g.large",    r8g_medium: "r8g.medium",    r8g_xlarge: "r8g.xlarge",    t2_large: "t2.large",    t2_medium: "t2.medium",    t2_micro: "t2.micro",    t2_small: "t2.small",};const ComputeType = {    ANYWHERE: "ANYWHERE",    EC2: "EC2",};const ContainerDependencyCondition = {    COMPLETE: "COMPLETE",    HEALTHY: "HEALTHY",    START: "START",    SUCCESS: "SUCCESS",};const ContainerFleetBillingType = {    ON_DEMAND: "ON_DEMAND",    SPOT: "SPOT",};const IpProtocol = {    TCP: "TCP",    UDP: "UDP",};const PlayerGatewayStatus = {    DISABLED: "DISABLED",    ENABLED: "ENABLED",};const ContainerFleetLocationStatus = {    ACTIVATING: "ACTIVATING",    ACTIVE: "ACTIVE",    CREATED: "CREATED",    CREATING: "CREATING",    DELETING: "DELETING",    PENDING: "PENDING",    UPDATING: "UPDATING",};const LogDestination = {    CLOUDWATCH: "CLOUDWATCH",    NONE: "NONE",    S3: "S3",};const ProtectionPolicy = {    FullProtection: "FullProtection",    NoProtection: "NoProtection",};const PlayerGatewayMode = {    DISABLED: "DISABLED",    ENABLED: "ENABLED",    REQUIRED: "REQUIRED",};const ContainerFleetStatus = {    ACTIVATING: "ACTIVATING",    ACTIVE: "ACTIVE",    CREATED: "CREATED",    CREATING: "CREATING",    DELETING: "DELETING",    PENDING: "PENDING",    UPDATING: "UPDATING",};const ContainerFleetRemoveAttribute = {    PER_INSTANCE_CONTAINER_GROUP_DEFINITION: "PER_INSTANCE_CONTAINER_GROUP_DEFINITION",};const ContainerGroupType = {    GAME_SERVER: "GAME_SERVER",    PER_INSTANCE: "PER_INSTANCE",};const ContainerMountPointAccessLevel = {    READ_AND_WRITE: "READ_AND_WRITE",    READ_ONLY: "READ_ONLY",};const ContainerOperatingSystem = {    AMAZON_LINUX_2023: "AMAZON_LINUX_2023",};const ContainerGroupDefinitionStatus = {    COPYING: "COPYING",    FAILED: "FAILED",    READY: "READY",};const FleetType = {    OnDemand: "ON_DEMAND",    Spot: "SPOT",};const InstanceRoleCredentialsProvider = {    SHARED_CREDENTIAL_FILE: "SHARED_CREDENTIAL_FILE",};const GameServerIpProtocolSupported = {    DUAL_STACK: "DUAL_STACK",    IPv4: "IPv4",};const FleetStatus = {    ACTIVATING: "ACTIVATING",    ACTIVE: "ACTIVE",    BUILDING: "BUILDING",    DELETING: "DELETING",    DOWNLOADING: "DOWNLOADING",    ERROR: "ERROR",    NEW: "NEW",    NOT_FOUND: "NOT_FOUND",    TERMINATED: "TERMINATED",    VALIDATING: "VALIDATING",};const FleetAction = {    AutoScaling: "AUTO_SCALING",};const GameServerProtectionPolicy = {    FULL_PROTECTION: "FULL_PROTECTION",    NO_PROTECTION: "NO_PROTECTION",};const GameServerGroupInstanceType = {    c4_2xlarge: "c4.2xlarge",    c4_4xlarge: "c4.4xlarge",    c4_8xlarge: "c4.8xlarge",    c4_large: "c4.large",    c4_xlarge: "c4.xlarge",    c5_12xlarge: "c5.12xlarge",    c5_18xlarge: "c5.18xlarge",    c5_24xlarge: "c5.24xlarge",    c5_2xlarge: "c5.2xlarge",    c5_4xlarge: "c5.4xlarge",    c5_9xlarge: "c5.9xlarge",    c5_large: "c5.large",    c5_xlarge: "c5.xlarge",    c5a_12xlarge: "c5a.12xlarge",    c5a_16xlarge: "c5a.16xlarge",    c5a_24xlarge: "c5a.24xlarge",    c5a_2xlarge: "c5a.2xlarge",    c5a_4xlarge: "c5a.4xlarge",    c5a_8xlarge: "c5a.8xlarge",    c5a_large: "c5a.large",    c5a_xlarge: "c5a.xlarge",    c6g_12xlarge: "c6g.12xlarge",    c6g_16xlarge: "c6g.16xlarge",    c6g_2xlarge: "c6g.2xlarge",    c6g_4xlarge: "c6g.4xlarge",    c6g_8xlarge: "c6g.8xlarge",    c6g_large: "c6g.large",    c6g_medium: "c6g.medium",    c6g_xlarge: "c6g.xlarge",    m4_10xlarge: "m4.10xlarge",    m4_2xlarge: "m4.2xlarge",    m4_4xlarge: "m4.4xlarge",    m4_large: "m4.large",    m4_xlarge: "m4.xlarge",    m5_12xlarge: "m5.12xlarge",    m5_16xlarge: "m5.16xlarge",    m5_24xlarge: "m5.24xlarge",    m5_2xlarge: "m5.2xlarge",    m5_4xlarge: "m5.4xlarge",    m5_8xlarge: "m5.8xlarge",    m5_large: "m5.large",    m5_xlarge: "m5.xlarge",    m5a_12xlarge: "m5a.12xlarge",    m5a_16xlarge: "m5a.16xlarge",    m5a_24xlarge: "m5a.24xlarge",    m5a_2xlarge: "m5a.2xlarge",    m5a_4xlarge: "m5a.4xlarge",    m5a_8xlarge: "m5a.8xlarge",    m5a_large: "m5a.large",    m5a_xlarge: "m5a.xlarge",    m6g_12xlarge: "m6g.12xlarge",    m6g_16xlarge: "m6g.16xlarge",    m6g_2xlarge: "m6g.2xlarge",    m6g_4xlarge: "m6g.4xlarge",    m6g_8xlarge: "m6g.8xlarge",    m6g_large: "m6g.large",    m6g_medium: "m6g.medium",    m6g_xlarge: "m6g.xlarge",    r4_16xlarge: "r4.16xlarge",    r4_2xlarge: "r4.2xlarge",    r4_4xlarge: "r4.4xlarge",    r4_8xlarge: "r4.8xlarge",    r4_large: "r4.large",    r4_xlarge: "r4.xlarge",    r5_12xlarge: "r5.12xlarge",    r5_16xlarge: "r5.16xlarge",    r5_24xlarge: "r5.24xlarge",    r5_2xlarge: "r5.2xlarge",    r5_4xlarge: "r5.4xlarge",    r5_8xlarge: "r5.8xlarge",    r5_large: "r5.large",    r5_xlarge: "r5.xlarge",    r5a_12xlarge: "r5a.12xlarge",    r5a_16xlarge: "r5a.16xlarge",    r5a_24xlarge: "r5a.24xlarge",    r5a_2xlarge: "r5a.2xlarge",    r5a_4xlarge: "r5a.4xlarge",    r5a_8xlarge: "r5a.8xlarge",    r5a_large: "r5a.large",    r5a_xlarge: "r5a.xlarge",    r6g_12xlarge: "r6g.12xlarge",    r6g_16xlarge: "r6g.16xlarge",    r6g_2xlarge: "r6g.2xlarge",    r6g_4xlarge: "r6g.4xlarge",    r6g_8xlarge: "r6g.8xlarge",    r6g_large: "r6g.large",    r6g_medium: "r6g.medium",    r6g_xlarge: "r6g.xlarge",};const GameServerGroupStatus = {    ACTIVATING: "ACTIVATING",    ACTIVE: "ACTIVE",    DELETED: "DELETED",    DELETE_SCHEDULED: "DELETE_SCHEDULED",    DELETING: "DELETING",    ERROR: "ERROR",    NEW: "NEW",};const GameServerGroupAction = {    REPLACE_INSTANCE_TYPES: "REPLACE_INSTANCE_TYPES",};const PlayerSessionCreationPolicy = {    ACCEPT_ALL: "ACCEPT_ALL",    DENY_ALL: "DENY_ALL",};const GameSessionStatus = {    ACTIVATING: "ACTIVATING",    ACTIVE: "ACTIVE",    ERROR: "ERROR",    TERMINATED: "TERMINATED",    TERMINATING: "TERMINATING",};const GameSessionStatusReason = {    FORCE_TERMINATED: "FORCE_TERMINATED",    INTERRUPTED: "INTERRUPTED",    TRIGGERED_ON_PROCESS_TERMINATE: "TRIGGERED_ON_PROCESS_TERMINATE",};const PriorityType = {    COST: "COST",    DESTINATION: "DESTINATION",    LATENCY: "LATENCY",    LOCATION: "LOCATION",};const FlexMatchMode = {    STANDALONE: "STANDALONE",    WITH_QUEUE: "WITH_QUEUE",};const PlayerSessionStatus = {    ACTIVE: "ACTIVE",    COMPLETED: "COMPLETED",    RESERVED: "RESERVED",    TIMEDOUT: "TIMEDOUT",};const GameServerGroupDeleteOption = {    FORCE_DELETE: "FORCE_DELETE",    RETAIN: "RETAIN",    SAFE_DELETE: "SAFE_DELETE",};const DeploymentImpairmentStrategy = {    MAINTAIN: "MAINTAIN",    ROLLBACK: "ROLLBACK",};const DeploymentProtectionStrategy = {    IGNORE_PROTECTION: "IGNORE_PROTECTION",    WITH_PROTECTION: "WITH_PROTECTION",};const DeploymentStatus = {    CANCELLED: "CANCELLED",    COMPLETE: "COMPLETE",    IMPAIRED: "IMPAIRED",    IN_PROGRESS: "IN_PROGRESS",    PENDING: "PENDING",    ROLLBACK_COMPLETE: "ROLLBACK_COMPLETE",    ROLLBACK_IN_PROGRESS: "ROLLBACK_IN_PROGRESS",};const ZeroCapacityStrategy = {    MANUAL: "MANUAL",    SCALE_TO_AND_FROM_ZERO: "SCALE_TO_AND_FROM_ZERO",};const EventCode = {    COMPUTE_LOG_UPLOAD_FAILED: "COMPUTE_LOG_UPLOAD_FAILED",    FLEET_ACTIVATION_FAILED: "FLEET_ACTIVATION_FAILED",    FLEET_ACTIVATION_FAILED_NO_INSTANCES: "FLEET_ACTIVATION_FAILED_NO_INSTANCES",    FLEET_BINARY_DOWNLOAD_FAILED: "FLEET_BINARY_DOWNLOAD_FAILED",    FLEET_CREATED: "FLEET_CREATED",    FLEET_CREATION_COMPLETED_INSTALLER: "FLEET_CREATION_COMPLETED_INSTALLER",    FLEET_CREATION_EXTRACTING_BUILD: "FLEET_CREATION_EXTRACTING_BUILD",    FLEET_CREATION_FAILED_INSTALLER: "FLEET_CREATION_FAILED_INSTALLER",    FLEET_CREATION_RUNNING_INSTALLER: "FLEET_CREATION_RUNNING_INSTALLER",    FLEET_CREATION_VALIDATING_RUNTIME_CONFIG: "FLEET_CREATION_VALIDATING_RUNTIME_CONFIG",    FLEET_DELETED: "FLEET_DELETED",    FLEET_INITIALIZATION_FAILED: "FLEET_INITIALIZATION_FAILED",    FLEET_NEW_GAME_SESSION_PROTECTION_POLICY_UPDATED: "FLEET_NEW_GAME_SESSION_PROTECTION_POLICY_UPDATED",    FLEET_SCALING_EVENT: "FLEET_SCALING_EVENT",    FLEET_STATE_ACTIVATING: "FLEET_STATE_ACTIVATING",    FLEET_STATE_ACTIVE: "FLEET_STATE_ACTIVE",    FLEET_STATE_BUILDING: "FLEET_STATE_BUILDING",    FLEET_STATE_CREATED: "FLEET_STATE_CREATED",    FLEET_STATE_CREATING: "FLEET_STATE_CREATING",    FLEET_STATE_DOWNLOADING: "FLEET_STATE_DOWNLOADING",    FLEET_STATE_ERROR: "FLEET_STATE_ERROR",    FLEET_STATE_PENDING: "FLEET_STATE_PENDING",    FLEET_STATE_UPDATING: "FLEET_STATE_UPDATING",    FLEET_STATE_VALIDATING: "FLEET_STATE_VALIDATING",    FLEET_VALIDATION_EXECUTABLE_RUNTIME_FAILURE: "FLEET_VALIDATION_EXECUTABLE_RUNTIME_FAILURE",    FLEET_VALIDATION_LAUNCH_PATH_NOT_FOUND: "FLEET_VALIDATION_LAUNCH_PATH_NOT_FOUND",    FLEET_VALIDATION_TIMED_OUT: "FLEET_VALIDATION_TIMED_OUT",    FLEET_VPC_PEERING_DELETED: "FLEET_VPC_PEERING_DELETED",    FLEET_VPC_PEERING_FAILED: "FLEET_VPC_PEERING_FAILED",    FLEET_VPC_PEERING_SUCCEEDED: "FLEET_VPC_PEERING_SUCCEEDED",    GAME_SERVER_CONTAINER_GROUP_CRASHED: "GAME_SERVER_CONTAINER_GROUP_CRASHED",    GAME_SERVER_CONTAINER_GROUP_REPLACED_UNHEALTHY: "GAME_SERVER_CONTAINER_GROUP_REPLACED_UNHEALTHY",    GAME_SESSION_ACTIVATION_TIMEOUT: "GAME_SESSION_ACTIVATION_TIMEOUT",    GENERIC_EVENT: "GENERIC_EVENT",    INSTANCE_INTERRUPTED: "INSTANCE_INTERRUPTED",    INSTANCE_RECYCLED: "INSTANCE_RECYCLED",    INSTANCE_REPLACED_UNHEALTHY: "INSTANCE_REPLACED_UNHEALTHY",    LOCATION_STATE_ACTIVATING: "LOCATION_STATE_ACTIVATING",    LOCATION_STATE_ACTIVE: "LOCATION_STATE_ACTIVE",    LOCATION_STATE_CREATED: "LOCATION_STATE_CREATED",    LOCATION_STATE_CREATING: "LOCATION_STATE_CREATING",    LOCATION_STATE_DELETED: "LOCATION_STATE_DELETED",    LOCATION_STATE_DELETING: "LOCATION_STATE_DELETING",    LOCATION_STATE_ERROR: "LOCATION_STATE_ERROR",    LOCATION_STATE_PENDING: "LOCATION_STATE_PENDING",    LOCATION_STATE_UPDATING: "LOCATION_STATE_UPDATING",    PER_INSTANCE_CONTAINER_GROUP_CRASHED: "PER_INSTANCE_CONTAINER_GROUP_CRASHED",    SERVER_PROCESS_CRASHED: "SERVER_PROCESS_CRASHED",    SERVER_PROCESS_FORCE_TERMINATED: "SERVER_PROCESS_FORCE_TERMINATED",    SERVER_PROCESS_INVALID_PATH: "SERVER_PROCESS_INVALID_PATH",    SERVER_PROCESS_MISCONFIGURED_CONTAINER_PORT: "SERVER_PROCESS_MISCONFIGURED_CONTAINER_PORT",    SERVER_PROCESS_PROCESS_EXIT_TIMEOUT: "SERVER_PROCESS_PROCESS_EXIT_TIMEOUT",    SERVER_PROCESS_PROCESS_READY_TIMEOUT: "SERVER_PROCESS_PROCESS_READY_TIMEOUT",    SERVER_PROCESS_SDK_INITIALIZATION_FAILED: "SERVER_PROCESS_SDK_INITIALIZATION_FAILED",    SERVER_PROCESS_SDK_INITIALIZATION_TIMEOUT: "SERVER_PROCESS_SDK_INITIALIZATION_TIMEOUT",    SERVER_PROCESS_TERMINATED_UNHEALTHY: "SERVER_PROCESS_TERMINATED_UNHEALTHY",};const LocationUpdateStatus = {    PENDING_UPDATE: "PENDING_UPDATE",};const GameServerInstanceStatus = {    ACTIVE: "ACTIVE",    DRAINING: "DRAINING",    SPOT_TERMINATING: "SPOT_TERMINATING",};const PlacementFallbackStrategy = {    DEFAULT_AFTER_SINGLE_PASS: "DEFAULT_AFTER_SINGLE_PASS",    NONE: "NONE",};const GameSessionPlacementState = {    CANCELLED: "CANCELLED",    FAILED: "FAILED",    FULFILLED: "FULFILLED",    PENDING: "PENDING",    TIMED_OUT: "TIMED_OUT",};const InstanceStatus = {    ACTIVE: "ACTIVE",    PENDING: "PENDING",    TERMINATING: "TERMINATING",};const MatchmakingConfigurationStatus = {    CANCELLED: "CANCELLED",    COMPLETED: "COMPLETED",    FAILED: "FAILED",    PLACING: "PLACING",    QUEUED: "QUEUED",    REQUIRES_ACCEPTANCE: "REQUIRES_ACCEPTANCE",    SEARCHING: "SEARCHING",    TIMED_OUT: "TIMED_OUT",};const ScalingStatusType = {    ACTIVE: "ACTIVE",    DELETED: "DELETED",    DELETE_REQUESTED: "DELETE_REQUESTED",    DELETING: "DELETING",    ERROR: "ERROR",    UPDATE_REQUESTED: "UPDATE_REQUESTED",    UPDATING: "UPDATING",};const MetricName = {    ActivatingGameSessions: "ActivatingGameSessions",    ActiveGameSessions: "ActiveGameSessions",    ActiveInstances: "ActiveInstances",    AvailableGameSessions: "AvailableGameSessions",    AvailablePlayerSessions: "AvailablePlayerSessions",    ConcurrentActivatableGameSessions: "ConcurrentActivatableGameSessions",    CurrentPlayerSessions: "CurrentPlayerSessions",    IdleInstances: "IdleInstances",    PercentAvailableGameSessions: "PercentAvailableGameSessions",    PercentIdleInstances: "PercentIdleInstances",    QueueDepth: "QueueDepth",    WaitTime: "WaitTime",};const PolicyType = {    RuleBased: "RuleBased",    TargetBased: "TargetBased",};const ScalingAdjustmentType = {    ChangeInCapacity: "ChangeInCapacity",    ExactCapacity: "ExactCapacity",    PercentChangeInCapacity: "PercentChangeInCapacity",};const ListComputeInputStatus = {    ACTIVE: "ACTIVE",    IMPAIRED: "IMPAIRED",};const SortOrder = {    ASCENDING: "ASCENDING",    DESCENDING: "DESCENDING",};const LocationFilter = {    AWS: "AWS",    CUSTOM: "CUSTOM",};const TerminationMode = {    FORCE_TERMINATE: "FORCE_TERMINATE",    TRIGGER_ON_PROCESS_TERMINATE: "TRIGGER_ON_PROCESS_TERMINATE",};const GameServerHealthCheck = {    HEALTHY: "HEALTHY",}; exports.$Command = client.Command;exports.__Client = client.Client;exports.GameLiftServiceException = GameLiftServiceException.GameLiftServiceException;exports.AcceptMatchCommand = AcceptMatchCommand;exports.AcceptanceType = AcceptanceType;exports.BackfillMode = BackfillMode;exports.BalancingStrategy = BalancingStrategy;exports.BuildStatus = BuildStatus;exports.CertificateType = CertificateType;exports.ClaimGameServerCommand = ClaimGameServerCommand;exports.ComparisonOperatorType = ComparisonOperatorType;exports.ComputeStatus = ComputeStatus;exports.ComputeType = ComputeType;exports.ContainerDependencyCondition = ContainerDependencyCondition;exports.ContainerFleetBillingType = ContainerFleetBillingType;exports.ContainerFleetLocationStatus = ContainerFleetLocationStatus;exports.ContainerFleetRemoveAttribute = ContainerFleetRemoveAttribute;exports.ContainerFleetStatus = ContainerFleetStatus;exports.ContainerGroupDefinitionStatus = ContainerGroupDefinitionStatus;exports.ContainerGroupType = ContainerGroupType;exports.ContainerMountPointAccessLevel = ContainerMountPointAccessLevel;exports.ContainerOperatingSystem = ContainerOperatingSystem;exports.CreateAliasCommand = CreateAliasCommand;exports.CreateBuildCommand = CreateBuildCommand;exports.CreateContainerFleetCommand = CreateContainerFleetCommand;exports.CreateContainerGroupDefinitionCommand = CreateContainerGroupDefinitionCommand;exports.CreateFleetCommand = CreateFleetCommand;exports.CreateFleetLocationsCommand = CreateFleetLocationsCommand;exports.CreateGameServerGroupCommand = CreateGameServerGroupCommand;exports.CreateGameSessionCommand = CreateGameSessionCommand;exports.CreateGameSessionQueueCommand = CreateGameSessionQueueCommand;exports.CreateLocationCommand = CreateLocationCommand;exports.CreateMatchmakingConfigurationCommand = CreateMatchmakingConfigurationCommand;exports.CreateMatchmakingRuleSetCommand = CreateMatchmakingRuleSetCommand;exports.CreatePlayerSessionCommand = CreatePlayerSessionCommand;exports.CreatePlayerSessionsCommand = CreatePlayerSessionsCommand;exports.CreateScriptCommand = CreateScriptCommand;exports.CreateVpcPeeringAuthorizationCommand = CreateVpcPeeringAuthorizationCommand;exports.CreateVpcPeeringConnectionCommand = CreateVpcPeeringConnectionCommand;exports.DeleteAliasCommand = DeleteAliasCommand;exports.DeleteBuildCommand = DeleteBuildCommand;exports.DeleteContainerFleetCommand = DeleteContainerFleetCommand;exports.DeleteContainerGroupDefinitionCommand = DeleteContainerGroupDefinitionCommand;exports.DeleteFleetCommand = DeleteFleetCommand;exports.DeleteFleetLocationsCommand = DeleteFleetLocationsCommand;exports.DeleteGameServerGroupCommand = DeleteGameServerGroupCommand;exports.DeleteGameSessionQueueCommand = DeleteGameSessionQueueCommand;exports.DeleteLocationCommand = DeleteLocationCommand;exports.DeleteMatchmakingConfigurationCommand = DeleteMatchmakingConfigurationCommand;exports.DeleteMatchmakingRuleSetCommand = DeleteMatchmakingRuleSetCommand;exports.DeleteScalingPolicyCommand = DeleteScalingPolicyCommand;exports.DeleteScriptCommand = DeleteScriptCommand;exports.DeleteVpcPeeringAuthorizationCommand = DeleteVpcPeeringAuthorizationCommand;exports.DeleteVpcPeeringConnectionCommand = DeleteVpcPeeringConnectionCommand;exports.DeploymentImpairmentStrategy = DeploymentImpairmentStrategy;exports.DeploymentProtectionStrategy = DeploymentProtectionStrategy;exports.DeploymentStatus = DeploymentStatus;exports.DeregisterComputeCommand = DeregisterComputeCommand;exports.DeregisterGameServerCommand = DeregisterGameServerCommand;exports.DescribeAliasCommand = DescribeAliasCommand;exports.DescribeBuildCommand = DescribeBuildCommand;exports.DescribeComputeCommand = DescribeComputeCommand;exports.DescribeContainerFleetCommand = DescribeContainerFleetCommand;exports.DescribeContainerGroupDefinitionCommand = DescribeContainerGroupDefinitionCommand;exports.DescribeContainerGroupPortMappingsCommand = DescribeContainerGroupPortMappingsCommand;exports.DescribeEC2InstanceLimitsCommand = DescribeEC2InstanceLimitsCommand;exports.DescribeFleetAttributesCommand = DescribeFleetAttributesCommand;exports.DescribeFleetCapacityCommand = DescribeFleetCapacityCommand;exports.DescribeFleetDeploymentCommand = DescribeFleetDeploymentCommand;exports.DescribeFleetEventsCommand = DescribeFleetEventsCommand;exports.DescribeFleetLocationAttributesCommand = DescribeFleetLocationAttributesCommand;exports.DescribeFleetLocationCapacityCommand = DescribeFleetLocationCapacityCommand;exports.DescribeFleetLocationUtilizationCommand = DescribeFleetLocationUtilizationCommand;exports.DescribeFleetPortSettingsCommand = DescribeFleetPortSettingsCommand;exports.DescribeFleetUtilizationCommand = DescribeFleetUtilizationCommand;exports.DescribeGameServerCommand = DescribeGameServerCommand;exports.DescribeGameServerGroupCommand = DescribeGameServerGroupCommand;exports.DescribeGameServerInstancesCommand = DescribeGameServerInstancesCommand;exports.DescribeGameSessionDetailsCommand = DescribeGameSessionDetailsCommand;exports.DescribeGameSessionPlacementCommand = DescribeGameSessionPlacementCommand;exports.DescribeGameSessionQueuesCommand = DescribeGameSessionQueuesCommand;exports.DescribeGameSessionsCommand = DescribeGameSessionsCommand;exports.DescribeInstancesCommand = DescribeInstancesCommand;exports.DescribeMatchmakingCommand = DescribeMatchmakingCommand;exports.DescribeMatchmakingConfigurationsCommand = DescribeMatchmakingConfigurationsCommand;exports.DescribeMatchmakingRuleSetsCommand = DescribeMatchmakingRuleSetsCommand;exports.DescribePlayerSessionsCommand = DescribePlayerSessionsCommand;exports.DescribeRuntimeConfigurationCommand = DescribeRuntimeConfigurationCommand;exports.DescribeScalingPoliciesCommand = DescribeScalingPoliciesCommand;exports.DescribeScriptCommand = DescribeScriptCommand;exports.DescribeVpcPeeringAuthorizationsCommand = DescribeVpcPeeringAuthorizationsCommand;exports.DescribeVpcPeeringConnectionsCommand = DescribeVpcPeeringConnectionsCommand;exports.EC2InstanceType = EC2InstanceType;exports.EventCode = EventCode;exports.FilterInstanceStatus = FilterInstanceStatus;exports.FleetAction = FleetAction;exports.FleetStatus = FleetStatus;exports.FleetType = FleetType;exports.FlexMatchMode = FlexMatchMode;exports.GameLift = GameLift;exports.GameLiftClient = GameLiftClient;exports.GameServerClaimStatus = GameServerClaimStatus;exports.GameServerGroupAction = GameServerGroupAction;exports.GameServerGroupDeleteOption = GameServerGroupDeleteOption;exports.GameServerGroupInstanceType = GameServerGroupInstanceType;exports.GameServerGroupStatus = GameServerGroupStatus;exports.GameServerHealthCheck = GameServerHealthCheck;exports.GameServerInstanceStatus = GameServerInstanceStatus;exports.GameServerIpProtocolSupported = GameServerIpProtocolSupported;exports.GameServerProtectionPolicy = GameServerProtectionPolicy;exports.GameServerUtilizationStatus = GameServerUtilizationStatus;exports.GameSessionPlacementState = GameSessionPlacementState;exports.GameSessionStatus = GameSessionStatus;exports.GameSessionStatusReason = GameSessionStatusReason;exports.GetComputeAccessCommand = GetComputeAccessCommand;exports.GetComputeAuthTokenCommand = GetComputeAuthTokenCommand;exports.GetGameSessionLogUrlCommand = GetGameSessionLogUrlCommand;exports.GetInstanceAccessCommand = GetInstanceAccessCommand;exports.GetPlayerConnectionDetailsCommand = GetPlayerConnectionDetailsCommand;exports.InstanceRoleCredentialsProvider = InstanceRoleCredentialsProvider;exports.InstanceStatus = InstanceStatus;exports.IpProtocol = IpProtocol;exports.ListAliasesCommand = ListAliasesCommand;exports.ListBuildsCommand = ListBuildsCommand;exports.ListComputeCommand = ListComputeCommand;exports.ListComputeInputStatus = ListComputeInputStatus;exports.ListContainerFleetsCommand = ListContainerFleetsCommand;exports.ListContainerGroupDefinitionVersionsCommand = ListContainerGroupDefinitionVersionsCommand;exports.ListContainerGroupDefinitionsCommand = ListContainerGroupDefinitionsCommand;exports.ListFleetDeploymentsCommand = ListFleetDeploymentsCommand;exports.ListFleetsCommand = ListFleetsCommand;exports.ListGameServerGroupsCommand = ListGameServerGroupsCommand;exports.ListGameServersCommand = ListGameServersCommand;exports.ListLocationsCommand = ListLocationsCommand;exports.ListScriptsCommand = ListScriptsCommand;exports.ListTagsForResourceCommand = ListTagsForResourceCommand;exports.LocationFilter = LocationFilter;exports.LocationUpdateStatus = LocationUpdateStatus;exports.LogDestination = LogDestination;exports.MatchmakingConfigurationStatus = MatchmakingConfigurationStatus;exports.MetricName = MetricName;exports.OperatingSystem = OperatingSystem;exports.PlacementFallbackStrategy = PlacementFallbackStrategy;exports.PlayerGatewayMode = PlayerGatewayMode;exports.PlayerGatewayStatus = PlayerGatewayStatus;exports.PlayerSessionCreationPolicy = PlayerSessionCreationPolicy;exports.PlayerSessionStatus = PlayerSessionStatus;exports.PolicyType = PolicyType;exports.PriorityType = PriorityType;exports.ProtectionPolicy = ProtectionPolicy;exports.PutScalingPolicyCommand = PutScalingPolicyCommand;exports.RegisterComputeCommand = RegisterComputeCommand;exports.RegisterGameServerCommand = RegisterGameServerCommand;exports.RequestUploadCredentialsCommand = RequestUploadCredentialsCommand;exports.ResolveAliasCommand = ResolveAliasCommand;exports.ResumeGameServerGroupCommand = ResumeGameServerGroupCommand;exports.RoutingStrategyType = RoutingStrategyType;exports.ScalingAdjustmentType = ScalingAdjustmentType;exports.ScalingStatusType = ScalingStatusType;exports.SearchGameSessionsCommand = SearchGameSessionsCommand;exports.SortOrder = SortOrder;exports.StartFleetActionsCommand = StartFleetActionsCommand;exports.StartGameSessionPlacementCommand = StartGameSessionPlacementCommand;exports.StartMatchBackfillCommand = StartMatchBackfillCommand;exports.StartMatchmakingCommand = StartMatchmakingCommand;exports.StopFleetActionsCommand = StopFleetActionsCommand;exports.StopGameSessionPlacementCommand = StopGameSessionPlacementCommand;exports.StopMatchmakingCommand = StopMatchmakingCommand;exports.SuspendGameServerGroupCommand = SuspendGameServerGroupCommand;exports.TagResourceCommand = TagResourceCommand;exports.TerminateGameSessionCommand = TerminateGameSessionCommand;exports.TerminationMode = TerminationMode;exports.UntagResourceCommand = UntagResourceCommand;exports.UpdateAliasCommand = UpdateAliasCommand;exports.UpdateBuildCommand = UpdateBuildCommand;exports.UpdateContainerFleetCommand = UpdateContainerFleetCommand;exports.UpdateContainerGroupDefinitionCommand = UpdateContainerGroupDefinitionCommand;exports.UpdateFleetAttributesCommand = UpdateFleetAttributesCommand;exports.UpdateFleetCapacityCommand = UpdateFleetCapacityCommand;exports.UpdateFleetPortSettingsCommand = UpdateFleetPortSettingsCommand;exports.UpdateGameServerCommand = UpdateGameServerCommand;exports.UpdateGameServerGroupCommand = UpdateGameServerGroupCommand;exports.UpdateGameSessionCommand = UpdateGameSessionCommand;exports.UpdateGameSessionQueueCommand = UpdateGameSessionQueueCommand;exports.UpdateMatchmakingConfigurationCommand = UpdateMatchmakingConfigurationCommand;exports.UpdateRuntimeConfigurationCommand = UpdateRuntimeConfigurationCommand;exports.UpdateScriptCommand = UpdateScriptCommand;exports.ValidateMatchmakingRuleSetCommand = ValidateMatchmakingRuleSetCommand;exports.ZeroCapacityStrategy = ZeroCapacityStrategy;exports.paginateDescribeFleetAttributes = paginateDescribeFleetAttributes;exports.paginateDescribeFleetCapacity = paginateDescribeFleetCapacity;exports.paginateDescribeFleetEvents = paginateDescribeFleetEvents;exports.paginateDescribeFleetLocationAttributes = paginateDescribeFleetLocationAttributes;exports.paginateDescribeFleetUtilization = paginateDescribeFleetUtilization;exports.paginateDescribeGameServerInstances = paginateDescribeGameServerInstances;exports.paginateDescribeGameSessionDetails = paginateDescribeGameSessionDetails;exports.paginateDescribeGameSessionQueues = paginateDescribeGameSessionQueues;exports.paginateDescribeGameSessions = paginateDescribeGameSessions;exports.paginateDescribeInstances = paginateDescribeInstances;exports.paginateDescribeMatchmakingConfigurations = paginateDescribeMatchmakingConfigurations;exports.paginateDescribeMatchmakingRuleSets = paginateDescribeMatchmakingRuleSets;exports.paginateDescribePlayerSessions = paginateDescribePlayerSessions;exports.paginateDescribeScalingPolicies = paginateDescribeScalingPolicies;exports.paginateListAliases = paginateListAliases;exports.paginateListBuilds = paginateListBuilds;exports.paginateListCompute = paginateListCompute;exports.paginateListContainerFleets = paginateListContainerFleets;exports.paginateListContainerGroupDefinitionVersions = paginateListContainerGroupDefinitionVersions;exports.paginateListContainerGroupDefinitions = paginateListContainerGroupDefinitions;exports.paginateListFleetDeployments = paginateListFleetDeployments;exports.paginateListFleets = paginateListFleets;exports.paginateListGameServerGroups = paginateListGameServerGroups;exports.paginateListGameServers = paginateListGameServers;exports.paginateListLocations = paginateListLocations;exports.paginateListScripts = paginateListScripts;exports.paginateSearchGameSessions = paginateSearchGameSessions;Object.prototype.hasOwnProperty.call(schemas_0, '__proto__') &&    !Object.prototype.hasOwnProperty.call(exports, '__proto__') &&    Object.defineProperty(exports, '__proto__', {        enumerable: true,        value: schemas_0['__proto__']    }); Object.keys(schemas_0).forEach(function (k) {    if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = schemas_0[k];});Object.prototype.hasOwnProperty.call(errors, '__proto__') &&    !Object.prototype.hasOwnProperty.call(exports, '__proto__') &&    Object.defineProperty(exports, '__proto__', {        enumerable: true,        value: errors['__proto__']    }); Object.keys(errors).forEach(function (k) {    if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = errors[k];});