/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include namespace Aws { namespace DAX { namespace Model { /** */ class DescribeEventsRequest : public DAXRequest { public: AWS_DAX_API DescribeEventsRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "DescribeEvents"; } AWS_DAX_API Aws::String SerializePayload() const override; AWS_DAX_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The identifier of the event source for which events will be returned. If not * specified, then all sources are included in the response.

*/ inline const Aws::String& GetSourceName() const{ return m_sourceName; } /** *

The identifier of the event source for which events will be returned. If not * specified, then all sources are included in the response.

*/ inline bool SourceNameHasBeenSet() const { return m_sourceNameHasBeenSet; } /** *

The identifier of the event source for which events will be returned. If not * specified, then all sources are included in the response.

*/ inline void SetSourceName(const Aws::String& value) { m_sourceNameHasBeenSet = true; m_sourceName = value; } /** *

The identifier of the event source for which events will be returned. If not * specified, then all sources are included in the response.

*/ inline void SetSourceName(Aws::String&& value) { m_sourceNameHasBeenSet = true; m_sourceName = std::move(value); } /** *

The identifier of the event source for which events will be returned. If not * specified, then all sources are included in the response.

*/ inline void SetSourceName(const char* value) { m_sourceNameHasBeenSet = true; m_sourceName.assign(value); } /** *

The identifier of the event source for which events will be returned. If not * specified, then all sources are included in the response.

*/ inline DescribeEventsRequest& WithSourceName(const Aws::String& value) { SetSourceName(value); return *this;} /** *

The identifier of the event source for which events will be returned. If not * specified, then all sources are included in the response.

*/ inline DescribeEventsRequest& WithSourceName(Aws::String&& value) { SetSourceName(std::move(value)); return *this;} /** *

The identifier of the event source for which events will be returned. If not * specified, then all sources are included in the response.

*/ inline DescribeEventsRequest& WithSourceName(const char* value) { SetSourceName(value); return *this;} /** *

The event source to retrieve events for. If no value is specified, all events * are returned.

*/ inline const SourceType& GetSourceType() const{ return m_sourceType; } /** *

The event source to retrieve events for. If no value is specified, all events * are returned.

*/ inline bool SourceTypeHasBeenSet() const { return m_sourceTypeHasBeenSet; } /** *

The event source to retrieve events for. If no value is specified, all events * are returned.

*/ inline void SetSourceType(const SourceType& value) { m_sourceTypeHasBeenSet = true; m_sourceType = value; } /** *

The event source to retrieve events for. If no value is specified, all events * are returned.

*/ inline void SetSourceType(SourceType&& value) { m_sourceTypeHasBeenSet = true; m_sourceType = std::move(value); } /** *

The event source to retrieve events for. If no value is specified, all events * are returned.

*/ inline DescribeEventsRequest& WithSourceType(const SourceType& value) { SetSourceType(value); return *this;} /** *

The event source to retrieve events for. If no value is specified, all events * are returned.

*/ inline DescribeEventsRequest& WithSourceType(SourceType&& value) { SetSourceType(std::move(value)); return *this;} /** *

The beginning of the time interval to retrieve events for, specified in ISO * 8601 format.

*/ inline const Aws::Utils::DateTime& GetStartTime() const{ return m_startTime; } /** *

The beginning of the time interval to retrieve events for, specified in ISO * 8601 format.

*/ inline bool StartTimeHasBeenSet() const { return m_startTimeHasBeenSet; } /** *

The beginning of the time interval to retrieve events for, specified in ISO * 8601 format.

*/ inline void SetStartTime(const Aws::Utils::DateTime& value) { m_startTimeHasBeenSet = true; m_startTime = value; } /** *

The beginning of the time interval to retrieve events for, specified in ISO * 8601 format.

*/ inline void SetStartTime(Aws::Utils::DateTime&& value) { m_startTimeHasBeenSet = true; m_startTime = std::move(value); } /** *

The beginning of the time interval to retrieve events for, specified in ISO * 8601 format.

*/ inline DescribeEventsRequest& WithStartTime(const Aws::Utils::DateTime& value) { SetStartTime(value); return *this;} /** *

The beginning of the time interval to retrieve events for, specified in ISO * 8601 format.

*/ inline DescribeEventsRequest& WithStartTime(Aws::Utils::DateTime&& value) { SetStartTime(std::move(value)); return *this;} /** *

The end of the time interval for which to retrieve events, specified in ISO * 8601 format.

*/ inline const Aws::Utils::DateTime& GetEndTime() const{ return m_endTime; } /** *

The end of the time interval for which to retrieve events, specified in ISO * 8601 format.

*/ inline bool EndTimeHasBeenSet() const { return m_endTimeHasBeenSet; } /** *

The end of the time interval for which to retrieve events, specified in ISO * 8601 format.

*/ inline void SetEndTime(const Aws::Utils::DateTime& value) { m_endTimeHasBeenSet = true; m_endTime = value; } /** *

The end of the time interval for which to retrieve events, specified in ISO * 8601 format.

*/ inline void SetEndTime(Aws::Utils::DateTime&& value) { m_endTimeHasBeenSet = true; m_endTime = std::move(value); } /** *

The end of the time interval for which to retrieve events, specified in ISO * 8601 format.

*/ inline DescribeEventsRequest& WithEndTime(const Aws::Utils::DateTime& value) { SetEndTime(value); return *this;} /** *

The end of the time interval for which to retrieve events, specified in ISO * 8601 format.

*/ inline DescribeEventsRequest& WithEndTime(Aws::Utils::DateTime&& value) { SetEndTime(std::move(value)); return *this;} /** *

The number of minutes' worth of events to retrieve.

*/ inline int GetDuration() const{ return m_duration; } /** *

The number of minutes' worth of events to retrieve.

*/ inline bool DurationHasBeenSet() const { return m_durationHasBeenSet; } /** *

The number of minutes' worth of events to retrieve.

*/ inline void SetDuration(int value) { m_durationHasBeenSet = true; m_duration = value; } /** *

The number of minutes' worth of events to retrieve.

*/ inline DescribeEventsRequest& WithDuration(int value) { SetDuration(value); return *this;} /** *

The maximum number of results to include in the response. If more results * exist than the specified MaxResults value, a token is included in * the response so that the remaining results can be retrieved.

The value * for MaxResults must be between 20 and 100.

*/ inline int GetMaxResults() const{ return m_maxResults; } /** *

The maximum number of results to include in the response. If more results * exist than the specified MaxResults value, a token is included in * the response so that the remaining results can be retrieved.

The value * for MaxResults must be between 20 and 100.

*/ inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; } /** *

The maximum number of results to include in the response. If more results * exist than the specified MaxResults value, a token is included in * the response so that the remaining results can be retrieved.

The value * for MaxResults must be between 20 and 100.

*/ inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; } /** *

The maximum number of results to include in the response. If more results * exist than the specified MaxResults value, a token is included in * the response so that the remaining results can be retrieved.

The value * for MaxResults must be between 20 and 100.

*/ inline DescribeEventsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;} /** *

An optional token returned from a prior request. Use this token for * pagination of results from this action. If this parameter is specified, the * response includes only results beyond the token, up to the value specified by * MaxResults.

*/ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** *

