69 lines
1.7 KiB
C
69 lines
1.7 KiB
C
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include <aws/kinesisanalyticsv2/KinesisAnalyticsV2_EXPORTS.h>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace Utils
|
|||
|
|
{
|
|||
|
|
namespace Json
|
|||
|
|
{
|
|||
|
|
class JsonValue;
|
|||
|
|
class JsonView;
|
|||
|
|
} // namespace Json
|
|||
|
|
} // namespace Utils
|
|||
|
|
namespace KinesisAnalyticsV2
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>For an SQL-based Amazon Kinesis Data Analytics application, describes the
|
|||
|
|
* number of in-application streams to create for a given streaming source.
|
|||
|
|
* </p><p><h3>See Also:</h3> <a
|
|||
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/InputParallelism">AWS
|
|||
|
|
* API Reference</a></p>
|
|||
|
|
*/
|
|||
|
|
class AWS_KINESISANALYTICSV2_API InputParallelism
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
InputParallelism();
|
|||
|
|
InputParallelism(Aws::Utils::Json::JsonView jsonValue);
|
|||
|
|
InputParallelism& operator=(Aws::Utils::Json::JsonView jsonValue);
|
|||
|
|
Aws::Utils::Json::JsonValue Jsonize() const;
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The number of in-application streams to create.</p>
|
|||
|
|
*/
|
|||
|
|
inline int GetCount() const{ return m_count; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The number of in-application streams to create.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool CountHasBeenSet() const { return m_countHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The number of in-application streams to create.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetCount(int value) { m_countHasBeenSet = true; m_count = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The number of in-application streams to create.</p>
|
|||
|
|
*/
|
|||
|
|
inline InputParallelism& WithCount(int value) { SetCount(value); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
int m_count;
|
|||
|
|
bool m_countHasBeenSet;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace KinesisAnalyticsV2
|
|||
|
|
} // namespace Aws
|