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

Properties of a discovered load balancer.

Parameters:
  • ip_address_type (LoadBalancerIpAddressType) – Type of IP address.

  • load_balancer_arn (str) – The ARN of the load balancer.

  • load_balancer_canonical_hosted_zone_id (str) – The hosted zone ID of the load balancer’s name.

  • load_balancer_dns_name (str) – Load balancer’s DNS name.

  • security_group_ids (Sequence[str]) – Load balancer’s security groups.

  • vpc_id (str) – Load balancer’s VPC.

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

Type of IP address.

load_balancer_arn

The ARN of the load balancer.

load_balancer_canonical_hosted_zone_id

The hosted zone ID of the load balancer’s name.

load_balancer_dns_name

Load balancer’s DNS name.

security_group_ids

Load balancer’s security groups.

vpc_id

Load balancer’s VPC.