Interface IEndpointGroupProps
Property of the EndpointGroup.
Inherited Members
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
Remarks
ExampleMetadata: fixture=_generated