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.84.0 (build 5404dcf)",
date="2023-06-19T16:30:44.220Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forBaseListenerLookupOptions
static final class
An 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.Builder
ofBaseListenerLookupOptions
-