Package software.amazon.awscdk.cxapi
Interface LoadBalancerListenerContextResponse
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
LoadBalancerListenerContextResponse.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:18.450Z")
@Stability(Stable)
public interface LoadBalancerListenerContextResponse
extends software.amazon.jsii.JsiiSerializable
Properties of a discovered 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.cxapi.*;
LoadBalancerListenerContextResponse loadBalancerListenerContextResponse = LoadBalancerListenerContextResponse.builder()
.listenerArn("listenerArn")
.listenerPort(123)
.securityGroupIds(List.of("securityGroupIds"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forLoadBalancerListenerContextResponsestatic final classAn implementation forLoadBalancerListenerContextResponse -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The ARN of the listener.The port the listener is listening on.The security groups of the load balancer.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getListenerArn
The ARN of the listener. -
getListenerPort
The port the listener is listening on. -
getSecurityGroupIds
The security groups of the load balancer. -
builder
-