Class ServiceLoadBalancerAddressOptions
Options for fetching a ServiceLoadBalancerAddress.
Implements
Inherited Members
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
Remarks
Default: 'default'
Timeout
Timeout for waiting on the load balancer address.
public Duration? Timeout { get; set; }
Property Value
Remarks
Default: Duration.minutes(5)