Skip to main content

fleet_deployments

Creates, updates, deletes, gets or lists a fleet_deployments resource.

Overview

Namefleet_deployments
TypeResource
Idaws.gamelift.fleet_deployments

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
fleet_deploymentobjectThe requested deployment information.
locational_deploymentsobjectIf the deployment is for a multi-location fleet, the requests returns the deployment status in each fleet location.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_fleet_deploymentselectregionThis API works with the following fleet types: Container Retrieves information about a managed container fleet deployment. Request options Get information about the latest deployment for a specific fleet. Provide the fleet ID or ARN. Get information about a specific deployment. Provide the fleet ID or ARN and the deployment ID. Results If successful, a FleetDeployment object is returned.
list_fleet_deploymentsselectregionThis API works with the following fleet types: Container Retrieves a collection of container fleet deployments in an Amazon Web Services Region. Use the pagination parameters to retrieve results as a set of sequential pages. Request options Get a list of all deployments. Call this operation without specifying a fleet ID. Get a list of all deployments for a fleet. Specify the container fleet ID or ARN value. Results If successful, this operation returns a list of deployments that match the request parameters. A NextToken value is also returned if there are more result pages to retrieve. Deployments are returned starting with the latest.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

This API works with the following fleet types: Container Retrieves information about a managed container fleet deployment. Request options Get information about the latest deployment for a specific fleet. Provide the fleet ID or ARN. Get information about a specific deployment. Provide the fleet ID or ARN and the deployment ID. Results If successful, a FleetDeployment object is returned.

SELECT
fleet_deployment,
locational_deployments
FROM aws.gamelift.fleet_deployments
WHERE region = '{{ region }}' -- required
;