Struct rusoto_gamelift::DescribeFleetEventsInput[][src]

pub struct DescribeFleetEventsInput {
    pub end_time: Option<f64>,
    pub fleet_id: String,
    pub limit: Option<i64>,
    pub next_token: Option<String>,
    pub start_time: Option<f64>,
}

Represents the input for a request action.

Fields

Most recent date to retrieve event logs for. If no end time is specified, this call returns entries from the specified start time up to the present. Format is a number expressed in Unix time as milliseconds (ex: "1469498468.057").

Unique identifier for a fleet to get event logs for.

Maximum number of results to return. Use this parameter with NextToken to get results as a set of sequential pages.

Token that indicates the start of the next sequential page of results. Use the token that is returned with a previous call to this action. To start at the beginning of the result set, do not specify a value.

Earliest date to retrieve event logs for. If no start time is specified, this call returns entries starting from when the fleet was created to the specified end time. Format is a number expressed in Unix time as milliseconds (ex: "1469498468.057").

Trait Implementations

impl Default for DescribeFleetEventsInput
[src]

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

impl Debug for DescribeFleetEventsInput
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeFleetEventsInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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