ModifyTargetGroupInput
public struct ModifyTargetGroupInput : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
Indicates whether health checks are enabled.
Declaration
Swift
public let healthCheckEnabled: Bool?
-
The approximate amount of time, in seconds, between health checks of an individual target. For Application Load Balancers, the range is 5 to 300 seconds. For Network Load Balancers, the supported values are 10 or 30 seconds. With Network Load Balancers, you can’t modify this setting.
Declaration
Swift
public let healthCheckIntervalSeconds: Int?
-
[HTTP/HTTPS health checks] The ping path that is the destination for the health check request.
Declaration
Swift
public let healthCheckPath: String?
-
The port the load balancer uses when performing health checks on targets.
Declaration
Swift
public let healthCheckPort: String?
-
The protocol the load balancer uses when performing health checks on targets. The TCP protocol is supported for health checks only if the protocol of the target group is TCP, TLS, UDP, or TCP_UDP. The TLS, UDP, and TCP_UDP protocols are not supported for health checks. With Network Load Balancers, you can’t modify this setting.
Declaration
Swift
public let healthCheckProtocol: ProtocolEnum?
-
[HTTP/HTTPS health checks] The amount of time, in seconds, during which no response means a failed health check. With Network Load Balancers, you can’t modify this setting.
Declaration
Swift
public let healthCheckTimeoutSeconds: Int?
-
The number of consecutive health checks successes required before considering an unhealthy target healthy.
Declaration
Swift
public let healthyThresholdCount: Int?
-
[HTTP/HTTPS health checks] The HTTP codes to use when checking for a successful response from a target. The possible values are from 200 to 499. You can specify multiple values (for example, “200,202”) or a range of values (for example, “200-299”). The default is 200. With Network Load Balancers, you can’t modify this setting.
Declaration
Swift
public let matcher: Matcher?
-
The Amazon Resource Name (ARN) of the target group.
Declaration
Swift
public let targetGroupArn: String
-
The number of consecutive health check failures required before considering the target unhealthy. For Network Load Balancers, this value must be the same as the healthy threshold count.
Declaration
Swift
public let unhealthyThresholdCount: Int?
-
init(healthCheckEnabled:healthCheckIntervalSeconds:healthCheckPath:healthCheckPort:healthCheckProtocol:healthCheckTimeoutSeconds:healthyThresholdCount:matcher:targetGroupArn:unhealthyThresholdCount:)
Undocumented
Declaration
Swift
public init(healthCheckEnabled: Bool? = nil, healthCheckIntervalSeconds: Int? = nil, healthCheckPath: String? = nil, healthCheckPort: String? = nil, healthCheckProtocol: ProtocolEnum? = nil, healthCheckTimeoutSeconds: Int? = nil, healthyThresholdCount: Int? = nil, matcher: Matcher? = nil, targetGroupArn: String, unhealthyThresholdCount: Int? = nil)
-
Declaration
Swift
public func validate(name: String) throws