Get Target Group
| vpclattice_get_target_group | R Documentation | 
Retrieves information about the specified target group¶
Description¶
Retrieves information about the specified target group.
Usage¶
vpclattice_get_target_group(targetGroupIdentifier)
Arguments¶
targetGroupIdentifier | 
[required] The ID or ARN of the target group.  | 
Value¶
A list with the following syntax:
list(
  arn = "string",
  config = list(
    healthCheck = list(
      enabled = TRUE|FALSE,
      healthCheckIntervalSeconds = 123,
      healthCheckTimeoutSeconds = 123,
      healthyThresholdCount = 123,
      matcher = list(
        httpCode = "string"
      ),
      path = "string",
      port = 123,
      protocol = "HTTP"|"HTTPS"|"TCP",
      protocolVersion = "HTTP1"|"HTTP2",
      unhealthyThresholdCount = 123
    ),
    ipAddressType = "IPV4"|"IPV6",
    lambdaEventStructureVersion = "V1"|"V2",
    port = 123,
    protocol = "HTTP"|"HTTPS"|"TCP",
    protocolVersion = "HTTP1"|"HTTP2"|"GRPC",
    vpcIdentifier = "string"
  ),
  createdAt = as.POSIXct(
    "2015-01-01"
  ),
  failureCode = "string",
  failureMessage = "string",
  id = "string",
  lastUpdatedAt = as.POSIXct(
    "2015-01-01"
  ),
  name = "string",
  serviceArns = list(
    "string"
  ),
  status = "CREATE_IN_PROGRESS"|"ACTIVE"|"DELETE_IN_PROGRESS"|"CREATE_FAILED"|"DELETE_FAILED",
  type = "IP"|"LAMBDA"|"INSTANCE"|"ALB"
)
Request syntax¶
svc$get_target_group(
  targetGroupIdentifier = "string"
)