Show / Hide Table of Contents

Interface IApplicationLoadBalancerAttributes

Properties to reference an existing load balancer.

Namespace: Amazon.CDK.AWS.ElasticLoadBalancingV2
Assembly: Amazon.CDK.AWS.ElasticLoadBalancingV2.dll
Syntax (csharp)
public interface IApplicationLoadBalancerAttributes
Syntax (vb)
Public Interface IApplicationLoadBalancerAttributes

Synopsis

Properties

LoadBalancerArn

ARN of the load balancer.

LoadBalancerCanonicalHostedZoneId

The canonical hosted zone ID of this load balancer.

LoadBalancerDnsName

The DNS name of this load balancer.

SecurityGroupAllowsAllOutbound

Whether the security group allows all outbound traffic or not.

SecurityGroupId

ID of the load balancer's security group.

Vpc

The VPC this load balancer has been created in, if available.

Properties

LoadBalancerArn

ARN of the load balancer.

string LoadBalancerArn { get; }
Property Value

System.String

LoadBalancerCanonicalHostedZoneId

The canonical hosted zone ID of this load balancer.

virtual string LoadBalancerCanonicalHostedZoneId { get; }
Property Value

System.String

Remarks

Default: - When not provided, LB cannot be used as Route53 Alias target.

LoadBalancerDnsName

The DNS name of this load balancer.

virtual string LoadBalancerDnsName { get; }
Property Value

System.String

Remarks

Default: - When not provided, LB cannot be used as Route53 Alias target.

SecurityGroupAllowsAllOutbound

Whether the security group allows all outbound traffic or not.

virtual Nullable<bool> SecurityGroupAllowsAllOutbound { get; }
Property Value

System.Nullable<System.Boolean>

Remarks

Unless set to false, no egress rules will be added to the security group.

Default: true

SecurityGroupId

ID of the load balancer's security group.

string SecurityGroupId { get; }
Property Value

System.String

Vpc

The VPC this load balancer has been created in, if available.

virtual IVpc Vpc { get; }
Property Value

IVpc

Remarks

Default: - If the Load Balancer was imported and a VPC was not specified, the VPC is not available.

Back to top Generated by DocFX