TargetTrackingConfiguration
public struct TargetTrackingConfiguration : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
A customized metric. You must specify either a predefined metric or a customized metric.
Declaration
Swift
public let customizedMetricSpecification: CustomizedMetricSpecification?
-
Indicates whether scaling in by the target tracking scaling policy is disabled. If scaling in is disabled, the target tracking scaling policy doesn’t remove instances from the Auto Scaling group. Otherwise, the target tracking scaling policy can remove instances from the Auto Scaling group. The default is false.
Declaration
Swift
public let disableScaleIn: Bool?
-
A predefined metric. You must specify either a predefined metric or a customized metric.
Declaration
Swift
public let predefinedMetricSpecification: PredefinedMetricSpecification?
-
The target value for the metric.
Declaration
Swift
public let targetValue: Double
-
Undocumented
Declaration
Swift
public init(customizedMetricSpecification: CustomizedMetricSpecification? = nil, disableScaleIn: Bool? = nil, predefinedMetricSpecification: PredefinedMetricSpecification? = nil, targetValue: Double)
-
Declaration
Swift
public func validate(name: String) throws