Show / Hide Table of Contents

Interface IServiceLoadBalancerAddressOptions

(experimental) Options for fetching a ServiceLoadBalancerAddress.

Namespace: Amazon.CDK.AWS.Eks.V2.Alpha
Assembly: Amazon.CDK.AWS.Eks.V2.Alpha.dll
Syntax (csharp)
public interface IServiceLoadBalancerAddressOptions
Syntax (vb)
Public Interface IServiceLoadBalancerAddressOptions
Remarks

Stability: Experimental

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.AWS.Eks.V2.Alpha;
             using Amazon.CDK;

             var serviceLoadBalancerAddressOptions = new ServiceLoadBalancerAddressOptions {
                 Namespace = "namespace",
                 Timeout = Duration.Minutes(30)
             };

Synopsis

Properties

Namespace

(experimental) The namespace the service belongs to.

Timeout

(experimental) Timeout for waiting on the load balancer address.

Properties

Namespace

(experimental) The namespace the service belongs to.

string? Namespace { get; }
Property Value

string

Remarks

Default: 'default'

Stability: Experimental

Timeout

(experimental) Timeout for waiting on the load balancer address.

Duration? Timeout { get; }
Property Value

Duration

Remarks

Default: Duration.minutes(5)

Stability: Experimental

Back to top Generated by DocFX