Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DescribeScalingPoliciesInput

import type { DescribeScalingPoliciesInput } from "https://aws-api.deno.dev/v0.3/services/gamelift.ts?docs=full";

Represents the input for a request operation.

interface DescribeScalingPoliciesInput {
FleetId: string;
Limit?: number | null;
Location?: string | null;
NextToken?: string | null;
StatusFilter?: ScalingStatusType | null;
}

§Properties

§
FleetId: string
[src]

A unique identifier for the fleet to retrieve scaling policies for. You can use either the fleet ID or ARN value.

§
Limit?: number | null
[src]

The maximum number of results to return. Use this parameter with NextToken to get results as a set of sequential pages.

§
Location?: string | null
[src]

CONTENT TODO

§
NextToken?: string | null
[src]

A token that indicates the start of the next sequential page of results. Use the token that is returned with a previous call to this operation. To start at the beginning of the result set, do not specify a value.

§
StatusFilter?: ScalingStatusType | null
[src]

Scaling policy status to filter results on. A scaling policy is only in force when in an ACTIVE status.

  • ACTIVE -- The scaling policy is currently in force.
  • UPDATEREQUESTED -- A request to update the scaling policy has been received.
  • UPDATING -- A change is being made to the scaling policy.
  • DELETEREQUESTED -- A request to delete the scaling policy has been received.
  • DELETING -- The scaling policy is being deleted.
  • DELETED -- The scaling policy has been deleted.
  • ERROR -- An error occurred in creating the policy. It should be removed and recreated.