/** * 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 { /** *

Provides updates to the parallelism count.

See Also:

AWS * API Reference

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

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

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

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

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

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

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

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