/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace KinesisVideoArchivedMedia { namespace Model { /** *

The range of timestamps for which to return fragments.

See * Also:

AWS * API Reference

*/ class ClipTimestampRange { public: AWS_KINESISVIDEOARCHIVEDMEDIA_API ClipTimestampRange(); AWS_KINESISVIDEOARCHIVEDMEDIA_API ClipTimestampRange(Aws::Utils::Json::JsonView jsonValue); AWS_KINESISVIDEOARCHIVEDMEDIA_API ClipTimestampRange& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_KINESISVIDEOARCHIVEDMEDIA_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The starting timestamp in the range of timestamps for which to return * fragments.

Only fragments that start exactly at or after * StartTimestamp are included in the session. Fragments that start * before StartTimestamp and continue past it aren't included in the * session. If FragmentSelectorType is SERVER_TIMESTAMP, * the StartTimestamp must be later than the stream head.

*/ inline const Aws::Utils::DateTime& GetStartTimestamp() const{ return m_startTimestamp; } /** *

The starting timestamp in the range of timestamps for which to return * fragments.

Only fragments that start exactly at or after * StartTimestamp are included in the session. Fragments that start * before StartTimestamp and continue past it aren't included in the * session. If FragmentSelectorType is SERVER_TIMESTAMP, * the StartTimestamp must be later than the stream head.

*/ inline bool StartTimestampHasBeenSet() const { return m_startTimestampHasBeenSet; } /** *

The starting timestamp in the range of timestamps for which to return * fragments.

Only fragments that start exactly at or after * StartTimestamp are included in the session. Fragments that start * before StartTimestamp and continue past it aren't included in the * session. If FragmentSelectorType is SERVER_TIMESTAMP, * the StartTimestamp must be later than the stream head.

*/ inline void SetStartTimestamp(const Aws::Utils::DateTime& value) { m_startTimestampHasBeenSet = true; m_startTimestamp = value; } /** *

The starting timestamp in the range of timestamps for which to return * fragments.

Only fragments that start exactly at or after * StartTimestamp are included in the session. Fragments that start * before StartTimestamp and continue past it aren't included in the * session. If FragmentSelectorType is SERVER_TIMESTAMP, * the StartTimestamp must be later than the stream head.

*/ inline void SetStartTimestamp(Aws::Utils::DateTime&& value) { m_startTimestampHasBeenSet = true; m_startTimestamp = std::move(value); } /** *

The starting timestamp in the range of timestamps for which to return * fragments.

Only fragments that start exactly at or after * StartTimestamp are included in the session. Fragments that start * before StartTimestamp and continue past it aren't included in the * session. If FragmentSelectorType is SERVER_TIMESTAMP, * the StartTimestamp must be later than the stream head.

*/ inline ClipTimestampRange& WithStartTimestamp(const Aws::Utils::DateTime& value) { SetStartTimestamp(value); return *this;} /** *

The starting timestamp in the range of timestamps for which to return * fragments.

Only fragments that start exactly at or after * StartTimestamp are included in the session. Fragments that start * before StartTimestamp and continue past it aren't included in the * session. If FragmentSelectorType is SERVER_TIMESTAMP, * the StartTimestamp must be later than the stream head.

*/ inline ClipTimestampRange& WithStartTimestamp(Aws::Utils::DateTime&& value) { SetStartTimestamp(std::move(value)); return *this;} /** *

The end of the timestamp range for the requested media.

This value * must be within 24 hours of the specified StartTimestamp, and it * must be later than the StartTimestamp value. If * FragmentSelectorType for the request is * SERVER_TIMESTAMP, this value must be in the past.

This * value is inclusive. The EndTimestamp is compared to the (starting) * timestamp of the fragment. Fragments that start before the * EndTimestamp value and continue past it are included in the * session.

*/ inline const Aws::Utils::DateTime& GetEndTimestamp() const{ return m_endTimestamp; } /** *

The end of the timestamp range for the requested media.

This value * must be within 24 hours of the specified StartTimestamp, and it * must be later than the StartTimestamp value. If * FragmentSelectorType for the request is * SERVER_TIMESTAMP, this value must be in the past.

This * value is inclusive. The EndTimestamp is compared to the (starting) * timestamp of the fragment. Fragments that start before the * EndTimestamp value and continue past it are included in the * session.

*/ inline bool EndTimestampHasBeenSet() const { return m_endTimestampHasBeenSet; } /** *

The end of the timestamp range for the requested media.

This value * must be within 24 hours of the specified StartTimestamp, and it * must be later than the StartTimestamp value. If * FragmentSelectorType for the request is * SERVER_TIMESTAMP, this value must be in the past.

This * value is inclusive. The EndTimestamp is compared to the (starting) * timestamp of the fragment. Fragments that start before the * EndTimestamp value and continue past it are included in the * session.

*/ inline void SetEndTimestamp(const Aws::Utils::DateTime& value) { m_endTimestampHasBeenSet = true; m_endTimestamp = value; } /** *

The end of the timestamp range for the requested media.

This value * must be within 24 hours of the specified StartTimestamp, and it * must be later than the StartTimestamp value. If * FragmentSelectorType for the request is * SERVER_TIMESTAMP, this value must be in the past.

This * value is inclusive. The EndTimestamp is compared to the (starting) * timestamp of the fragment. Fragments that start before the * EndTimestamp value and continue past it are included in the * session.

*/ inline void SetEndTimestamp(Aws::Utils::DateTime&& value) { m_endTimestampHasBeenSet = true; m_endTimestamp = std::move(value); } /** *

The end of the timestamp range for the requested media.

This value * must be within 24 hours of the specified StartTimestamp, and it * must be later than the StartTimestamp value. If * FragmentSelectorType for the request is * SERVER_TIMESTAMP, this value must be in the past.

This * value is inclusive. The EndTimestamp is compared to the (starting) * timestamp of the fragment. Fragments that start before the * EndTimestamp value and continue past it are included in the * session.

*/ inline ClipTimestampRange& WithEndTimestamp(const Aws::Utils::DateTime& value) { SetEndTimestamp(value); return *this;} /** *

The end of the timestamp range for the requested media.

This value * must be within 24 hours of the specified StartTimestamp, and it * must be later than the StartTimestamp value. If * FragmentSelectorType for the request is * SERVER_TIMESTAMP, this value must be in the past.

This * value is inclusive. The EndTimestamp is compared to the (starting) * timestamp of the fragment. Fragments that start before the * EndTimestamp value and continue past it are included in the * session.

*/ inline ClipTimestampRange& WithEndTimestamp(Aws::Utils::DateTime&& value) { SetEndTimestamp(std::move(value)); return *this;} private: Aws::Utils::DateTime m_startTimestamp; bool m_startTimestampHasBeenSet = false; Aws::Utils::DateTime m_endTimestamp; bool m_endTimestampHasBeenSet = false; }; } // namespace Model } // namespace KinesisVideoArchivedMedia } // namespace Aws