Interface AwsElbv2LoadBalancerDetails.Builder

All Superinterfaces:
Buildable, CopyableBuilder<AwsElbv2LoadBalancerDetails.Builder,AwsElbv2LoadBalancerDetails>, SdkBuilder<AwsElbv2LoadBalancerDetails.Builder,AwsElbv2LoadBalancerDetails>, SdkPojo
Enclosing class:
AwsElbv2LoadBalancerDetails

public static interface AwsElbv2LoadBalancerDetails.Builder extends SdkPojo, CopyableBuilder<AwsElbv2LoadBalancerDetails.Builder,AwsElbv2LoadBalancerDetails>
  • Method Details

    • availabilityZones

      AwsElbv2LoadBalancerDetails.Builder availabilityZones(Collection<AvailabilityZone> availabilityZones)

      The Availability Zones for the load balancer.

      Parameters:
      availabilityZones - The Availability Zones for the load balancer.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • availabilityZones

      AwsElbv2LoadBalancerDetails.Builder availabilityZones(AvailabilityZone... availabilityZones)

      The Availability Zones for the load balancer.

      Parameters:
      availabilityZones - The Availability Zones for the load balancer.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • availabilityZones

      AwsElbv2LoadBalancerDetails.Builder availabilityZones(Consumer<AvailabilityZone.Builder>... availabilityZones)

      The Availability Zones for the load balancer.

      This is a convenience method that creates an instance of the AvailabilityZone.Builder avoiding the need to create one manually via AvailabilityZone.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to availabilityZones(List<AvailabilityZone>).

      Parameters:
      availabilityZones - a consumer that will call methods on AvailabilityZone.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • canonicalHostedZoneId

      AwsElbv2LoadBalancerDetails.Builder canonicalHostedZoneId(String canonicalHostedZoneId)

      The ID of the Amazon Route 53 hosted zone associated with the load balancer.

      Parameters:
      canonicalHostedZoneId - The ID of the Amazon Route 53 hosted zone associated with the load balancer.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • createdTime

      AwsElbv2LoadBalancerDetails.Builder createdTime(String createdTime)

      Indicates when the load balancer was created.

      This field accepts only the specified formats. Timestamps can end with Z or ("+" / "-") time-hour [":" time-minute]. The time-secfrac after seconds is limited to a maximum of 9 digits. The offset is bounded by +/-18:00. Here are valid timestamp formats with examples:

      • YYYY-MM-DDTHH:MM:SSZ (for example, 2019-01-31T23:00:00Z)

      • YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ (for example, 2019-01-31T23:00:00.123456789Z)

      • YYYY-MM-DDTHH:MM:SS+HH:MM (for example, 2024-01-04T15:25:10+17:59)

      • YYYY-MM-DDTHH:MM:SS-HHMM (for example, 2024-01-04T15:25:10-1759)

      • YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM (for example, 2024-01-04T15:25:10.123456789+17:59)

      Parameters:
      createdTime - Indicates when the load balancer was created.

      This field accepts only the specified formats. Timestamps can end with Z or ("+" / "-") time-hour [":" time-minute]. The time-secfrac after seconds is limited to a maximum of 9 digits. The offset is bounded by +/-18:00. Here are valid timestamp formats with examples:

      • YYYY-MM-DDTHH:MM:SSZ (for example, 2019-01-31T23:00:00Z)

      • YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ (for example, 2019-01-31T23:00:00.123456789Z)

      • YYYY-MM-DDTHH:MM:SS+HH:MM (for example, 2024-01-04T15:25:10+17:59)

      • YYYY-MM-DDTHH:MM:SS-HHMM (for example, 2024-01-04T15:25:10-1759)

      • YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM (for example, 2024-01-04T15:25:10.123456789+17:59)

      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • dnsName

      The public DNS name of the load balancer.

      Parameters:
      dnsName - The public DNS name of the load balancer.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • ipAddressType

      AwsElbv2LoadBalancerDetails.Builder ipAddressType(String ipAddressType)

      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).

      Parameters:
      ipAddressType - 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).
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • scheme

      The nodes of an Internet-facing load balancer have public IP addresses.

      Parameters:
      scheme - The nodes of an Internet-facing load balancer have public IP addresses.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • securityGroups

      AwsElbv2LoadBalancerDetails.Builder securityGroups(Collection<String> securityGroups)

      The IDs of the security groups for the load balancer.

      Parameters:
      securityGroups - The IDs of the security groups for the load balancer.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • securityGroups

      AwsElbv2LoadBalancerDetails.Builder securityGroups(String... securityGroups)

      The IDs of the security groups for the load balancer.

      Parameters:
      securityGroups - The IDs of the security groups for the load balancer.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • state

      The state of the load balancer.

      Parameters:
      state - The state of the load balancer.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • state

      The state of the load balancer.

      This is a convenience method that creates an instance of the LoadBalancerState.Builder avoiding the need to create one manually via LoadBalancerState.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to state(LoadBalancerState).

      Parameters:
      state - a consumer that will call methods on LoadBalancerState.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • type

      The type of load balancer.

      Parameters:
      type - The type of load balancer.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • vpcId

      The ID of the VPC for the load balancer.

      Parameters:
      vpcId - The ID of the VPC for the load balancer.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • loadBalancerAttributes

      AwsElbv2LoadBalancerDetails.Builder loadBalancerAttributes(Collection<AwsElbv2LoadBalancerAttribute> loadBalancerAttributes)

      Attributes of the load balancer.

      Parameters:
      loadBalancerAttributes - Attributes of the load balancer.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • loadBalancerAttributes

      AwsElbv2LoadBalancerDetails.Builder loadBalancerAttributes(AwsElbv2LoadBalancerAttribute... loadBalancerAttributes)

      Attributes of the load balancer.

      Parameters:
      loadBalancerAttributes - Attributes of the load balancer.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • loadBalancerAttributes

      AwsElbv2LoadBalancerDetails.Builder loadBalancerAttributes(Consumer<AwsElbv2LoadBalancerAttribute.Builder>... loadBalancerAttributes)

      Attributes of the load balancer.

      This is a convenience method that creates an instance of the AwsElbv2LoadBalancerAttribute.Builder avoiding the need to create one manually via AwsElbv2LoadBalancerAttribute.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to loadBalancerAttributes(List<AwsElbv2LoadBalancerAttribute>).

      Parameters:
      loadBalancerAttributes - a consumer that will call methods on AwsElbv2LoadBalancerAttribute.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also: