/** * 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 a SQL-based Kinesis Data Analytics application, describes the number of * in-application streams to create for a given streaming source.

See * Also:

AWS * API Reference

*/ class InputParallelism { public: AWS_KINESISANALYTICSV2_API InputParallelism(); AWS_KINESISANALYTICSV2_API InputParallelism(Aws::Utils::Json::JsonView jsonValue); AWS_KINESISANALYTICSV2_API InputParallelism& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_KINESISANALYTICSV2_API 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 = false; }; } // namespace Model } // namespace KinesisAnalyticsV2 } // namespace Aws