/** * 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 Chime { namespace Model { /** *

Source configuration for a specified media capture pipeline.

See * Also:

AWS * API Reference

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

The selected video streams to capture for a specified media capture pipeline. * The number of video streams can't exceed 25.

*/ inline const SelectedVideoStreams& GetSelectedVideoStreams() const{ return m_selectedVideoStreams; } /** *

The selected video streams to capture for a specified media capture pipeline. * The number of video streams can't exceed 25.

*/ inline bool SelectedVideoStreamsHasBeenSet() const { return m_selectedVideoStreamsHasBeenSet; } /** *

The selected video streams to capture for a specified media capture pipeline. * The number of video streams can't exceed 25.

*/ inline void SetSelectedVideoStreams(const SelectedVideoStreams& value) { m_selectedVideoStreamsHasBeenSet = true; m_selectedVideoStreams = value; } /** *

The selected video streams to capture for a specified media capture pipeline. * The number of video streams can't exceed 25.

*/ inline void SetSelectedVideoStreams(SelectedVideoStreams&& value) { m_selectedVideoStreamsHasBeenSet = true; m_selectedVideoStreams = std::move(value); } /** *

The selected video streams to capture for a specified media capture pipeline. * The number of video streams can't exceed 25.

*/ inline SourceConfiguration& WithSelectedVideoStreams(const SelectedVideoStreams& value) { SetSelectedVideoStreams(value); return *this;} /** *

The selected video streams to capture for a specified media capture pipeline. * The number of video streams can't exceed 25.

*/ inline SourceConfiguration& WithSelectedVideoStreams(SelectedVideoStreams&& value) { SetSelectedVideoStreams(std::move(value)); return *this;} private: SelectedVideoStreams m_selectedVideoStreams; bool m_selectedVideoStreamsHasBeenSet = false; }; } // namespace Model } // namespace Chime } // namespace Aws