Show / Hide Table of Contents

Class ServiceLoadBalancerAddressOptions

Options for fetching a ServiceLoadBalancerAddress.

Inheritance
object
ServiceLoadBalancerAddressOptions
Implements
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.EKSv2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class ServiceLoadBalancerAddressOptions : IServiceLoadBalancerAddressOptions
Syntax (vb)
Public Class ServiceLoadBalancerAddressOptions Implements IServiceLoadBalancerAddressOptions
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.EKSv2;

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

Synopsis

Constructors

ServiceLoadBalancerAddressOptions()

Options for fetching a ServiceLoadBalancerAddress.

Properties

Namespace

The namespace the service belongs to.

Timeout

Timeout for waiting on the load balancer address.

Constructors

ServiceLoadBalancerAddressOptions()

Options for fetching a ServiceLoadBalancerAddress.

public ServiceLoadBalancerAddressOptions()
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.EKSv2;

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

Properties

Namespace

The namespace the service belongs to.

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

string

Remarks

Default: 'default'

Timeout

Timeout for waiting on the load balancer address.

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

Duration

Remarks

Default: Duration.minutes(5)

Implements

IServiceLoadBalancerAddressOptions
Back to top Generated by DocFX