/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace IVS { namespace Model { /** */ class ListStreamSessionsRequest : public IVSRequest { public: AWS_IVS_API ListStreamSessionsRequest(); // 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 "ListStreamSessions"; } AWS_IVS_API Aws::String SerializePayload() const override; /** *

Channel ARN used to filter the list.

*/ inline const Aws::String& GetChannelArn() const{ return m_channelArn; } /** *

Channel ARN used to filter the list.

*/ inline bool ChannelArnHasBeenSet() const { return m_channelArnHasBeenSet; } /** *

Channel ARN used to filter the list.

*/ inline void SetChannelArn(const Aws::String& value) { m_channelArnHasBeenSet = true; m_channelArn = value; } /** *

Channel ARN used to filter the list.

*/ inline void SetChannelArn(Aws::String&& value) { m_channelArnHasBeenSet = true; m_channelArn = std::move(value); } /** *

Channel ARN used to filter the list.

*/ inline void SetChannelArn(const char* value) { m_channelArnHasBeenSet = true; m_channelArn.assign(value); } /** *

Channel ARN used to filter the list.

*/ inline ListStreamSessionsRequest& WithChannelArn(const Aws::String& value) { SetChannelArn(value); return *this;} /** *

Channel ARN used to filter the list.

*/ inline ListStreamSessionsRequest& WithChannelArn(Aws::String&& value) { SetChannelArn(std::move(value)); return *this;} /** *

Channel ARN used to filter the list.

*/ inline ListStreamSessionsRequest& WithChannelArn(const char* value) { SetChannelArn(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 ListStreamSessionsRequest& 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 ListStreamSessionsRequest& 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 ListStreamSessionsRequest& 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 ListStreamSessionsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;} private: Aws::String m_channelArn; bool m_channelArnHasBeenSet = false; int m_maxResults; bool m_maxResultsHasBeenSet = false; Aws::String m_nextToken; bool m_nextTokenHasBeenSet = false; }; } // namespace Model } // namespace IVS } // namespace Aws