/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace KinesisAnalytics { namespace Model { /** *

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

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

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; }; } // namespace Model } // namespace KinesisAnalytics } // namespace Aws