1. Packages
  2. AWS Classic
  3. API Docs
  4. globalaccelerator
  5. EndpointGroup

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.28.1 published on Thursday, Mar 28, 2024 by Pulumi

aws.globalaccelerator.EndpointGroup

Explore with Pulumi AI

aws logo

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.28.1 published on Thursday, Mar 28, 2024 by Pulumi

    Provides a Global Accelerator endpoint group.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.globalaccelerator.EndpointGroup("example", {
        listenerArn: exampleAwsGlobalacceleratorListener.id,
        endpointConfigurations: [{
            endpointId: exampleAwsLb.arn,
            weight: 100,
        }],
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.globalaccelerator.EndpointGroup("example",
        listener_arn=example_aws_globalaccelerator_listener["id"],
        endpoint_configurations=[aws.globalaccelerator.EndpointGroupEndpointConfigurationArgs(
            endpoint_id=example_aws_lb["arn"],
            weight=100,
        )])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/globalaccelerator"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := globalaccelerator.NewEndpointGroup(ctx, "example", &globalaccelerator.EndpointGroupArgs{
    			ListenerArn: pulumi.Any(exampleAwsGlobalacceleratorListener.Id),
    			EndpointConfigurations: globalaccelerator.EndpointGroupEndpointConfigurationArray{
    				&globalaccelerator.EndpointGroupEndpointConfigurationArgs{
    					EndpointId: pulumi.Any(exampleAwsLb.Arn),
    					Weight:     pulumi.Int(100),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Aws.GlobalAccelerator.EndpointGroup("example", new()
        {
            ListenerArn = exampleAwsGlobalacceleratorListener.Id,
            EndpointConfigurations = new[]
            {
                new Aws.GlobalAccelerator.Inputs.EndpointGroupEndpointConfigurationArgs
                {
                    EndpointId = exampleAwsLb.Arn,
                    Weight = 100,
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.globalaccelerator.EndpointGroup;
    import com.pulumi.aws.globalaccelerator.EndpointGroupArgs;
    import com.pulumi.aws.globalaccelerator.inputs.EndpointGroupEndpointConfigurationArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var example = new EndpointGroup("example", EndpointGroupArgs.builder()        
                .listenerArn(exampleAwsGlobalacceleratorListener.id())
                .endpointConfigurations(EndpointGroupEndpointConfigurationArgs.builder()
                    .endpointId(exampleAwsLb.arn())
                    .weight(100)
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:globalaccelerator:EndpointGroup
        properties:
          listenerArn: ${exampleAwsGlobalacceleratorListener.id}
          endpointConfigurations:
            - endpointId: ${exampleAwsLb.arn}
              weight: 100
    

    Create EndpointGroup Resource

    new EndpointGroup(name: string, args: EndpointGroupArgs, opts?: CustomResourceOptions);
    @overload
    def EndpointGroup(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      endpoint_configurations: Optional[Sequence[EndpointGroupEndpointConfigurationArgs]] = None,
                      endpoint_group_region: Optional[str] = None,
                      health_check_interval_seconds: Optional[int] = None,
                      health_check_path: Optional[str] = None,
                      health_check_port: Optional[int] = None,
                      health_check_protocol: Optional[str] = None,
                      listener_arn: Optional[str] = None,
                      port_overrides: Optional[Sequence[EndpointGroupPortOverrideArgs]] = None,
                      threshold_count: Optional[int] = None,
                      traffic_dial_percentage: Optional[float] = None)
    @overload
    def EndpointGroup(resource_name: str,
                      args: EndpointGroupArgs,
                      opts: Optional[ResourceOptions] = None)
    func NewEndpointGroup(ctx *Context, name string, args EndpointGroupArgs, opts ...ResourceOption) (*EndpointGroup, error)
    public EndpointGroup(string name, EndpointGroupArgs args, CustomResourceOptions? opts = null)
    public EndpointGroup(String name, EndpointGroupArgs args)
    public EndpointGroup(String name, EndpointGroupArgs args, CustomResourceOptions options)
    
    type: aws:globalaccelerator:EndpointGroup
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args EndpointGroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args EndpointGroupArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args EndpointGroupArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args EndpointGroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args EndpointGroupArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    EndpointGroup Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The EndpointGroup resource accepts the following input properties:

    ListenerArn string
    The Amazon Resource Name (ARN) of the listener.
    EndpointConfigurations List<EndpointGroupEndpointConfiguration>
    The list of endpoint objects. Fields documented below.
    EndpointGroupRegion string
    The name of the AWS Region where the endpoint group is located.
    HealthCheckIntervalSeconds int
    The time—10 seconds or 30 seconds—between each health check for an endpoint. The default value is 30.
    HealthCheckPath string
    If the protocol is HTTP/S, then this specifies the path that is the destination for health check targets. The default value is slash (/). the provider will only perform drift detection of its value when present in a configuration.
    HealthCheckPort int
    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 listener port is a list of ports, Global Accelerator uses the first port in the list. the provider will only perform drift detection of its value when present in a configuration.
    HealthCheckProtocol string
    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.
    PortOverrides List<EndpointGroupPortOverride>
    Override specific listener ports used to route traffic to endpoints that are part of this endpoint group. Fields documented below.
    ThresholdCount int
    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.
    TrafficDialPercentage double
    The percentage of traffic to send to an AWS Region. Additional traffic is distributed to other endpoint groups for this listener. The default value is 100.
    ListenerArn string
    The Amazon Resource Name (ARN) of the listener.
    EndpointConfigurations []EndpointGroupEndpointConfigurationArgs
    The list of endpoint objects. Fields documented below.
    EndpointGroupRegion string
    The name of the AWS Region where the endpoint group is located.
    HealthCheckIntervalSeconds int
    The time—10 seconds or 30 seconds—between each health check for an endpoint. The default value is 30.
    HealthCheckPath string
    If the protocol is HTTP/S, then this specifies the path that is the destination for health check targets. The default value is slash (/). the provider will only perform drift detection of its value when present in a configuration.
    HealthCheckPort int
    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 listener port is a list of ports, Global Accelerator uses the first port in the list. the provider will only perform drift detection of its value when present in a configuration.
    HealthCheckProtocol string
    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.
    PortOverrides []EndpointGroupPortOverrideArgs
    Override specific listener ports used to route traffic to endpoints that are part of this endpoint group. Fields documented below.
    ThresholdCount int
    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.
    TrafficDialPercentage float64
    The percentage of traffic to send to an AWS Region. Additional traffic is distributed to other endpoint groups for this listener. The default value is 100.
    listenerArn String
    The Amazon Resource Name (ARN) of the listener.
    endpointConfigurations List<EndpointGroupEndpointConfiguration>
    The list of endpoint objects. Fields documented below.
    endpointGroupRegion String
    The name of the AWS Region where the endpoint group is located.
    healthCheckIntervalSeconds Integer
    The time—10 seconds or 30 seconds—between each health check for an endpoint. The default value is 30.
    healthCheckPath String
    If the protocol is HTTP/S, then this specifies the path that is the destination for health check targets. The default value is slash (/). the provider will only perform drift detection of its value when present in a configuration.
    healthCheckPort Integer
    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 listener port is a list of ports, Global Accelerator uses the first port in the list. the provider will only perform drift detection of its value when present in a configuration.
    healthCheckProtocol String
    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.
    portOverrides List<EndpointGroupPortOverride>
    Override specific listener ports used to route traffic to endpoints that are part of this endpoint group. Fields documented below.
    thresholdCount Integer
    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.
    trafficDialPercentage Double
    The percentage of traffic to send to an AWS Region. Additional traffic is distributed to other endpoint groups for this listener. The default value is 100.
    listenerArn string
    The Amazon Resource Name (ARN) of the listener.
    endpointConfigurations EndpointGroupEndpointConfiguration[]
    The list of endpoint objects. Fields documented below.
    endpointGroupRegion string
    The name of the AWS Region where the endpoint group is located.
    healthCheckIntervalSeconds number
    The time—10 seconds or 30 seconds—between each health check for an endpoint. The default value is 30.
    healthCheckPath string
    If the protocol is HTTP/S, then this specifies the path that is the destination for health check targets. The default value is slash (/). the provider will only perform drift detection of its value when present in a configuration.
    healthCheckPort number
    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 listener port is a list of ports, Global Accelerator uses the first port in the list. the provider will only perform drift detection of its value when present in a configuration.
    healthCheckProtocol string
    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.
    portOverrides EndpointGroupPortOverride[]
    Override specific listener ports used to route traffic to endpoints that are part of this endpoint group. Fields documented below.
    thresholdCount number
    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.
    trafficDialPercentage number
    The percentage of traffic to send to an AWS Region. Additional traffic is distributed to other endpoint groups for this listener. The default value is 100.
    listener_arn str
    The Amazon Resource Name (ARN) of the listener.
    endpoint_configurations Sequence[EndpointGroupEndpointConfigurationArgs]
    The list of endpoint objects. Fields documented below.
    endpoint_group_region str
    The name of the AWS Region where the endpoint group is located.
    health_check_interval_seconds int
    The time—10 seconds or 30 seconds—between each health check for an endpoint. The default value is 30.
    health_check_path str
    If the protocol is HTTP/S, then this specifies the path that is the destination for health check targets. The default value is slash (/). the provider will only perform drift detection of its value when present in a configuration.
    health_check_port int
    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 listener port is a list of ports, Global Accelerator uses the first port in the list. the provider will only perform drift detection of its value when present in a configuration.
    health_check_protocol str
    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.
    port_overrides Sequence[EndpointGroupPortOverrideArgs]
    Override specific listener ports used to route traffic to endpoints that are part of this endpoint group. Fields documented below.
    threshold_count int
    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.
    traffic_dial_percentage float
    The percentage of traffic to send to an AWS Region. Additional traffic is distributed to other endpoint groups for this listener. The default value is 100.
    listenerArn String
    The Amazon Resource Name (ARN) of the listener.
    endpointConfigurations List<Property Map>
    The list of endpoint objects. Fields documented below.
    endpointGroupRegion String
    The name of the AWS Region where the endpoint group is located.
    healthCheckIntervalSeconds Number
    The time—10 seconds or 30 seconds—between each health check for an endpoint. The default value is 30.
    healthCheckPath String
    If the protocol is HTTP/S, then this specifies the path that is the destination for health check targets. The default value is slash (/). the provider will only perform drift detection of its value when present in a configuration.
    healthCheckPort Number
    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 listener port is a list of ports, Global Accelerator uses the first port in the list. the provider will only perform drift detection of its value when present in a configuration.
    healthCheckProtocol String
    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.
    portOverrides List<Property Map>
    Override specific listener ports used to route traffic to endpoints that are part of this endpoint group. Fields documented below.
    thresholdCount Number
    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.
    trafficDialPercentage Number
    The percentage of traffic to send to an AWS Region. Additional traffic is distributed to other endpoint groups for this listener. The default value is 100.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the EndpointGroup resource produces the following output properties:

    Arn string
    The Amazon Resource Name (ARN) of the endpoint group.
    Id string
    The provider-assigned unique ID for this managed resource.
    Arn string
    The Amazon Resource Name (ARN) of the endpoint group.
    Id string
    The provider-assigned unique ID for this managed resource.
    arn String
    The Amazon Resource Name (ARN) of the endpoint group.
    id String
    The provider-assigned unique ID for this managed resource.
    arn string
    The Amazon Resource Name (ARN) of the endpoint group.
    id string
    The provider-assigned unique ID for this managed resource.
    arn str
    The Amazon Resource Name (ARN) of the endpoint group.
    id str
    The provider-assigned unique ID for this managed resource.
    arn String
    The Amazon Resource Name (ARN) of the endpoint group.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing EndpointGroup Resource

    Get an existing EndpointGroup resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: EndpointGroupState, opts?: CustomResourceOptions): EndpointGroup
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            arn: Optional[str] = None,
            endpoint_configurations: Optional[Sequence[EndpointGroupEndpointConfigurationArgs]] = None,
            endpoint_group_region: Optional[str] = None,
            health_check_interval_seconds: Optional[int] = None,
            health_check_path: Optional[str] = None,
            health_check_port: Optional[int] = None,
            health_check_protocol: Optional[str] = None,
            listener_arn: Optional[str] = None,
            port_overrides: Optional[Sequence[EndpointGroupPortOverrideArgs]] = None,
            threshold_count: Optional[int] = None,
            traffic_dial_percentage: Optional[float] = None) -> EndpointGroup
    func GetEndpointGroup(ctx *Context, name string, id IDInput, state *EndpointGroupState, opts ...ResourceOption) (*EndpointGroup, error)
    public static EndpointGroup Get(string name, Input<string> id, EndpointGroupState? state, CustomResourceOptions? opts = null)
    public static EndpointGroup get(String name, Output<String> id, EndpointGroupState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Arn string
    The Amazon Resource Name (ARN) of the endpoint group.
    EndpointConfigurations List<EndpointGroupEndpointConfiguration>
    The list of endpoint objects. Fields documented below.
    EndpointGroupRegion string
    The name of the AWS Region where the endpoint group is located.
    HealthCheckIntervalSeconds int
    The time—10 seconds or 30 seconds—between each health check for an endpoint. The default value is 30.
    HealthCheckPath string
    If the protocol is HTTP/S, then this specifies the path that is the destination for health check targets. The default value is slash (/). the provider will only perform drift detection of its value when present in a configuration.
    HealthCheckPort int
    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 listener port is a list of ports, Global Accelerator uses the first port in the list. the provider will only perform drift detection of its value when present in a configuration.
    HealthCheckProtocol string
    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.
    ListenerArn string
    The Amazon Resource Name (ARN) of the listener.
    PortOverrides List<EndpointGroupPortOverride>
    Override specific listener ports used to route traffic to endpoints that are part of this endpoint group. Fields documented below.
    ThresholdCount int
    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.
    TrafficDialPercentage double
    The percentage of traffic to send to an AWS Region. Additional traffic is distributed to other endpoint groups for this listener. The default value is 100.
    Arn string
    The Amazon Resource Name (ARN) of the endpoint group.
    EndpointConfigurations []EndpointGroupEndpointConfigurationArgs
    The list of endpoint objects. Fields documented below.
    EndpointGroupRegion string
    The name of the AWS Region where the endpoint group is located.
    HealthCheckIntervalSeconds int
    The time—10 seconds or 30 seconds—between each health check for an endpoint. The default value is 30.
    HealthCheckPath string
    If the protocol is HTTP/S, then this specifies the path that is the destination for health check targets. The default value is slash (/). the provider will only perform drift detection of its value when present in a configuration.
    HealthCheckPort int
    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 listener port is a list of ports, Global Accelerator uses the first port in the list. the provider will only perform drift detection of its value when present in a configuration.
    HealthCheckProtocol string
    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.
    ListenerArn string
    The Amazon Resource Name (ARN) of the listener.
    PortOverrides []EndpointGroupPortOverrideArgs
    Override specific listener ports used to route traffic to endpoints that are part of this endpoint group. Fields documented below.
    ThresholdCount int
    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.
    TrafficDialPercentage float64
    The percentage of traffic to send to an AWS Region. Additional traffic is distributed to other endpoint groups for this listener. The default value is 100.
    arn String
    The Amazon Resource Name (ARN) of the endpoint group.
    endpointConfigurations List<EndpointGroupEndpointConfiguration>
    The list of endpoint objects. Fields documented below.
    endpointGroupRegion String
    The name of the AWS Region where the endpoint group is located.
    healthCheckIntervalSeconds Integer
    The time—10 seconds or 30 seconds—between each health check for an endpoint. The default value is 30.
    healthCheckPath String
    If the protocol is HTTP/S, then this specifies the path that is the destination for health check targets. The default value is slash (/). the provider will only perform drift detection of its value when present in a configuration.
    healthCheckPort Integer
    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 listener port is a list of ports, Global Accelerator uses the first port in the list. the provider will only perform drift detection of its value when present in a configuration.
    healthCheckProtocol String
    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.
    listenerArn String
    The Amazon Resource Name (ARN) of the listener.
    portOverrides List<EndpointGroupPortOverride>
    Override specific listener ports used to route traffic to endpoints that are part of this endpoint group. Fields documented below.
    thresholdCount Integer
    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.
    trafficDialPercentage Double
    The percentage of traffic to send to an AWS Region. Additional traffic is distributed to other endpoint groups for this listener. The default value is 100.
    arn string
    The Amazon Resource Name (ARN) of the endpoint group.
    endpointConfigurations EndpointGroupEndpointConfiguration[]
    The list of endpoint objects. Fields documented below.
    endpointGroupRegion string
    The name of the AWS Region where the endpoint group is located.
    healthCheckIntervalSeconds number
    The time—10 seconds or 30 seconds—between each health check for an endpoint. The default value is 30.
    healthCheckPath string
    If the protocol is HTTP/S, then this specifies the path that is the destination for health check targets. The default value is slash (/). the provider will only perform drift detection of its value when present in a configuration.
    healthCheckPort number
    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 listener port is a list of ports, Global Accelerator uses the first port in the list. the provider will only perform drift detection of its value when present in a configuration.
    healthCheckProtocol string
    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.
    listenerArn string
    The Amazon Resource Name (ARN) of the listener.
    portOverrides EndpointGroupPortOverride[]
    Override specific listener ports used to route traffic to endpoints that are part of this endpoint group. Fields documented below.
    thresholdCount number
    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.
    trafficDialPercentage number
    The percentage of traffic to send to an AWS Region. Additional traffic is distributed to other endpoint groups for this listener. The default value is 100.
    arn str
    The Amazon Resource Name (ARN) of the endpoint group.
    endpoint_configurations Sequence[EndpointGroupEndpointConfigurationArgs]
    The list of endpoint objects. Fields documented below.
    endpoint_group_region str
    The name of the AWS Region where the endpoint group is located.
    health_check_interval_seconds int
    The time—10 seconds or 30 seconds—between each health check for an endpoint. The default value is 30.
    health_check_path str
    If the protocol is HTTP/S, then this specifies the path that is the destination for health check targets. The default value is slash (/). the provider will only perform drift detection of its value when present in a configuration.
    health_check_port int
    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 listener port is a list of ports, Global Accelerator uses the first port in the list. the provider will only perform drift detection of its value when present in a configuration.
    health_check_protocol str
    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.
    listener_arn str
    The Amazon Resource Name (ARN) of the listener.
    port_overrides Sequence[EndpointGroupPortOverrideArgs]
    Override specific listener ports used to route traffic to endpoints that are part of this endpoint group. Fields documented below.
    threshold_count int
    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.
    traffic_dial_percentage float
    The percentage of traffic to send to an AWS Region. Additional traffic is distributed to other endpoint groups for this listener. The default value is 100.
    arn String
    The Amazon Resource Name (ARN) of the endpoint group.
    endpointConfigurations List<Property Map>
    The list of endpoint objects. Fields documented below.
    endpointGroupRegion String
    The name of the AWS Region where the endpoint group is located.
    healthCheckIntervalSeconds Number
    The time—10 seconds or 30 seconds—between each health check for an endpoint. The default value is 30.
    healthCheckPath String
    If the protocol is HTTP/S, then this specifies the path that is the destination for health check targets. The default value is slash (/). the provider will only perform drift detection of its value when present in a configuration.
    healthCheckPort Number
    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 listener port is a list of ports, Global Accelerator uses the first port in the list. the provider will only perform drift detection of its value when present in a configuration.
    healthCheckProtocol String
    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.
    listenerArn String
    The Amazon Resource Name (ARN) of the listener.
    portOverrides List<Property Map>
    Override specific listener ports used to route traffic to endpoints that are part of this endpoint group. Fields documented below.
    thresholdCount Number
    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.
    trafficDialPercentage Number
    The percentage of traffic to send to an AWS Region. Additional traffic is distributed to other endpoint groups for this listener. The default value is 100.

    Supporting Types

    EndpointGroupEndpointConfiguration, EndpointGroupEndpointConfigurationArgs

    ClientIpPreservationEnabled bool
    Indicates whether client IP address preservation is enabled for an Application Load Balancer endpoint. See the AWS documentation for more details. The default value is false. Note: When client IP address preservation is enabled, the Global Accelerator service creates an EC2 Security Group in the VPC named GlobalAccelerator that must be deleted (potentially outside of the provider) before the VPC will successfully delete. If this EC2 Security Group is not deleted, the provider will retry the VPC deletion for a few minutes before reporting a DependencyViolation error. This cannot be resolved by re-running the provider.
    EndpointId string
    An ID for the endpoint. If the endpoint is a Network Load Balancer or Application Load Balancer, this is the Amazon Resource Name (ARN) of the resource. If the endpoint is an Elastic IP address, this is the Elastic IP address allocation ID.
    Weight int
    The weight associated with the endpoint. When you add weights to endpoints, you configure AWS Global Accelerator to route traffic based on proportions that you specify.
    ClientIpPreservationEnabled bool
    Indicates whether client IP address preservation is enabled for an Application Load Balancer endpoint. See the AWS documentation for more details. The default value is false. Note: When client IP address preservation is enabled, the Global Accelerator service creates an EC2 Security Group in the VPC named GlobalAccelerator that must be deleted (potentially outside of the provider) before the VPC will successfully delete. If this EC2 Security Group is not deleted, the provider will retry the VPC deletion for a few minutes before reporting a DependencyViolation error. This cannot be resolved by re-running the provider.
    EndpointId string
    An ID for the endpoint. If the endpoint is a Network Load Balancer or Application Load Balancer, this is the Amazon Resource Name (ARN) of the resource. If the endpoint is an Elastic IP address, this is the Elastic IP address allocation ID.
    Weight int
    The weight associated with the endpoint. When you add weights to endpoints, you configure AWS Global Accelerator to route traffic based on proportions that you specify.
    clientIpPreservationEnabled Boolean
    Indicates whether client IP address preservation is enabled for an Application Load Balancer endpoint. See the AWS documentation for more details. The default value is false. Note: When client IP address preservation is enabled, the Global Accelerator service creates an EC2 Security Group in the VPC named GlobalAccelerator that must be deleted (potentially outside of the provider) before the VPC will successfully delete. If this EC2 Security Group is not deleted, the provider will retry the VPC deletion for a few minutes before reporting a DependencyViolation error. This cannot be resolved by re-running the provider.
    endpointId String
    An ID for the endpoint. If the endpoint is a Network Load Balancer or Application Load Balancer, this is the Amazon Resource Name (ARN) of the resource. If the endpoint is an Elastic IP address, this is the Elastic IP address allocation ID.
    weight Integer
    The weight associated with the endpoint. When you add weights to endpoints, you configure AWS Global Accelerator to route traffic based on proportions that you specify.
    clientIpPreservationEnabled boolean
    Indicates whether client IP address preservation is enabled for an Application Load Balancer endpoint. See the AWS documentation for more details. The default value is false. Note: When client IP address preservation is enabled, the Global Accelerator service creates an EC2 Security Group in the VPC named GlobalAccelerator that must be deleted (potentially outside of the provider) before the VPC will successfully delete. If this EC2 Security Group is not deleted, the provider will retry the VPC deletion for a few minutes before reporting a DependencyViolation error. This cannot be resolved by re-running the provider.
    endpointId string
    An ID for the endpoint. If the endpoint is a Network Load Balancer or Application Load Balancer, this is the Amazon Resource Name (ARN) of the resource. If the endpoint is an Elastic IP address, this is the Elastic IP address allocation ID.
    weight number
    The weight associated with the endpoint. When you add weights to endpoints, you configure AWS Global Accelerator to route traffic based on proportions that you specify.
    client_ip_preservation_enabled bool
    Indicates whether client IP address preservation is enabled for an Application Load Balancer endpoint. See the AWS documentation for more details. The default value is false. Note: When client IP address preservation is enabled, the Global Accelerator service creates an EC2 Security Group in the VPC named GlobalAccelerator that must be deleted (potentially outside of the provider) before the VPC will successfully delete. If this EC2 Security Group is not deleted, the provider will retry the VPC deletion for a few minutes before reporting a DependencyViolation error. This cannot be resolved by re-running the provider.
    endpoint_id str
    An ID for the endpoint. If the endpoint is a Network Load Balancer or Application Load Balancer, this is the Amazon Resource Name (ARN) of the resource. If the endpoint is an Elastic IP address, this is the Elastic IP address allocation ID.
    weight int
    The weight associated with the endpoint. When you add weights to endpoints, you configure AWS Global Accelerator to route traffic based on proportions that you specify.
    clientIpPreservationEnabled Boolean
    Indicates whether client IP address preservation is enabled for an Application Load Balancer endpoint. See the AWS documentation for more details. The default value is false. Note: When client IP address preservation is enabled, the Global Accelerator service creates an EC2 Security Group in the VPC named GlobalAccelerator that must be deleted (potentially outside of the provider) before the VPC will successfully delete. If this EC2 Security Group is not deleted, the provider will retry the VPC deletion for a few minutes before reporting a DependencyViolation error. This cannot be resolved by re-running the provider.
    endpointId String
    An ID for the endpoint. If the endpoint is a Network Load Balancer or Application Load Balancer, this is the Amazon Resource Name (ARN) of the resource. If the endpoint is an Elastic IP address, this is the Elastic IP address allocation ID.
    weight Number
    The weight associated with the endpoint. When you add weights to endpoints, you configure AWS Global Accelerator to route traffic based on proportions that you specify.

    EndpointGroupPortOverride, EndpointGroupPortOverrideArgs

    EndpointPort int
    The endpoint port that you want a listener port to be mapped to. This is the port on the endpoint, such as the Application Load Balancer or Amazon EC2 instance.
    ListenerPort int
    The listener port that you want to map to a specific endpoint port. This is the port that user traffic arrives to the Global Accelerator on.
    EndpointPort int
    The endpoint port that you want a listener port to be mapped to. This is the port on the endpoint, such as the Application Load Balancer or Amazon EC2 instance.
    ListenerPort int
    The listener port that you want to map to a specific endpoint port. This is the port that user traffic arrives to the Global Accelerator on.
    endpointPort Integer
    The endpoint port that you want a listener port to be mapped to. This is the port on the endpoint, such as the Application Load Balancer or Amazon EC2 instance.
    listenerPort Integer
    The listener port that you want to map to a specific endpoint port. This is the port that user traffic arrives to the Global Accelerator on.
    endpointPort number
    The endpoint port that you want a listener port to be mapped to. This is the port on the endpoint, such as the Application Load Balancer or Amazon EC2 instance.
    listenerPort number
    The listener port that you want to map to a specific endpoint port. This is the port that user traffic arrives to the Global Accelerator on.
    endpoint_port int
    The endpoint port that you want a listener port to be mapped to. This is the port on the endpoint, such as the Application Load Balancer or Amazon EC2 instance.
    listener_port int
    The listener port that you want to map to a specific endpoint port. This is the port that user traffic arrives to the Global Accelerator on.
    endpointPort Number
    The endpoint port that you want a listener port to be mapped to. This is the port on the endpoint, such as the Application Load Balancer or Amazon EC2 instance.
    listenerPort Number
    The listener port that you want to map to a specific endpoint port. This is the port that user traffic arrives to the Global Accelerator on.

    Import

    Using pulumi import, import Global Accelerator endpoint groups using the id. For example:

    $ pulumi import aws:globalaccelerator/endpointGroup:EndpointGroup example arn:aws:globalaccelerator::111111111111:accelerator/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/listener/xxxxxxx/endpoint-group/xxxxxxxx
    

    Package Details

    Repository
    AWS Classic pulumi/pulumi-aws
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the aws Terraform Provider.
    aws logo

    Try AWS Native preview for resources not in the classic version.

    AWS Classic v6.28.1 published on Thursday, Mar 28, 2024 by Pulumi