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

For an SQL-based Amazon Kinesis Data Analytics application, describes the * number of in-application streams to create for a given streaming source. *

See Also:

AWS * API Reference

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

The number of in-application streams to create.

*/ inline int GetCount() const{ return m_count; } /** *

The number of in-application streams to create.

*/ inline bool CountHasBeenSet() const { return m_countHasBeenSet; } /** *

The number of in-application streams to create.

*/ inline void SetCount(int value) { m_countHasBeenSet = true; m_count = value; } /** *

The number of in-application streams to create.

*/ inline InputParallelism& WithCount(int value) { SetCount(value); return *this;} private: int m_count; bool m_countHasBeenSet; }; } // namespace Model } // namespace KinesisAnalyticsV2 } // namespace Aws