Skip to content

Describe Endpoint Group

globalaccelerator_describe_endpoint_group R Documentation

Describe an endpoint group

Description

Describe an endpoint group.

Usage

globalaccelerator_describe_endpoint_group(EndpointGroupArn)

Arguments

EndpointGroupArn

[required] The Amazon Resource Name (ARN) of the endpoint group to describe.

Value

A list with the following syntax:

list(
  EndpointGroup = 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
      )
    )
  )
)

Request syntax

svc$describe_endpoint_group(
  EndpointGroupArn = "string"
)