ManagedScaling

public struct ManagedScaling : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The maximum number of container instances that Amazon ECS will scale in or scale out at one time. If this parameter is omitted, the default value of 10000 is used.

    Declaration

    Swift

    public let maximumScalingStepSize: Int?
  • The minimum number of container instances that Amazon ECS will scale in or scale out at one time. If this parameter is omitted, the default value of 1 is used.

    Declaration

    Swift

    public let minimumScalingStepSize: Int?
  • Whether or not to enable managed scaling for the capacity provider.

    Declaration

    Swift

    public let status: ManagedScalingStatus?
  • The target capacity value for the capacity provider. The specified value must be greater than 0 and less than or equal to 100. A value of 100 will result in the Amazon EC2 instances in your Auto Scaling group being completely utilized.

    Declaration

    Swift

    public let targetCapacity: Int?
  • Undocumented

    Declaration

    Swift

    public init(maximumScalingStepSize: Int? = nil, minimumScalingStepSize: Int? = nil, status: ManagedScalingStatus? = nil, targetCapacity: Int? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws