List Endpoint Groups
| globalaccelerator_list_endpoint_groups | R Documentation |
List the endpoint groups that are associated with a listener¶
Description¶
List the endpoint groups that are associated with a listener.
Usage¶
Arguments¶
ListenerArn[required] The Amazon Resource Name (ARN) of the listener.
MaxResultsThe number of endpoint group objects that you want to return with this call. The default value is 10.
NextTokenThe token for the next set of results. You receive this token from a previous call.
Value¶
A list with the following syntax:
list(
EndpointGroups = list(
list(
EndpointGroupArn = "string",
EndpointGroupRegion = "string",
EndpointDescriptions = list(
list(
EndpointId = "string",
Weight = 123,
HealthState = "INITIAL"|"HEALTHY"|"UNHEALTHY",
HealthReason = "string",
ClientIPPreservationEnabled = TRUE|FALSE
)
),
TrafficDialPercentage = 123.0,
HealthCheckPort = 123,
HealthCheckProtocol = "TCP"|"HTTP"|"HTTPS",
HealthCheckPath = "string",
HealthCheckIntervalSeconds = 123,
ThresholdCount = 123,
PortOverrides = list(
list(
ListenerPort = 123,
EndpointPort = 123
)
)
)
),
NextToken = "string"
)