Show / Hide Table of Contents

Class IngressLoadBalancerAddressOptions

(experimental) Options for fetching an IngressLoadBalancerAddress.

Inheritance
object
IngressLoadBalancerAddressOptions
Implements
IIngressLoadBalancerAddressOptions
IServiceLoadBalancerAddressOptions
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Eks.V2.Alpha
Assembly: Amazon.CDK.AWS.Eks.V2.Alpha.dll
Syntax (csharp)
public class IngressLoadBalancerAddressOptions : IIngressLoadBalancerAddressOptions, IServiceLoadBalancerAddressOptions
Syntax (vb)
Public Class IngressLoadBalancerAddressOptions Implements IIngressLoadBalancerAddressOptions, 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 ingressLoadBalancerAddressOptions = new IngressLoadBalancerAddressOptions {
                 Namespace = "namespace",
                 Timeout = Duration.Minutes(30)
             };

Synopsis

Constructors

IngressLoadBalancerAddressOptions()

(experimental) Options for fetching an IngressLoadBalancerAddress.

Properties

Namespace

(experimental) The namespace the service belongs to.

Timeout

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

Constructors

IngressLoadBalancerAddressOptions()

(experimental) Options for fetching an IngressLoadBalancerAddress.

public IngressLoadBalancerAddressOptions()
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 ingressLoadBalancerAddressOptions = new IngressLoadBalancerAddressOptions {
                 Namespace = "namespace",
                 Timeout = Duration.Minutes(30)
             };

Properties

Namespace

(experimental) The namespace the service belongs to.

public string? Namespace { get; set; }
Property Value

string

Remarks

Default: 'default'

Stability: Experimental

Timeout

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

public Duration? Timeout { get; set; }
Property Value

Duration

Remarks

Default: Duration.minutes(5)

Stability: Experimental

Implements

IIngressLoadBalancerAddressOptions
IServiceLoadBalancerAddressOptions
Back to top Generated by DocFX