Class: Aws::ElasticLoadBalancing::Types::DescribeAccessPointsInput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-elasticloadbalancing/types.rb

Overview

Note:

When making an API call, you may pass DescribeAccessPointsInput data as a hash:

{
  load_balancer_names: ["AccessPointName"],
  marker: "Marker",
  page_size: 1,
}

Contains the parameters for DescribeLoadBalancers.

Instance Attribute Summary collapse

Instance Attribute Details

#load_balancer_namesArray<String>

The names of the load balancers.

Returns:

  • (Array<String>)


848
849
850
851
852
853
# File 'lib/aws-sdk-elasticloadbalancing/types.rb', line 848

class DescribeAccessPointsInput < Struct.new(
  :load_balancer_names,
  :marker,
  :page_size)
  include Aws::Structure
end

#markerString

The marker for the next set of results. (You received this marker from a previous call.)

Returns:

  • (String)


848
849
850
851
852
853
# File 'lib/aws-sdk-elasticloadbalancing/types.rb', line 848

class DescribeAccessPointsInput < Struct.new(
  :load_balancer_names,
  :marker,
  :page_size)
  include Aws::Structure
end

#page_sizeInteger

The maximum number of results to return with this call (a number from 1 to 400). The default is 400.

Returns:

  • (Integer)


848
849
850
851
852
853
# File 'lib/aws-sdk-elasticloadbalancing/types.rb', line 848

class DescribeAccessPointsInput < Struct.new(
  :load_balancer_names,
  :marker,
  :page_size)
  include Aws::Structure
end