/** * 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, provides updates to the * parallelism count.

See Also:

AWS * API Reference

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

The number of in-application streams to create for the specified streaming * source.

*/ inline int GetCountUpdate() const{ return m_countUpdate; } /** *

The number of in-application streams to create for the specified streaming * source.

*/ inline bool CountUpdateHasBeenSet() const { return m_countUpdateHasBeenSet; } /** *

The number of in-application streams to create for the specified streaming * source.

*/ inline void SetCountUpdate(int value) { m_countUpdateHasBeenSet = true; m_countUpdate = value; } /** *

The number of in-application streams to create for the specified streaming * source.

*/ inline InputParallelismUpdate& WithCountUpdate(int value) { SetCountUpdate(value); return *this;} private: int m_countUpdate; bool m_countUpdateHasBeenSet = false; }; } // namespace Model } // namespace KinesisAnalyticsV2 } // namespace Aws