404

[ Avaa Bypassed ]




Upload:

Command:

botdev@13.58.146.48: ~ $
**Example1: To get a list of custom game builds**

The following ``list-builds`` example retrieves properties for all game server builds in the current Region. The sample request illustrates how to use the pagination parameters, ``Limit`` and ``NextToken``, to retrieve the results in sequential sets. The first command retrieves the first two builds. Because there are more than two available, the response includes a ``NextToken`` to indicate that more results are available. ::

    aws gamelift list-builds \
        --limit 2

Output::

    {
        "Builds": [
            {
                "BuildArn": "arn:aws:gamelift:us-west-2::build/build-a1b2c3d4-5678-90ab-cdef-EXAMPLE11111",
                "BuildId": "build-a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", 
                "CreationTime": 1495664528.723, 
                "Name": "My_Game_Server_Build_One", 
                "OperatingSystem": "WINDOWS_2012", 
                "SizeOnDisk": 8567781, 
                "Status": "READY", 
                "Version": "12345.678"
            }, 
            {
                "BuildArn": "arn:aws:gamelift:us-west-2::build/build-a1b2c3d4-5678-90ab-cdef-EXAMPLE22222",
                "BuildId": "build-a1b2c3d4-5678-90ab-cdef-EXAMPLE22222", 
                "CreationTime": 1495528748.555, 
                "Name": "My_Game_Server_Build_Two", 
                "OperatingSystem": "AMAZON_LINUX_2",
                "SizeOnDisk": 8567781,
                "Status": "FAILED", 
                "Version": "23456.789"
            }
        ], 
        "NextToken": "eyJhd3NBY2NvdW50SWQiOnsicyI6IjMwMjc3NjAxNjM5OCJ9LCJidWlsZElkIjp7InMiOiJidWlsZC01NWYxZTZmMS1jY2FlLTQ3YTctOWI5ZS1iYjFkYTQwMjJEXAMPLE="
    }

You can then call the command again with the ``--next-token`` parameter as follows to see the next two builds. ::

    aws gamelift list-builds \
        --limit 2
        --next-token eyJhd3NBY2NvdW50SWQiOnsicyI6IjMwMjc3NjAxNjM5OCJ9LCJidWlsZElkIjp7InMiOiJidWlsZC01NWYxZTZmMS1jY2FlLTQ3YTctOWI5ZS1iYjFkYTQwMjJEXAMPLE=

Repeat until the response doesn't include a ``NextToken`` value.

**Example2: To get a list of custom game builds in failure status**

The following ``list-builds`` example retrieves properties for all game server builds in the current region that currently have status FAILED. ::

    aws gamelift list-builds \
        --status FAILED

Output::

    {
        "Builds": [
            {
                "BuildArn": "arn:aws:gamelift:us-west-2::build/build-a1b2c3d4-5678-90ab-cdef-EXAMPLE22222",
                "BuildId": "build-a1b2c3d4-5678-90ab-cdef-EXAMPLE22222", 
                "CreationTime": 1495528748.555, 
                "Name": "My_Game_Server_Build_Two", 
                "OperatingSystem": "AMAZON_LINUX_2",
                "SizeOnDisk": 8567781,
                "Status": "FAILED", 
                "Version": "23456.789"
            }
        ]
    }


Filemanager

Name Type Size Permission Actions
create-build.rst File 3.05 KB 0755
create-fleet.rst File 7.22 KB 0755
create-game-session-queue.rst File 3.74 KB 0755
delete-build.rst File 365 B 0755
delete-fleet.rst File 552 B 0755
delete-game-session-queue.rst File 251 B 0755
describe-build.rst File 981 B 0755
describe-ec2-instance-limits.rst File 817 B 0755
describe-fleet-attributes.rst File 5.1 KB 0755
describe-fleet-capacity.rst File 1.5 KB 0755
describe-fleet-events.rst File 4.15 KB 0755
describe-fleet-port-settings.rst File 922 B 0755
describe-fleet-utilization.rst File 2.44 KB 0755
describe-game-session-queues.rst File 2.07 KB 0755
describe-runtime-configuration.rst File 1.18 KB 0755
list-builds.rst File 2.89 KB 0755
list-fleets.rst File 1.77 KB 0755
request-upload-credentials.rst File 1.04 KB 0755
start-fleet-actions.rst File 490 B 0755
stop-fleet-actions.rst File 472 B 0755
update-build.rst File 1.13 KB 0755
update-game-session-queue.rst File 2.31 KB 0755
upload-build.rst File 2.16 KB 0755