114 lines
2.8 KiB
C
114 lines
2.8 KiB
C
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include <aws/kinesis/Kinesis_EXPORTS.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
template<typename RESULT_TYPE>
|
|||
|
|
class AmazonWebServiceResult;
|
|||
|
|
|
|||
|
|
namespace Utils
|
|||
|
|
{
|
|||
|
|
namespace Json
|
|||
|
|
{
|
|||
|
|
class JsonValue;
|
|||
|
|
} // namespace Json
|
|||
|
|
} // namespace Utils
|
|||
|
|
namespace Kinesis
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
class AWS_KINESIS_API UpdateShardCountResult
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
UpdateShardCountResult();
|
|||
|
|
UpdateShardCountResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|||
|
|
UpdateShardCountResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the stream.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetStreamName() const{ return m_streamName; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the stream.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetStreamName(const Aws::String& value) { m_streamName = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the stream.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetStreamName(Aws::String&& value) { m_streamName = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the stream.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetStreamName(const char* value) { m_streamName.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the stream.</p>
|
|||
|
|
*/
|
|||
|
|
inline UpdateShardCountResult& WithStreamName(const Aws::String& value) { SetStreamName(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the stream.</p>
|
|||
|
|
*/
|
|||
|
|
inline UpdateShardCountResult& WithStreamName(Aws::String&& value) { SetStreamName(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the stream.</p>
|
|||
|
|
*/
|
|||
|
|
inline UpdateShardCountResult& WithStreamName(const char* value) { SetStreamName(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The current number of shards.</p>
|
|||
|
|
*/
|
|||
|
|
inline int GetCurrentShardCount() const{ return m_currentShardCount; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The current number of shards.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetCurrentShardCount(int value) { m_currentShardCount = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The current number of shards.</p>
|
|||
|
|
*/
|
|||
|
|
inline UpdateShardCountResult& WithCurrentShardCount(int value) { SetCurrentShardCount(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The updated number of shards.</p>
|
|||
|
|
*/
|
|||
|
|
inline int GetTargetShardCount() const{ return m_targetShardCount; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The updated number of shards.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetTargetShardCount(int value) { m_targetShardCount = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The updated number of shards.</p>
|
|||
|
|
*/
|
|||
|
|
inline UpdateShardCountResult& WithTargetShardCount(int value) { SetTargetShardCount(value); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
Aws::String m_streamName;
|
|||
|
|
|
|||
|
|
int m_currentShardCount;
|
|||
|
|
|
|||
|
|
int m_targetShardCount;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace Kinesis
|
|||
|
|
} // namespace Aws
|