/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the input for ListStreams
.See Also:
* AWS
* API Reference
The maximum number of streams to list. The default value is 100. If you * specify a value greater than 100, at most 100 results are returned.
*/ inline int GetLimit() const{ return m_limit; } /** *The maximum number of streams to list. The default value is 100. If you * specify a value greater than 100, at most 100 results are returned.
*/ inline bool LimitHasBeenSet() const { return m_limitHasBeenSet; } /** *The maximum number of streams to list. The default value is 100. If you * specify a value greater than 100, at most 100 results are returned.
*/ inline void SetLimit(int value) { m_limitHasBeenSet = true; m_limit = value; } /** *The maximum number of streams to list. The default value is 100. If you * specify a value greater than 100, at most 100 results are returned.
*/ inline ListStreamsRequest& WithLimit(int value) { SetLimit(value); return *this;} /** *The name of the stream to start the list with.
*/ inline const Aws::String& GetExclusiveStartStreamName() const{ return m_exclusiveStartStreamName; } /** *The name of the stream to start the list with.
*/ inline bool ExclusiveStartStreamNameHasBeenSet() const { return m_exclusiveStartStreamNameHasBeenSet; } /** *The name of the stream to start the list with.
*/ inline void SetExclusiveStartStreamName(const Aws::String& value) { m_exclusiveStartStreamNameHasBeenSet = true; m_exclusiveStartStreamName = value; } /** *The name of the stream to start the list with.
*/ inline void SetExclusiveStartStreamName(Aws::String&& value) { m_exclusiveStartStreamNameHasBeenSet = true; m_exclusiveStartStreamName = std::move(value); } /** *The name of the stream to start the list with.
*/ inline void SetExclusiveStartStreamName(const char* value) { m_exclusiveStartStreamNameHasBeenSet = true; m_exclusiveStartStreamName.assign(value); } /** *The name of the stream to start the list with.
*/ inline ListStreamsRequest& WithExclusiveStartStreamName(const Aws::String& value) { SetExclusiveStartStreamName(value); return *this;} /** *The name of the stream to start the list with.
*/ inline ListStreamsRequest& WithExclusiveStartStreamName(Aws::String&& value) { SetExclusiveStartStreamName(std::move(value)); return *this;} /** *The name of the stream to start the list with.
*/ inline ListStreamsRequest& WithExclusiveStartStreamName(const char* value) { SetExclusiveStartStreamName(value); return *this;} /** * */ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** * */ inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; } /** * */ inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; } /** * */ inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); } /** * */ inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); } /** * */ inline ListStreamsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** * */ inline ListStreamsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** * */ inline ListStreamsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;} private: int m_limit; bool m_limitHasBeenSet = false; Aws::String m_exclusiveStartStreamName; bool m_exclusiveStartStreamNameHasBeenSet = false; Aws::String m_nextToken; bool m_nextTokenHasBeenSet = false; }; } // namespace Model } // namespace Kinesis } // namespace Aws