How to access FleetIQ via code, is it documented? #3201
-
Can someone help me, I didn't find any useful information. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hi @x-wk, the Java SDK Developer Guide is a good place to start - https://docs.aws.amazon.com/sdk-for-java/latest/developer-guide/using.html Here's an example of how to create a GameLift client: GameLiftClient client = GameLiftClient.builder()
.region(Region.US_EAST_2)
.build();
DescribeGameServerResponse response = client.describeGameServer(
DescribeGameServerRequest.builder()
.gameServerId(GAME_SERVER_ID)
.gameServerGroupName(GAME_SERVER_GROUP)
.build()); The GameLift Dev Guide is also a good reference: https://docs.aws.amazon.com/gamelift/latest/fleetiqguide/reference-awssdk-fleetiq.html |
Beta Was this translation helpful? Give feedback.
-
Hello! Reopening this discussion to make it searchable. |
Beta Was this translation helpful? Give feedback.
Hi @x-wk, the Java SDK Developer Guide is a good place to start - https://docs.aws.amazon.com/sdk-for-java/latest/developer-guide/using.html
Here's an example of how to create a GameLift client:
The GameLift Dev Guide is also a good reference: https://docs.aws.amazon.com/gamelift/latest/fleetiqguide/reference-awssdk-fleetiq.html