LoadBalancerArgs

data class LoadBalancerArgs(val ipAddressType: Output<String>? = null, val loadBalancerAttributes: Output<List<LoadBalancerAttributeArgs>>? = null, val name: Output<String>? = null, val scheme: Output<String>? = null, val securityGroups: Output<List<String>>? = null, val subnetMappings: Output<List<LoadBalancerSubnetMappingArgs>>? = null, val subnets: Output<List<String>>? = null, val tags: Output<List<LoadBalancerTagArgs>>? = null, val type: Output<String>? = null) : ConvertibleToJava<LoadBalancerArgs>

Resource Type definition for AWS::ElasticLoadBalancingV2::LoadBalancer

Constructors

Link copied to clipboard
fun LoadBalancerArgs(ipAddressType: Output<String>? = null, loadBalancerAttributes: Output<List<LoadBalancerAttributeArgs>>? = null, name: Output<String>? = null, scheme: Output<String>? = null, securityGroups: Output<List<String>>? = null, subnetMappings: Output<List<LoadBalancerSubnetMappingArgs>>? = null, subnets: Output<List<String>>? = null, tags: Output<List<LoadBalancerTagArgs>>? = null, type: Output<String>? = null)

Functions

Link copied to clipboard
open override fun toJava(): LoadBalancerArgs

Properties

Link copied to clipboard
val ipAddressType: Output<String>? = null

The type of IP addresses used by the subnets for your load balancer. The possible values are ipv4 (for IPv4 addresses) and dualstack (for IPv4 and IPv6 addresses).

Link copied to clipboard

The load balancer attributes.

Link copied to clipboard
val name: Output<String>? = null

The name of the load balancer.

Link copied to clipboard
val scheme: Output<String>? = null

The nodes of an Internet-facing load balancer have public IP addresses. The DNS name of an Internet-facing load balancer is publicly resolvable to the public IP addresses of the nodes. Therefore, Internet-facing load balancers can route requests from clients over the internet. The nodes of an internal load balancer have only private IP addresses. The DNS name of an internal load balancer is publicly resolvable to the private IP addresses of the nodes. Therefore, internal load balancers can route requests only from clients with access to the VPC for the load balancer. The default is an Internet-facing load balancer.

Link copied to clipboard
val securityGroups: Output<List<String>>? = null

The IDs of the security groups for the load balancer.

Link copied to clipboard

The IDs of the public subnets. You can specify only one subnet per Availability Zone. You must specify either subnets or subnet mappings, but not both.

Link copied to clipboard
val subnets: Output<List<String>>? = null

The IDs of the public subnets. You can specify only one subnet per Availability Zone. You must specify either subnets or subnet mappings, but not both. To specify an Elastic IP address, specify subnet mappings instead of subnets.

Link copied to clipboard
val tags: Output<List<LoadBalancerTagArgs>>? = null

The tags to assign to the load balancer.

Link copied to clipboard
val type: Output<String>? = null

The type of load balancer. The default is application.