@aws-cdk_cx-api.LoadBalancerListenerContextResponse

interface LoadBalancerListenerContextResponse

LanguageType name
.NETAmazon.CDK.CXAPI.LoadBalancerListenerContextResponse
Javasoftware.amazon.awscdk.cxapi.LoadBalancerListenerContextResponse
Pythonaws_cdk.cx_api.LoadBalancerListenerContextResponse
TypeScript (source)@aws-cdk/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 * as cx_api from '@aws-cdk/cx-api';
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.