Socket
Socket
Sign inDemoInstall

@aws-sdk/client-gamesparks

Package Overview
Dependencies
134
Maintainers
5
Versions
182
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @aws-sdk/client-gamesparks

AWS SDK for JavaScript Gamesparks Client for Node.js, Browser and React Native


Version published
Weekly downloads
91K
decreased by-4.81%
Maintainers
5
Created
Weekly downloads
 

Changelog

Source

3.303.0 (2023-03-30)

Features

  • client-athena: Make DefaultExecutorDpuSize and CoordinatorDpuSize fields optional in StartSession (1a4cd21)
  • client-auto-scaling: Amazon EC2 Auto Scaling now supports Elastic Load Balancing traffic sources with the AttachTrafficSources, DetachTrafficSources, and DescribeTrafficSources APIs. This release also introduces a new activity status, "WaitingForConnectionDraining", for VPC Lattice to the DescribeScalingActivities API. (3f4037e)
  • client-batch: This feature allows Batch on EKS to support configuration of Pod Labels through Metadata for Batch on EKS Jobs. (d26bec4)
  • client-compute-optimizer: This release adds support for HDD EBS volume types and io2 Block Express. We are also adding support for 61 new instance types and instances that have non consecutive runtime. (defd0ca)
  • client-drs: Adding a field to the replication configuration APIs to support the auto replicate new disks feature. We also deprecated RetryDataReplication. (6848391)
  • client-ec2: This release adds support for Tunnel Endpoint Lifecycle control, a new feature that provides Site-to-Site VPN customers with better visibility and control of their VPN tunnel maintenance updates. (daa7956)
  • client-emr: Updated DescribeCluster and ListClusters API responses to include ErrorDetail that specifies error code, programmatically accessible error data,and an error message. ErrorDetail provides the underlying reason for cluster failure and recommends actions to simplify troubleshooting of EMR clusters. (aa47baa)
  • client-glue: This release adds support for AWS Glue Data Quality, which helps you evaluate and monitor the quality of your data and includes the API for creating, deleting, or updating data quality rulesets, runs and evaluations. (811c814)
  • client-guardduty: Added EKS Runtime Monitoring feature support to existing detector, finding APIs and introducing new Coverage APIs (0f16674)
  • client-imagebuilder: Adds support for new image workflow details and image vulnerability detection. (a2d8908)
  • client-ivs: Amazon Interactive Video Service (IVS) now offers customers the ability to configure IVS channels to allow insecure RTMP ingest. (0001a10)
  • client-kendra: AWS Kendra now supports featured results for a query. (2271816)
  • client-network-firewall: AWS Network Firewall added TLS inspection configurations to allow TLS traffic inspection. (801cd21)
  • client-sagemaker-geospatial: Amazon SageMaker geospatial capabilities now supports server-side encryption with customer managed KMS key and SageMaker notebooks with a SageMaker geospatial image in a Amazon SageMaker Domain with VPC only mode. (04b37bf)
  • client-vpc-lattice: General Availability (GA) release of Amazon VPC Lattice (fc57f8f)
  • client-wellarchitected: AWS Well-Architected SDK now supports getting consolidated report metrics and generating a consolidated report PDF. (f0d07c4)
  • clients: update client endpoints as of 2023-03-30 (4682bc1)

Readme

Source

@aws-sdk/client-gamesparks

NPM version NPM downloads

Description

AWS SDK for JavaScript GameSparks Client for Node.js, Browser and React Native.

Installing

To install the this package, simply type add or install @aws-sdk/client-gamesparks using your favorite package manager:

  • npm install @aws-sdk/client-gamesparks
  • yarn add @aws-sdk/client-gamesparks
  • pnpm add @aws-sdk/client-gamesparks

Getting Started

Import

The AWS SDK is modulized by clients and commands. To send a request, you only need to import the GameSparksClient and the commands you need, for example CreateGameCommand:

// ES5 example
const { GameSparksClient, CreateGameCommand } = require("@aws-sdk/client-gamesparks");
// ES6+ example
import { GameSparksClient, CreateGameCommand } from "@aws-sdk/client-gamesparks";

Usage

To send a request, you:

  • Initiate client with configuration (e.g. credentials, region).
  • Initiate command with input parameters.
  • Call send operation on client with command object as input.
  • If you are using a custom http handler, you may call destroy() to close open connections.
// a client can be shared by different commands.
const client = new GameSparksClient({ region: "REGION" });

