List Target Groups
| vpclattice_list_target_groups | R Documentation |
Lists your target groups¶
Description¶
Lists your target groups. You can narrow your search by using the filters below in your request.
Usage¶
vpclattice_list_target_groups(maxResults, nextToken, vpcIdentifier,
targetGroupType)
Arguments¶
maxResults |
The maximum number of results to return. |
nextToken |
A pagination token for the next page of results. |
vpcIdentifier |
The ID or ARN of the VPC. |
targetGroupType |
The target group type. |
Value¶
A list with the following syntax:
list(
items = list(
list(
id = "string",
arn = "string",
name = "string",
type = "IP"|"LAMBDA"|"INSTANCE"|"ALB",
createdAt = as.POSIXct(
"2015-01-01"
),
port = 123,
protocol = "HTTP"|"HTTPS"|"TCP",
ipAddressType = "IPV4"|"IPV6",
vpcIdentifier = "string",
lastUpdatedAt = as.POSIXct(
"2015-01-01"
),
status = "CREATE_IN_PROGRESS"|"ACTIVE"|"DELETE_IN_PROGRESS"|"CREATE_FAILED"|"DELETE_FAILED",
serviceArns = list(
"string"
),
lambdaEventStructureVersion = "V1"|"V2"
)
),
nextToken = "string"
)
Request syntax¶
svc$list_target_groups(
maxResults = 123,
nextToken = "string",
vpcIdentifier = "string",
targetGroupType = "IP"|"LAMBDA"|"INSTANCE"|"ALB"
)