Update Target Group
| vpclattice_update_target_group | R Documentation |
Updates the specified target group¶
Description¶
Updates the specified target group.
Usage¶
vpclattice_update_target_group(targetGroupIdentifier, healthCheck)
Arguments¶
targetGroupIdentifier |
[required] The ID or ARN of the target group. |
healthCheck |
[required] The health check configuration. |
Value¶
A list with the following syntax:
list(
id = "string",
arn = "string",
name = "string",
type = "IP"|"LAMBDA"|"INSTANCE"|"ALB",
config = list(
port = 123,
protocol = "HTTP"|"HTTPS"|"TCP",
protocolVersion = "HTTP1"|"HTTP2"|"GRPC",
ipAddressType = "IPV4"|"IPV6",
vpcIdentifier = "string",
healthCheck = list(
enabled = TRUE|FALSE,
protocol = "HTTP"|"HTTPS"|"TCP",
protocolVersion = "HTTP1"|"HTTP2",
port = 123,
path = "string",
healthCheckIntervalSeconds = 123,
healthCheckTimeoutSeconds = 123,
healthyThresholdCount = 123,
unhealthyThresholdCount = 123,
matcher = list(
httpCode = "string"
)
),
lambdaEventStructureVersion = "V1"|"V2"
),
status = "CREATE_IN_PROGRESS"|"ACTIVE"|"DELETE_IN_PROGRESS"|"CREATE_FAILED"|"DELETE_FAILED"
)
Request syntax¶
svc$update_target_group(
targetGroupIdentifier = "string",
healthCheck = list(
enabled = TRUE|FALSE,
protocol = "HTTP"|"HTTPS"|"TCP",
protocolVersion = "HTTP1"|"HTTP2",
port = 123,
path = "string",
healthCheckIntervalSeconds = 123,
healthCheckTimeoutSeconds = 123,
healthyThresholdCount = 123,
unhealthyThresholdCount = 123,
matcher = list(
httpCode = "string"
)
)
)