UpdateFleetCapacityInput
public struct UpdateFleetCapacityInput : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
Number of EC2 instances you want this fleet to host.
Declaration
Swift
public let desiredInstances: Int?
-
A unique identifier for a fleet to update capacity for. You can use either the fleet ID or ARN value.
Declaration
Swift
public let fleetId: String
-
The maximum value allowed for the fleet’s instance count. Default if not set is 1.
Declaration
Swift
public let maxSize: Int?
-
The minimum value allowed for the fleet’s instance count. Default if not set is 0.
Declaration
Swift
public let minSize: Int?
-
Undocumented
Declaration
Swift
public init(desiredInstances: Int? = nil, fleetId: String, maxSize: Int? = nil, minSize: Int? = nil)
-
Declaration
Swift
public func validate(name: String) throws