An optional token returned from a prior request. Use this token for * pagination of results from this action. If this parameter is specified, the * response includes only results beyond the token, up to the value specified by * MaxResults.

*/ inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; } /** *

An optional token returned from a prior request. Use this token for * pagination of results from this action. If this parameter is specified, the * response includes only results beyond the token, up to the value specified by * MaxResults.

*/ inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; } /** *

An optional token returned from a prior request. Use this token for * pagination of results from this action. If this parameter is specified, the * response includes only results beyond the token, up to the value specified by * MaxResults.

*/ inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); } /** *

An optional token returned from a prior request. Use this token for * pagination of results from this action. If this parameter is specified, the * response includes only results beyond the token, up to the value specified by * MaxResults.

*/ inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); } /** *

An optional token returned from a prior request. Use this token for * pagination of results from this action. If this parameter is specified, the * response includes only results beyond the token, up to the value specified by * MaxResults.

*/ inline DescribeEventsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** *

An optional token returned from a prior request. Use this token for * pagination of results from this action. If this parameter is specified, the * response includes only results beyond the token, up to the value specified by * MaxResults.

*/ inline DescribeEventsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** *

An optional token returned from a prior request. Use this token for * pagination of results from this action. If this parameter is specified, the * response includes only results beyond the token, up to the value specified by * MaxResults.

*/ inline DescribeEventsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;} private: Aws::String m_sourceName; bool m_sourceNameHasBeenSet = false; SourceType m_sourceType; bool m_sourceTypeHasBeenSet = false; Aws::Utils::DateTime m_startTime; bool m_startTimeHasBeenSet = false; Aws::Utils::DateTime m_endTime; bool m_endTimeHasBeenSet = false; int m_duration; bool m_durationHasBeenSet = false; int m_maxResults; bool m_maxResultsHasBeenSet = false; Aws::String m_nextToken; bool m_nextTokenHasBeenSet = false; }; } // namespace Model } // namespace DAX } // namespace Aws