/** * 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 MediaConvert { namespace Model { /** * OutputChannel mapping settings.

See Also:

AWS * API Reference

*/ class AWS_MEDIACONVERT_API OutputChannelMapping { public: OutputChannelMapping(); OutputChannelMapping(Aws::Utils::Json::JsonView jsonValue); OutputChannelMapping& operator=(Aws::Utils::Json::JsonView jsonValue); Aws::Utils::Json::JsonValue Jsonize() const; /** * List of input channels */ inline const Aws::Vector& GetInputChannels() const{ return m_inputChannels; } /** * List of input channels */ inline bool InputChannelsHasBeenSet() const { return m_inputChannelsHasBeenSet; } /** * List of input channels */ inline void SetInputChannels(const Aws::Vector& value) { m_inputChannelsHasBeenSet = true; m_inputChannels = value; } /** * List of input channels */ inline void SetInputChannels(Aws::Vector&& value) { m_inputChannelsHasBeenSet = true; m_inputChannels = std::move(value); } /** * List of input channels */ inline OutputChannelMapping& WithInputChannels(const Aws::Vector& value) { SetInputChannels(value); return *this;} /** * List of input channels */ inline OutputChannelMapping& WithInputChannels(Aws::Vector&& value) { SetInputChannels(std::move(value)); return *this;} /** * List of input channels */ inline OutputChannelMapping& AddInputChannels(int value) { m_inputChannelsHasBeenSet = true; m_inputChannels.push_back(value); return *this; } private: Aws::Vector m_inputChannels; bool m_inputChannelsHasBeenSet; }; } // namespace Model } // namespace MediaConvert } // namespace Aws