Interface LoadBalancerListenerContextQuery

All Superinterfaces:
ContextLookupRoleOptions, software.amazon.jsii.JsiiSerializable, LoadBalancerFilter
All Known Implementing Classes:
LoadBalancerListenerContextQuery.Jsii$Proxy

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2024-11-21T06:34:17.573Z") @Stability(Stable) public interface LoadBalancerListenerContextQuery extends software.amazon.jsii.JsiiSerializable, LoadBalancerFilter
Query input for looking up a load balancer listener.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cloud_assembly_schema.*;
 Object assumeRoleAdditionalOptions;
 LoadBalancerListenerContextQuery loadBalancerListenerContextQuery = LoadBalancerListenerContextQuery.builder()
         .account("account")
         .loadBalancerType(LoadBalancerType.NETWORK)
         .region("region")
         // the properties below are optional
         .assumeRoleAdditionalOptions(Map.of(
                 "assumeRoleAdditionalOptionsKey", assumeRoleAdditionalOptions))
         .listenerArn("listenerArn")
         .listenerPort(123)
         .listenerProtocol(LoadBalancerListenerProtocol.HTTP)
         .loadBalancerArn("loadBalancerArn")
         .loadBalancerTags(List.of(Tag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .lookupRoleArn("lookupRoleArn")
         .lookupRoleExternalId("lookupRoleExternalId")
         .build();