DescribeGameServerInstancesInput

public struct DescribeGameServerInstancesInput : AWSShape
extension GameLift.DescribeGameServerInstancesInput: AWSPaginateStringToken

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • A unique identifier for the game server group. Use either the GameServerGroup name or ARN value.

    Declaration

    Swift

    public let gameServerGroupName: String
  • The EC2 instance IDs that you want to retrieve status on. EC2 instance IDs use a 17-character format, for example: i-1234567890abcdef0. To retrieve all instances in the game server group, leave this parameter empty.

    Declaration

    Swift

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

    Declaration

    Swift

    public let limit: Int?
  • A token that indicates the start of the next sequential segment of results. Use the token returned with the 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(gameServerGroupName: String, instanceIds: [String]? = nil, limit: Int? = nil, nextToken: String? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws