interface LoadBalancerContextResponse
Language | Type name |
---|---|
.NET | Amazon.CDK.CXAPI.LoadBalancerContextResponse |
Java | software.amazon.awscdk.cxapi.LoadBalancerContextResponse |
Python | aws_cdk.cx_api.LoadBalancerContextResponse |
TypeScript (source) | @aws-cdk/cx-api » LoadBalancerContextResponse |
Properties of a discovered load balancer.
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 loadBalancerContextResponse: cx_api.LoadBalancerContextResponse = {
ipAddressType: cx_api.LoadBalancerIpAddressType.IPV4,
loadBalancerArn: 'loadBalancerArn',
loadBalancerCanonicalHostedZoneId: 'loadBalancerCanonicalHostedZoneId',
loadBalancerDnsName: 'loadBalancerDnsName',
securityGroupIds: ['securityGroupIds'],
vpcId: 'vpcId',
};
Properties
Name | Type | Description |
---|---|---|
ip | Load | Type of IP address. |
load | string | The ARN of the load balancer. |
load | string | The hosted zone ID of the load balancer's name. |
load | string | Load balancer's DNS name. |
security | string[] | Load balancer's security groups. |
vpc | string | Load balancer's VPC. |
ipAddressType
Type:
Load
Type of IP address.
loadBalancerArn
Type:
string
The ARN of the load balancer.
loadBalancerCanonicalHostedZoneId
Type:
string
The hosted zone ID of the load balancer's name.
loadBalancerDnsName
Type:
string
Load balancer's DNS name.
securityGroupIds
Type:
string[]
Load balancer's security groups.
vpcId
Type:
string
Load balancer's VPC.