/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include 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
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