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, targetGroupType,
vpcIdentifier)
Arguments¶
maxResults |
The maximum number of results to return. |
nextToken |
A pagination token for the next page of results. |
targetGroupType |
The target group type. |
vpcIdentifier |
The ID or ARN of the VPC. |
Value¶
A list with the following syntax:
list(
items = list(
list(
arn = "string",
createdAt = as.POSIXct(
"2015-01-01"
),
id = "string",
ipAddressType = "IPV4"|"IPV6",
lambdaEventStructureVersion = "V1"|"V2",
lastUpdatedAt = as.POSIXct(
"2015-01-01"
),
name = "string",
port = 123,
protocol = "HTTP"|"HTTPS"|"TCP",
serviceArns = list(
"string"
),
status = "CREATE_IN_PROGRESS"|"ACTIVE"|"DELETE_IN_PROGRESS"|"CREATE_FAILED"|"DELETE_FAILED",
type = "IP"|"LAMBDA"|"INSTANCE"|"ALB",
vpcIdentifier = "string"
)
),
nextToken = "string"
)
Request syntax¶
svc$list_target_groups(
maxResults = 123,
nextToken = "string",
targetGroupType = "IP"|"LAMBDA"|"INSTANCE"|"ALB",
vpcIdentifier = "string"
)