/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Describes the number of in-application streams to create for a given
* streaming source. For information about parallelism, see Configuring
* Application Input. See Also:
AWS
* API Reference
Number of in-application streams to create. For more information, see Limits. *
*/ inline int GetCount() const{ return m_count; } /** *Number of in-application streams to create. For more information, see Limits. *
*/ inline bool CountHasBeenSet() const { return m_countHasBeenSet; } /** *Number of in-application streams to create. For more information, see Limits. *
*/ inline void SetCount(int value) { m_countHasBeenSet = true; m_count = value; } /** *Number of in-application streams to create. For more information, see Limits. *
*/ inline InputParallelism& WithCount(int value) { SetCount(value); return *this;} private: int m_count; bool m_countHasBeenSet = false; }; } // namespace Model } // namespace KinesisAnalytics } // namespace Aws