DescribeInstancesInput

public struct DescribeInstancesInput : AWSShape
extension GameLift.DescribeInstancesInput: AWSPaginateStringToken

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • A unique identifier for a fleet to retrieve instance information for. You can use either the fleet ID or ARN value.

    Declaration

    Swift

    public let fleetId: String
  • A unique identifier for an instance to retrieve. Specify an instance ID or leave blank to retrieve all instances in the fleet.

    Declaration

    Swift

    public let instanceId: String?
  • The maximum number of results to return. Use this parameter with NextToken to get results as a set of sequential pages.

    Declaration

    Swift

    public let limit: Int?
  • 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.

    Declaration

    Swift

    public let nextToken: String?
  • Undocumented

    Declaration

    Swift

    public init(fleetId: String, instanceId: String? = nil, limit: Int? = nil, nextToken: String? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws