/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A structure that contains the runtime settings for recording a Kinesis video
* stream.See Also:
AWS
* API Reference
The stream or streams to be recorded.
*/ inline const Aws::VectorThe stream or streams to be recorded.
*/ inline bool StreamsHasBeenSet() const { return m_streamsHasBeenSet; } /** *The stream or streams to be recorded.
*/ inline void SetStreams(const Aws::VectorThe stream or streams to be recorded.
*/ inline void SetStreams(Aws::VectorThe stream or streams to be recorded.
*/ inline KinesisVideoStreamRecordingSourceRuntimeConfiguration& WithStreams(const Aws::VectorThe stream or streams to be recorded.
*/ inline KinesisVideoStreamRecordingSourceRuntimeConfiguration& WithStreams(Aws::VectorThe stream or streams to be recorded.
*/ inline KinesisVideoStreamRecordingSourceRuntimeConfiguration& AddStreams(const RecordingStreamConfiguration& value) { m_streamsHasBeenSet = true; m_streams.push_back(value); return *this; } /** *The stream or streams to be recorded.
*/ inline KinesisVideoStreamRecordingSourceRuntimeConfiguration& AddStreams(RecordingStreamConfiguration&& value) { m_streamsHasBeenSet = true; m_streams.push_back(std::move(value)); return *this; } /** *Describes the timestamp range and timestamp origin of a range of fragments in * the Kinesis video stream.
*/ inline const FragmentSelector& GetFragmentSelector() const{ return m_fragmentSelector; } /** *Describes the timestamp range and timestamp origin of a range of fragments in * the Kinesis video stream.
*/ inline bool FragmentSelectorHasBeenSet() const { return m_fragmentSelectorHasBeenSet; } /** *Describes the timestamp range and timestamp origin of a range of fragments in * the Kinesis video stream.
*/ inline void SetFragmentSelector(const FragmentSelector& value) { m_fragmentSelectorHasBeenSet = true; m_fragmentSelector = value; } /** *Describes the timestamp range and timestamp origin of a range of fragments in * the Kinesis video stream.
*/ inline void SetFragmentSelector(FragmentSelector&& value) { m_fragmentSelectorHasBeenSet = true; m_fragmentSelector = std::move(value); } /** *Describes the timestamp range and timestamp origin of a range of fragments in * the Kinesis video stream.
*/ inline KinesisVideoStreamRecordingSourceRuntimeConfiguration& WithFragmentSelector(const FragmentSelector& value) { SetFragmentSelector(value); return *this;} /** *Describes the timestamp range and timestamp origin of a range of fragments in * the Kinesis video stream.
*/ inline KinesisVideoStreamRecordingSourceRuntimeConfiguration& WithFragmentSelector(FragmentSelector&& value) { SetFragmentSelector(std::move(value)); return *this;} private: Aws::Vector