List Listeners
vpclattice_list_listeners | R Documentation |
Lists the listeners for the specified service¶
Description¶
Lists the listeners for the specified service.
Usage¶
vpclattice_list_listeners(maxResults, nextToken, serviceIdentifier)
Arguments¶
maxResults |
The maximum number of results to return. |
nextToken |
A pagination token for the next page of results. |
serviceIdentifier |
[required] The ID or ARN of the service. |
Value¶
A list with the following syntax:
list(
items = list(
list(
arn = "string",
createdAt = as.POSIXct(
"2015-01-01"
),
id = "string",
lastUpdatedAt = as.POSIXct(
"2015-01-01"
),
name = "string",
port = 123,
protocol = "HTTP"|"HTTPS"|"TLS_PASSTHROUGH"
)
),
nextToken = "string"
)
Request syntax¶
svc$list_listeners(
maxResults = 123,
nextToken = "string",
serviceIdentifier = "string"
)