AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ListStreamsRequest.h
1
6#pragma once
7#include <aws/ivs/IVS_EXPORTS.h>
8#include <aws/ivs/IVSRequest.h>
9#include <aws/ivs/model/StreamFilters.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <utility>
12
13namespace Aws
14{
15namespace IVS
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_IVS_API ListStreamsRequest();
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "ListStreams"; }
32
33 AWS_IVS_API Aws::String SerializePayload() const override;
34
35
37
40 inline const StreamFilters& GetFilterBy() const{ return m_filterBy; }
41 inline bool FilterByHasBeenSet() const { return m_filterByHasBeenSet; }
42 inline void SetFilterBy(const StreamFilters& value) { m_filterByHasBeenSet = true; m_filterBy = value; }
43 inline void SetFilterBy(StreamFilters&& value) { m_filterByHasBeenSet = true; m_filterBy = std::move(value); }
44 inline ListStreamsRequest& WithFilterBy(const StreamFilters& value) { SetFilterBy(value); return *this;}
45 inline ListStreamsRequest& WithFilterBy(StreamFilters&& value) { SetFilterBy(std::move(value)); return *this;}
47
49
52 inline int GetMaxResults() const{ return m_maxResults; }
53 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
54 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
55 inline ListStreamsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
57
59
63 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
64 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
65 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
66 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
67 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
68 inline ListStreamsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
69 inline ListStreamsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
70 inline ListStreamsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
72 private:
73
74 StreamFilters m_filterBy;
75 bool m_filterByHasBeenSet = false;
76
77 int m_maxResults;
78 bool m_maxResultsHasBeenSet = false;
79
80 Aws::String m_nextToken;
81 bool m_nextTokenHasBeenSet = false;
82 };
83
84} // namespace Model
85} // namespace IVS
86} // namespace Aws
void SetFilterBy(const StreamFilters &value)
const StreamFilters & GetFilterBy() const
ListStreamsRequest & WithMaxResults(int value)
ListStreamsRequest & WithNextToken(const char *value)
ListStreamsRequest & WithNextToken(const Aws::String &value)
ListStreamsRequest & WithFilterBy(StreamFilters &&value)
void SetFilterBy(StreamFilters &&value)
const Aws::String & GetNextToken() const
ListStreamsRequest & WithFilterBy(const StreamFilters &value)
void SetNextToken(Aws::String &&value)
virtual const char * GetServiceRequestName() const override
ListStreamsRequest & WithNextToken(Aws::String &&value)
void SetNextToken(const Aws::String &value)
AWS_IVS_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String