/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Defines a streaming channel.See Also:
AWS
* API Reference
The number of channels in a streaming channel.
*/ inline int GetNumberOfChannels() const{ return m_numberOfChannels; } /** *The number of channels in a streaming channel.
*/ inline bool NumberOfChannelsHasBeenSet() const { return m_numberOfChannelsHasBeenSet; } /** *The number of channels in a streaming channel.
*/ inline void SetNumberOfChannels(int value) { m_numberOfChannelsHasBeenSet = true; m_numberOfChannels = value; } /** *The number of channels in a streaming channel.
*/ inline StreamChannelDefinition& WithNumberOfChannels(int value) { SetNumberOfChannels(value); return *this;} /** *The definitions of the channels in a streaming channel.
*/ inline const Aws::VectorThe definitions of the channels in a streaming channel.
*/ inline bool ChannelDefinitionsHasBeenSet() const { return m_channelDefinitionsHasBeenSet; } /** *The definitions of the channels in a streaming channel.
*/ inline void SetChannelDefinitions(const Aws::VectorThe definitions of the channels in a streaming channel.
*/ inline void SetChannelDefinitions(Aws::VectorThe definitions of the channels in a streaming channel.
*/ inline StreamChannelDefinition& WithChannelDefinitions(const Aws::VectorThe definitions of the channels in a streaming channel.
*/ inline StreamChannelDefinition& WithChannelDefinitions(Aws::VectorThe definitions of the channels in a streaming channel.
*/ inline StreamChannelDefinition& AddChannelDefinitions(const ChannelDefinition& value) { m_channelDefinitionsHasBeenSet = true; m_channelDefinitions.push_back(value); return *this; } /** *The definitions of the channels in a streaming channel.
*/ inline StreamChannelDefinition& AddChannelDefinitions(ChannelDefinition&& value) { m_channelDefinitionsHasBeenSet = true; m_channelDefinitions.push_back(std::move(value)); return *this; } private: int m_numberOfChannels; bool m_numberOfChannelsHasBeenSet = false; Aws::Vector