/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace IVS { namespace Model { /** */ class ListStreamsRequest : public IVSRequest { public: AWS_IVS_API ListStreamsRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "ListStreams"; } AWS_IVS_API Aws::String SerializePayload() const override; /** *

Filters the stream list to match the specified criterion.

*/ inline const StreamFilters& GetFilterBy() const{ return m_filterBy; } /** *

Filters the stream list to match the specified criterion.

*/ inline bool FilterByHasBeenSet() const { return m_filterByHasBeenSet; } /** *

Filters the stream list to match the specified criterion.

*/ inline void SetFilterBy(const StreamFilters& value) { m_filterByHasBeenSet = true; m_filterBy = value; } /** *

Filters the stream list to match the specified criterion.

*/ inline void SetFilterBy(StreamFilters&& value) { m_filterByHasBeenSet = true; m_filterBy = std::move(value); } /** *

Filters the stream list to match the specified criterion.

*/ inline ListStreamsRequest& WithFilterBy(const StreamFilters& value) { SetFilterBy(value); return *this;} /** *

Filters the stream list to match the specified criterion.

*/ inline ListStreamsRequest& WithFilterBy(StreamFilters&& value) { SetFilterBy(std::move(value)); return *this;} /** *

Maximum number of streams to return. Default: 100.

*/ inline int GetMaxResults() const{ return m_maxResults; } /** *

Maximum number of streams to return. Default: 100.

*/ inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; } /** *

Maximum number of streams to return. Default: 100.

*/ inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; } /** *

Maximum number of streams to return. Default: 100.

*/ inline ListStreamsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;} /** *

The first stream to retrieve. This is used for pagination; see the * nextToken response field.

*/ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** *

The first stream to retrieve. This is used for pagination; see the * nextToken response field.

*/ inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; } /** *

The first stream to retrieve. This is used for pagination; see the * nextToken response field.

*/ inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; } /** *

The first stream to retrieve. This is used for pagination; see the * nextToken response field.

*/ inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); } /** *

The first stream to retrieve. This is used for pagination; see the * nextToken response field.

*/ inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); } /** *

The first stream to retrieve. This is used for pagination; see the * nextToken response field.

*/ inline ListStreamsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** *

The first stream to retrieve. This is used for pagination; see the * nextToken response field.

*/ inline ListStreamsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** *

The first stream to retrieve. This is used for pagination; see the * nextToken response field.

*/ inline ListStreamsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;} private: StreamFilters m_filterBy; bool m_filterByHasBeenSet = false; int m_maxResults; bool m_maxResultsHasBeenSet = false; Aws::String m_nextToken; bool m_nextTokenHasBeenSet = false; }; } // namespace Model } // namespace IVS } // namespace Aws