AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
StartViewerSessionRevocationRequest.h
1
6#pragma once
7#include <aws/ivs/IVS_EXPORTS.h>
8#include <aws/ivs/IVSRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace IVS
15{
16namespace Model
17{
18
22 {
23 public:
25
26 // Service request name is the Operation name which will send this request out,
27 // each operation should has unique request name, so that we can get operation's name from this request.
28 // Note: this is not true for response, multiple operations may have the same response name,
29 // so we can not get operation's name from response.
30 inline virtual const char* GetServiceRequestName() const override { return "StartViewerSessionRevocation"; }
31
32 AWS_IVS_API Aws::String SerializePayload() const override;
33
34
36
39 inline const Aws::String& GetChannelArn() const{ return m_channelArn; }
40 inline bool ChannelArnHasBeenSet() const { return m_channelArnHasBeenSet; }
41 inline void SetChannelArn(const Aws::String& value) { m_channelArnHasBeenSet = true; m_channelArn = value; }
42 inline void SetChannelArn(Aws::String&& value) { m_channelArnHasBeenSet = true; m_channelArn = std::move(value); }
43 inline void SetChannelArn(const char* value) { m_channelArnHasBeenSet = true; m_channelArn.assign(value); }
44 inline StartViewerSessionRevocationRequest& WithChannelArn(const Aws::String& value) { SetChannelArn(value); return *this;}
45 inline StartViewerSessionRevocationRequest& WithChannelArn(Aws::String&& value) { SetChannelArn(std::move(value)); return *this;}
46 inline StartViewerSessionRevocationRequest& WithChannelArn(const char* value) { SetChannelArn(value); return *this;}
48
50
55 inline const Aws::String& GetViewerId() const{ return m_viewerId; }
56 inline bool ViewerIdHasBeenSet() const { return m_viewerIdHasBeenSet; }
57 inline void SetViewerId(const Aws::String& value) { m_viewerIdHasBeenSet = true; m_viewerId = value; }
58 inline void SetViewerId(Aws::String&& value) { m_viewerIdHasBeenSet = true; m_viewerId = std::move(value); }
59 inline void SetViewerId(const char* value) { m_viewerIdHasBeenSet = true; m_viewerId.assign(value); }
60 inline StartViewerSessionRevocationRequest& WithViewerId(const Aws::String& value) { SetViewerId(value); return *this;}
61 inline StartViewerSessionRevocationRequest& WithViewerId(Aws::String&& value) { SetViewerId(std::move(value)); return *this;}
62 inline StartViewerSessionRevocationRequest& WithViewerId(const char* value) { SetViewerId(value); return *this;}
64
66
71 inline int GetViewerSessionVersionsLessThanOrEqualTo() const{ return m_viewerSessionVersionsLessThanOrEqualTo; }
72 inline bool ViewerSessionVersionsLessThanOrEqualToHasBeenSet() const { return m_viewerSessionVersionsLessThanOrEqualToHasBeenSet; }
73 inline void SetViewerSessionVersionsLessThanOrEqualTo(int value) { m_viewerSessionVersionsLessThanOrEqualToHasBeenSet = true; m_viewerSessionVersionsLessThanOrEqualTo = value; }
76 private:
77
78 Aws::String m_channelArn;
79 bool m_channelArnHasBeenSet = false;
80
81 Aws::String m_viewerId;
82 bool m_viewerIdHasBeenSet = false;
83
84 int m_viewerSessionVersionsLessThanOrEqualTo;
85 bool m_viewerSessionVersionsLessThanOrEqualToHasBeenSet = false;
86 };
87
88} // namespace Model
89} // namespace IVS
90} // namespace Aws
StartViewerSessionRevocationRequest & WithChannelArn(const Aws::String &value)
AWS_IVS_API Aws::String SerializePayload() const override
StartViewerSessionRevocationRequest & WithChannelArn(const char *value)
StartViewerSessionRevocationRequest & WithViewerId(Aws::String &&value)
StartViewerSessionRevocationRequest & WithViewerId(const Aws::String &value)
StartViewerSessionRevocationRequest & WithChannelArn(Aws::String &&value)
StartViewerSessionRevocationRequest & WithViewerId(const char *value)
StartViewerSessionRevocationRequest & WithViewerSessionVersionsLessThanOrEqualTo(int value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String