Show / Hide Table of Contents

Interface IEndpointGroupProps

Property of the EndpointGroup.

Inherited Members
IEndpointGroupOptions.EndpointGroupName
IEndpointGroupOptions.Endpoints
IEndpointGroupOptions.HealthCheckInterval
IEndpointGroupOptions.HealthCheckPath
IEndpointGroupOptions.HealthCheckPort
IEndpointGroupOptions.HealthCheckProtocol
IEndpointGroupOptions.HealthCheckThreshold
IEndpointGroupOptions.PortOverrides
IEndpointGroupOptions.Region
IEndpointGroupOptions.TrafficDialPercentage
Namespace: Amazon.CDK.AWS.GlobalAccelerator
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IEndpointGroupProps : IEndpointGroupOptions
Syntax (vb)
Public Interface IEndpointGroupProps Inherits IEndpointGroupOptions
Remarks

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
            // The values are placeholders you should change.
            using Amazon.CDK;
            using Amazon.CDK.AWS.GlobalAccelerator;

            IEndpoint endpoint;
            Listener listener;

            var endpointGroupProps = new EndpointGroupProps {
                Listener = listener,

                // the properties below are optional
                EndpointGroupName = "endpointGroupName",
                Endpoints = new [] { endpoint },
                HealthCheckInterval = Duration.Minutes(30),
                HealthCheckPath = "healthCheckPath",
                HealthCheckPort = 123,
                HealthCheckProtocol = HealthCheckProtocol.TCP,
                HealthCheckThreshold = 123,
                PortOverrides = new [] { new PortOverride {
                    EndpointPort = 123,
                    ListenerPort = 123
                } },
                Region = "region",
                TrafficDialPercentage = 123
            };

Synopsis

Properties

Listener

The Amazon Resource Name (ARN) of the listener.

Properties

Listener

The Amazon Resource Name (ARN) of the listener.

IListener Listener { get; }
Property Value

IListener

Remarks

ExampleMetadata: fixture=_generated

Back to top Generated by DocFX