Struct rusoto_elb::DescribeAccessPointsInput[][src]

pub struct DescribeAccessPointsInput {
    pub load_balancer_names: Option<Vec<String>>,
    pub marker: Option<String>,
    pub page_size: Option<i64>,
}

Contains the parameters for DescribeLoadBalancers.

Fields

The names of the load balancers.

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

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

Trait Implementations

impl Default for DescribeAccessPointsInput
[src]

Returns the "default value" for a type. Read more

impl Debug for DescribeAccessPointsInput
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeAccessPointsInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DescribeAccessPointsInput
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations