/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Provides updates to the parallelism count.See Also:
AWS
* API Reference
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