Interface ServiceLoadBalancerAddressOptions
- All Superinterfaces:
 software.amazon.jsii.JsiiSerializable
- All Known Subinterfaces:
 IngressLoadBalancerAddressOptions
- All Known Implementing Classes:
 IngressLoadBalancerAddressOptions.Jsii$Proxy,ServiceLoadBalancerAddressOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
           date="2023-06-19T16:30:46.666Z")
@Stability(Stable)
public interface ServiceLoadBalancerAddressOptions
extends software.amazon.jsii.JsiiSerializable
Options for fetching a ServiceLoadBalancerAddress.
 
Example:
 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.eks.*;
 import software.amazon.awscdk.core.*;
 ServiceLoadBalancerAddressOptions serviceLoadBalancerAddressOptions = ServiceLoadBalancerAddressOptions.builder()
         .namespace("namespace")
         .timeout(Duration.minutes(30))
         .build();
 - 
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forServiceLoadBalancerAddressOptionsstatic final classAn implementation forServiceLoadBalancerAddressOptions - 
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson 
- 
Method Details
- 
getNamespace
The namespace the service belongs to.Default: 'default'
 - 
getTimeout
Timeout for waiting on the load balancer address.Default: Duration.minutes(5)
 - 
builder
 
 -