LoadBalancerContextResponse
- class aws_cdk.cx_api.LoadBalancerContextResponse(*, ip_address_type, load_balancer_arn, load_balancer_canonical_hosted_zone_id, load_balancer_dns_name, security_group_ids, vpc_id)
Bases:
object(deprecated) Properties of a discovered load balancer.
- Parameters:
ip_address_type (
LoadBalancerIpAddressType) – (deprecated) Type of IP address.load_balancer_arn (
str) – (deprecated) The ARN of the load balancer.load_balancer_canonical_hosted_zone_id (
str) – (deprecated) The hosted zone ID of the load balancer’s name.load_balancer_dns_name (
str) – (deprecated) Load balancer’s DNS name.security_group_ids (
Sequence[str]) – (deprecated) Load balancer’s security groups.vpc_id (
str) – (deprecated) Load balancer’s VPC.
- Deprecated:
The definition of this type has moved to
@aws-cdk/cloud-assembly-api.- Stability:
deprecated
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.cx_api as cx_api load_balancer_context_response = cx_api.LoadBalancerContextResponse( ip_address_type=cx_api.LoadBalancerIpAddressType.IPV4, load_balancer_arn="loadBalancerArn", load_balancer_canonical_hosted_zone_id="loadBalancerCanonicalHostedZoneId", load_balancer_dns_name="loadBalancerDnsName", security_group_ids=["securityGroupIds"], vpc_id="vpcId" )
Attributes
- ip_address_type
(deprecated) Type of IP address.
- Stability:
deprecated
- load_balancer_arn
(deprecated) The ARN of the load balancer.
- Stability:
deprecated
- load_balancer_canonical_hosted_zone_id
(deprecated) The hosted zone ID of the load balancer’s name.
- Stability:
deprecated
- load_balancer_dns_name
(deprecated) Load balancer’s DNS name.
- Stability:
deprecated
- security_group_ids
(deprecated) Load balancer’s security groups.
- Stability:
deprecated
- vpc_id
(deprecated) Load balancer’s VPC.
- Stability:
deprecated