Struct rusoto_ec2::DescribeHostReservationsRequest[][src]

pub struct DescribeHostReservationsRequest {
    pub filter: Option<Vec<Filter>>,
    pub host_reservation_id_set: Option<Vec<String>>,
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
}

Fields

One or more filters.

  • instance-family - The instance family (e.g., m4).

  • payment-option - The payment option (NoUpfront | PartialUpfront | AllUpfront).

  • state - The state of the reservation (payment-pending | payment-failed | active | retired).

One or more host reservation IDs.

The maximum number of results to return for the request in a single page. The remaining results can be seen by sending another request with the returned nextToken value. This value can be between 5 and 500; if maxResults is given a larger value than 500, you will receive an error.

The token to use to retrieve the next page of results.

Trait Implementations

impl Default for DescribeHostReservationsRequest
[src]

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

impl Debug for DescribeHostReservationsRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeHostReservationsRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DescribeHostReservationsRequest
[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