Struct rusoto_ec2::DescribeSpotFleetRequestsResponse[][src]

pub struct DescribeSpotFleetRequestsResponse {
    pub next_token: Option<String>,
    pub spot_fleet_request_configs: Vec<SpotFleetRequestConfig>,
}

Contains the output of DescribeSpotFleetRequests.

Fields

The token required to retrieve the next set of results. This value is null when there are no more results to return.

Information about the configuration of your Spot Fleet.

Trait Implementations

impl Default for DescribeSpotFleetRequestsResponse
[src]

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

impl Debug for DescribeSpotFleetRequestsResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeSpotFleetRequestsResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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