Struct rusoto_ec2::DescribeSpotFleetRequestHistoryRequest[][src]

pub struct DescribeSpotFleetRequestHistoryRequest {
    pub dry_run: Option<bool>,
    pub event_type: Option<String>,
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
    pub spot_fleet_request_id: String,
    pub start_time: String,
}

Contains the parameters for DescribeSpotFleetRequestHistory.

Fields

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

The type of events to describe. By default, all events are described.

The maximum number of results to return in a single call. Specify a value between 1 and 1000. The default value is 1000. To retrieve the remaining results, make another call with the returned NextToken value.

The token for the next set of results.

The ID of the Spot Fleet request.

The starting date and time for the events, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ).

Trait Implementations

impl Default for DescribeSpotFleetRequestHistoryRequest
[src]

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

impl Debug for DescribeSpotFleetRequestHistoryRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeSpotFleetRequestHistoryRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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