/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the input for a request action.See Also:
AWS
* API Reference
A unique identifier for a fleet to get event logs for. You can use either the * fleet ID or ARN value.
*/ inline const Aws::String& GetFleetId() const{ return m_fleetId; } /** *A unique identifier for a fleet to get event logs for. You can use either the * fleet ID or ARN value.
*/ inline bool FleetIdHasBeenSet() const { return m_fleetIdHasBeenSet; } /** *A unique identifier for a fleet to get event logs for. You can use either the * fleet ID or ARN value.
*/ inline void SetFleetId(const Aws::String& value) { m_fleetIdHasBeenSet = true; m_fleetId = value; } /** *A unique identifier for a fleet to get event logs for. You can use either the * fleet ID or ARN value.
*/ inline void SetFleetId(Aws::String&& value) { m_fleetIdHasBeenSet = true; m_fleetId = std::move(value); } /** *A unique identifier for a fleet to get event logs for. You can use either the * fleet ID or ARN value.
*/ inline void SetFleetId(const char* value) { m_fleetIdHasBeenSet = true; m_fleetId.assign(value); } /** *A unique identifier for a fleet to get event logs for. You can use either the * fleet ID or ARN value.
*/ inline DescribeFleetEventsRequest& WithFleetId(const Aws::String& value) { SetFleetId(value); return *this;} /** *A unique identifier for a fleet to get event logs for. You can use either the * fleet ID or ARN value.
*/ inline DescribeFleetEventsRequest& WithFleetId(Aws::String&& value) { SetFleetId(std::move(value)); return *this;} /** *A unique identifier for a fleet to get event logs for. You can use either the * fleet ID or ARN value.
*/ inline DescribeFleetEventsRequest& WithFleetId(const char* value) { SetFleetId(value); return *this;} /** *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").
*/ inline const Aws::Utils::DateTime& GetStartTime() const{ return m_startTime; } /** *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").
*/ inline bool StartTimeHasBeenSet() const { return m_startTimeHasBeenSet; } /** *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").
*/ inline void SetStartTime(const Aws::Utils::DateTime& value) { m_startTimeHasBeenSet = true; m_startTime = 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").
*/ inline void SetStartTime(Aws::Utils::DateTime&& value) { m_startTimeHasBeenSet = true; m_startTime = std::move(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").
*/ inline DescribeFleetEventsRequest& WithStartTime(const Aws::Utils::DateTime& value) { SetStartTime(value); return *this;} /** *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").
*/ inline DescribeFleetEventsRequest& WithStartTime(Aws::Utils::DateTime&& value) { SetStartTime(std::move(value)); return *this;} /** *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").
*/ inline const Aws::Utils::DateTime& GetEndTime() const{ return m_endTime; } /** *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").
*/ inline bool EndTimeHasBeenSet() const { return m_endTimeHasBeenSet; } /** *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").
*/ inline void SetEndTime(const Aws::Utils::DateTime& value) { m_endTimeHasBeenSet = true; m_endTime = value; } /** *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").
*/ inline void SetEndTime(Aws::Utils::DateTime&& value) { m_endTimeHasBeenSet = true; m_endTime = std::move(value); } /** *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").
*/ inline DescribeFleetEventsRequest& WithEndTime(const Aws::Utils::DateTime& value) { SetEndTime(value); return *this;} /** *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").
*/ inline DescribeFleetEventsRequest& WithEndTime(Aws::Utils::DateTime&& value) { SetEndTime(std::move(value)); return *this;} /** *The maximum number of results to return. Use this parameter with
* NextToken to get results as a set of sequential pages.
The maximum number of results to return. Use this parameter with
* NextToken to get results as a set of sequential pages.
The maximum number of results to return. Use this parameter with
* NextToken to get results as a set of sequential pages.
The 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.
*/ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** *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.
*/ inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; } /** *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.
*/ inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; } /** *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.
*/ inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); } /** *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.
*/ inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); } /** *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.
*/ inline DescribeFleetEventsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** *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.
*/ inline DescribeFleetEventsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** *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.
*/ inline DescribeFleetEventsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;} private: Aws::String m_fleetId; bool m_fleetIdHasBeenSet; Aws::Utils::DateTime m_startTime; bool m_startTimeHasBeenSet; Aws::Utils::DateTime m_endTime; bool m_endTimeHasBeenSet; int m_limit; bool m_limitHasBeenSet; Aws::String m_nextToken; bool m_nextTokenHasBeenSet; }; } // namespace Model } // namespace GameLift } // namespace Aws