Interface BaseListenerLookupOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Subinterfaces:
ApplicationListenerLookupOptions,NetworkListenerLookupOptions
- All Known Implementing Classes:
ApplicationListenerLookupOptions.Jsii$Proxy,BaseListenerLookupOptions.Jsii$Proxy,NetworkListenerLookupOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-13T16:10:05.212Z")
@Stability(Stable)
public interface BaseListenerLookupOptions
extends software.amazon.jsii.JsiiSerializable
Options for listener lookup.
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.elasticloadbalancingv2.*;
BaseListenerLookupOptions baseListenerLookupOptions = BaseListenerLookupOptions.builder()
.listenerPort(123)
.loadBalancerArn("loadBalancerArn")
.loadBalancerTags(Map.of(
"loadBalancerTagsKey", "loadBalancerTags"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forBaseListenerLookupOptionsstatic final classAn implementation forBaseListenerLookupOptions -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getListenerPort
Filter listeners by listener port.Default: - does not filter by listener port
-
getLoadBalancerArn
Filter listeners by associated load balancer arn.Default: - does not filter by load balancer arn
-
getLoadBalancerTags
Filter listeners by associated load balancer tags.Default: - does not filter by load balancer tags
-
builder
- Returns:
- a
BaseListenerLookupOptions.BuilderofBaseListenerLookupOptions
-