paws.networking (version 0.1.6)

globalaccelerator_update_endpoint_group: Update an endpoint group

Description

Update an endpoint group. To see an AWS CLI example of updating an endpoint group, scroll down to Example.

Usage

globalaccelerator_update_endpoint_group(EndpointGroupArn,
  EndpointConfigurations, TrafficDialPercentage, HealthCheckPort,
  HealthCheckProtocol, HealthCheckPath, HealthCheckIntervalSeconds,
  ThresholdCount)

Arguments

EndpointGroupArn

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

EndpointConfigurations

The list of endpoint objects.

TrafficDialPercentage

The percentage of traffic to send to an AWS Region. Additional traffic is distributed to other endpoint groups for this listener.

Use this action to increase (dial up) or decrease (dial down) traffic to a specific Region. The percentage is applied to the traffic that would otherwise have been routed to the Region based on optimal routing.

The default value is 100.

HealthCheckPort

The port that AWS Global Accelerator uses to check the health of endpoints that are part of this endpoint group. The default port is the listener port that this endpoint group is associated with. If the listener port is a list of ports, Global Accelerator uses the first port in the list.

HealthCheckProtocol

The protocol that AWS Global Accelerator uses to check the health of endpoints that are part of this endpoint group. The default value is TCP.

HealthCheckPath

If the protocol is HTTP/S, then this specifies the path that is the destination for health check targets. The default value is slash (/).

HealthCheckIntervalSeconds

The time---10 seconds or 30 seconds---between each health check for an endpoint. The default value is 30.

ThresholdCount

The number of consecutive health checks required to set the state of a healthy endpoint to unhealthy, or to set an unhealthy endpoint to healthy. The default value is 3.

Request syntax

svc$update_endpoint_group(
  EndpointGroupArn = "string",
  EndpointConfigurations = list(
    list(
      EndpointId = "string",
      Weight = 123,
      ClientIPPreservationEnabled = TRUE|FALSE
    )
  ),
  TrafficDialPercentage = 123.0,
  HealthCheckPort = 123,
  HealthCheckProtocol = "TCP"|"HTTP"|"HTTPS",
  HealthCheckPath = "string",
  HealthCheckIntervalSeconds = 123,
  ThresholdCount = 123
)