const params = {
  /** input parameters */
};
const command = new CreateGameCommand(params);
Async/await

We recommend using await operator to wait for the promise returned by send operation as follows:

// async/await.
try {
  const data = await client.send(command);
  // process data.
} catch (error) {
  // error handling.
} finally {
  // finally.
}

Async-await is clean, concise, intuitive, easy to debug and has better error handling as compared to using Promise chains or callbacks.

Promises

You can also use Promise chaining to execute send operation.

client.send(command).then(
  (data) => {
    // process data.
  },
  (error) => {
    // error handling.
  }
);

Promises can also be called using .catch() and .finally() as follows:

client
  .send(command)
  .then((data) => {
    // process data.
  })
  .catch((error) => {
    // error handling.
  })
  .finally(() => {
    // finally.
  });
Callbacks

We do not recommend using callbacks because of callback hell, but they are supported by the send operation.

// callbacks.
client.send(command, (err, data) => {
  // process err and data.
});
v2 compatible style

The client can also send requests using v2 compatible style. However, it results in a bigger bundle size and may be dropped in next major version. More details in the blog post on modular packages in AWS SDK for JavaScript

import * as AWS from "@aws-sdk/client-gamesparks";
const client = new AWS.GameSparks({ region: "REGION" });

// async/await.
try {
  const data = await client.createGame(params);
  // process data.
} catch (error) {
  // error handling.
}

// Promises.
client
  .createGame(params)
  .then((data) => {
    // process data.
  })
  .catch((error) => {
    // error handling.
  });

// callbacks.
client.createGame(params, (err, data) => {
  // process err and data.
});

Troubleshooting

When the service returns an exception, the error will include the exception information, as well as response metadata (e.g. request id).

try {
  const data = await client.send(command);
  // process data.
} catch (error) {
  const { requestId, cfId, extendedRequestId } = error.$$metadata;
  console.log({ requestId, cfId, extendedRequestId });
  /**
   * The keys within exceptions are also parsed.
   * You can access them by specifying exception names:
   * if (error.name === 'SomeServiceException') {
   *     const value = error.specialKeyInException;
   * }
   */
}

Getting Help

Please use these community resources for getting help. We use the GitHub issues for tracking bugs and feature requests, but have limited bandwidth to address them.

To test your universal JavaScript code in Node.js, browser and react-native environments, visit our code samples repo.

Contributing

This client code is generated automatically. Any modifications will be overwritten the next time the @aws-sdk/client-gamesparks package is updated. To contribute to client you can check our generate clients scripts.

License

This SDK is distributed under the Apache License, Version 2.0, see LICENSE for more information.

Client Commands (Operations List)

CreateGame

Command API Reference / Input / Output

CreateSnapshot

Command API Reference / Input / Output

CreateStage

Command API Reference / Input / Output

DeleteGame

Command API Reference / Input / Output

DeleteStage

Command API Reference / Input / Output

DisconnectPlayer

Command API Reference / Input / Output

ExportSnapshot

Command API Reference / Input / Output

GetExtension

Command API Reference / Input / Output

GetExtensionVersion

Command API Reference / Input / Output

GetGame

Command API Reference / Input / Output

GetGameConfiguration

Command API Reference / Input / Output

GetGeneratedCodeJob

Command API Reference / Input / Output

GetPlayerConnectionStatus

Command API Reference / Input / Output

GetSnapshot

Command API Reference / Input / Output

GetStage

Command API Reference / Input / Output

GetStageDeployment

Command API Reference / Input / Output

ImportGameConfiguration

Command API Reference / Input / Output

ListExtensions

Command API Reference / Input / Output

ListExtensionVersions

Command API Reference / Input / Output

ListGames

Command API Reference / Input / Output

ListGeneratedCodeJobs

Command API Reference / Input / Output

ListSnapshots

Command API Reference / Input / Output

ListStageDeployments

Command API Reference / Input / Output

ListStages

Command API Reference / Input / Output

ListTagsForResource

Command API Reference / Input / Output

StartGeneratedCodeJob

Command API Reference / Input / Output

StartStageDeployment

Command API Reference / Input / Output

TagResource

Command API Reference / Input / Output

UntagResource

Command API Reference / Input / Output

UpdateGame

Command API Reference / Input / Output

UpdateGameConfiguration

Command API Reference / Input / Output

UpdateSnapshot

Command API Reference / Input / Output

UpdateStage

Command API Reference / Input / Output

FAQs

Last updated on 30 Mar 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc