You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::SecurityHub::Types::AwsElbv2LoadBalancerDetails

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing AwsElbv2LoadBalancerDetails as input to an Aws::Client method, you can use a vanilla Hash:

{
  availability_zones: [
    {
      zone_name: "NonEmptyString",
      subnet_id: "NonEmptyString",
    },
  ],
  canonical_hosted_zone_id: "NonEmptyString",
  created_time: "NonEmptyString",
  dns_name: "NonEmptyString",
  ip_address_type: "NonEmptyString",
  scheme: "NonEmptyString",
  security_groups: ["NonEmptyString"],
  state: {
    code: "NonEmptyString",
    reason: "NonEmptyString",
  },
  type: "NonEmptyString",
  vpc_id: "NonEmptyString",
}

Information about a load balancer.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#availability_zonesArray<Types::AvailabilityZone>

The Availability Zones for the load balancer.

Returns:

#canonical_hosted_zone_idString

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

Returns:

  • (String)

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

#created_timeString

Indicates when the load balancer was created.

Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.

Returns:

  • (String)

    Indicates when the load balancer was created.

#dns_nameString

The public DNS name of the load balancer.

Returns:

  • (String)

    The public DNS name of the load balancer.

#ip_address_typeString

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:

  • (String)

    The type of IP addresses used by the subnets for your load balancer.

#schemeString

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

Returns:

  • (String)

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

#security_groupsArray<String>

The IDs of the security groups for the load balancer.

Returns:

  • (Array<String>)

    The IDs of the security groups for the load balancer.

#stateTypes::LoadBalancerState

The state of the load balancer.

Returns:

#typeString

The type of load balancer.

Returns:

  • (String)

    The type of load balancer.

#vpc_idString

The ID of the VPC for the load balancer.

Returns:

  • (String)

    The ID of the VPC for the load balancer.