package awsglobalaccelerator import ( "github.com/aws/aws-cdk-go/awscdk/v2" ) // Property of the EndpointGroup. // // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import cdk "github.com/aws/aws-cdk-go/awscdk" // import "github.com/aws/aws-cdk-go/awscdk" // // var endpoint iEndpoint // var listener listener // // endpointGroupProps := &EndpointGroupProps{ // Listener: listener, // // // the properties below are optional // EndpointGroupName: jsii.String("endpointGroupName"), // Endpoints: []*iEndpoint{ // endpoint, // }, // HealthCheckInterval: cdk.Duration_Minutes(jsii.Number(30)), // HealthCheckPath: jsii.String("healthCheckPath"), // HealthCheckPort: jsii.Number(123), // HealthCheckProtocol: awscdk.Aws_globalaccelerator.HealthCheckProtocol_TCP, // HealthCheckThreshold: jsii.Number(123), // PortOverrides: []portOverride{ // &portOverride{ // EndpointPort: jsii.Number(123), // ListenerPort: jsii.Number(123), // }, // }, // Region: jsii.String("region"), // TrafficDialPercentage: jsii.Number(123), // } // type EndpointGroupProps struct { // Name of the endpoint group. EndpointGroupName *string `field:"optional" json:"endpointGroupName" yaml:"endpointGroupName"` // Initial list of endpoints for this group. Endpoints *[]IEndpoint `field:"optional" json:"endpoints" yaml:"endpoints"` // The time between health checks for each endpoint. // // Must be either 10 or 30 seconds. HealthCheckInterval awscdk.Duration `field:"optional" json:"healthCheckInterval" yaml:"healthCheckInterval"` // The ping path for health checks (if the protocol is HTTP(S)). HealthCheckPath *string `field:"optional" json:"healthCheckPath" yaml:"healthCheckPath"` // The port used to perform health checks. HealthCheckPort *float64 `field:"optional" json:"healthCheckPort" yaml:"healthCheckPort"` // The protocol used to perform health checks. HealthCheckProtocol HealthCheckProtocol `field:"optional" json:"healthCheckProtocol" yaml:"healthCheckProtocol"` // 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. HealthCheckThreshold *float64 `field:"optional" json:"healthCheckThreshold" yaml:"healthCheckThreshold"` // Override the destination ports used to route traffic to an endpoint. // // Unless overridden, the port used to hit the endpoint will be the same as the port // that traffic arrives on at the listener. PortOverrides *[]*PortOverride `field:"optional" json:"portOverrides" yaml:"portOverrides"` // The AWS Region where the endpoint group is located. Region *string `field:"optional" json:"region" yaml:"region"` // The percentage of traffic to send to this AWS Region. // // The percentage is applied to the traffic that would otherwise have been // routed to the Region based on optimal routing. Additional traffic is // distributed to other endpoint groups for this listener. TrafficDialPercentage *float64 `field:"optional" json:"trafficDialPercentage" yaml:"trafficDialPercentage"` // The Amazon Resource Name (ARN) of the listener. Listener IListener `field:"required" json:"listener" yaml:"listener"` }