/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The start and stop time of the ingested events.See Also:
AWS
* API Reference
Timestamp of the first ingensted event.
*/ inline const Aws::String& GetStartTime() const{ return m_startTime; } /** *Timestamp of the first ingensted event.
*/ inline bool StartTimeHasBeenSet() const { return m_startTimeHasBeenSet; } /** *Timestamp of the first ingensted event.
*/ inline void SetStartTime(const Aws::String& value) { m_startTimeHasBeenSet = true; m_startTime = value; } /** *Timestamp of the first ingensted event.
*/ inline void SetStartTime(Aws::String&& value) { m_startTimeHasBeenSet = true; m_startTime = std::move(value); } /** *Timestamp of the first ingensted event.
*/ inline void SetStartTime(const char* value) { m_startTimeHasBeenSet = true; m_startTime.assign(value); } /** *Timestamp of the first ingensted event.
*/ inline IngestedEventsTimeWindow& WithStartTime(const Aws::String& value) { SetStartTime(value); return *this;} /** *Timestamp of the first ingensted event.
*/ inline IngestedEventsTimeWindow& WithStartTime(Aws::String&& value) { SetStartTime(std::move(value)); return *this;} /** *Timestamp of the first ingensted event.
*/ inline IngestedEventsTimeWindow& WithStartTime(const char* value) { SetStartTime(value); return *this;} /** *Timestamp of the final ingested event.
*/ inline const Aws::String& GetEndTime() const{ return m_endTime; } /** *Timestamp of the final ingested event.
*/ inline bool EndTimeHasBeenSet() const { return m_endTimeHasBeenSet; } /** *Timestamp of the final ingested event.
*/ inline void SetEndTime(const Aws::String& value) { m_endTimeHasBeenSet = true; m_endTime = value; } /** *Timestamp of the final ingested event.
*/ inline void SetEndTime(Aws::String&& value) { m_endTimeHasBeenSet = true; m_endTime = std::move(value); } /** *Timestamp of the final ingested event.
*/ inline void SetEndTime(const char* value) { m_endTimeHasBeenSet = true; m_endTime.assign(value); } /** *Timestamp of the final ingested event.
*/ inline IngestedEventsTimeWindow& WithEndTime(const Aws::String& value) { SetEndTime(value); return *this;} /** *Timestamp of the final ingested event.
*/ inline IngestedEventsTimeWindow& WithEndTime(Aws::String&& value) { SetEndTime(std::move(value)); return *this;} /** *Timestamp of the final ingested event.
*/ inline IngestedEventsTimeWindow& WithEndTime(const char* value) { SetEndTime(value); return *this;} private: Aws::String m_startTime; bool m_startTimeHasBeenSet = false; Aws::String m_endTime; bool m_endTimeHasBeenSet = false; }; } // namespace Model } // namespace FraudDetector } // namespace Aws