EC2InstanceCounts
public struct EC2InstanceCounts : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
Actual number of active instances in the fleet.
Declaration
Swift
public let active: Int?
-
Ideal number of active instances in the fleet.
Declaration
Swift
public let desired: Int?
-
Number of active instances in the fleet that are not currently hosting a game session.
Declaration
Swift
public let idle: Int?
-
The maximum value allowed for the fleet’s instance count.
Declaration
Swift
public let maximum: Int?
-
The minimum value allowed for the fleet’s instance count.
Declaration
Swift
public let minimum: Int?
-
Number of instances in the fleet that are starting but not yet active.
Declaration
Swift
public let pending: Int?
-
Number of instances in the fleet that are no longer active but haven’t yet been terminated.
Declaration
Swift
public let terminating: Int?
-
Undocumented
Declaration
Swift
public init(active: Int? = nil, desired: Int? = nil, idle: Int? = nil, maximum: Int? = nil, minimum: Int? = nil, pending: Int? = nil, terminating: Int? = nil)