aws-cdk-lib.cx_api.LoadBalancerListenerContextResponse

interface LoadBalancerListenerContextResponse

LanguageType name
.NETAmazon.CDK.CXAPI.LoadBalancerListenerContextResponse
Gogithub.com/aws/aws-cdk-go/awscdk/v2/cxapi#LoadBalancerListenerContextResponse
Javasoftware.amazon.awscdk.cxapi.LoadBalancerListenerContextResponse
Pythonaws_cdk.cx_api.LoadBalancerListenerContextResponse
TypeScript (source)aws-cdk-lib » cx_api » LoadBalancerListenerContextResponse

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 { cx_api } from 'aws-cdk-lib';
const loadBalancerListenerContextResponse: cx_api.LoadBalancerListenerContextResponse = {
  listenerArn: 'listenerArn',
  listenerPort: 123,
  securityGroupIds: ['securityGroupIds'],
};

Properties

NameTypeDescription
listenerArnstringThe ARN of the listener.
listenerPortnumberThe port the listener is listening on.
securityGroupIdsstring[]The security groups of the load balancer.

listenerArn

Type: string

The ARN of the listener.


listenerPort

Type: number

The port the listener is listening on.


securityGroupIds

Type: string[]

The security groups of the load balancer.