AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
UpdateSignalingChannelRequest.h
1
6#pragma once
7#include <aws/kinesisvideo/KinesisVideo_EXPORTS.h>
8#include <aws/kinesisvideo/KinesisVideoRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/kinesisvideo/model/SingleMasterConfiguration.h>
11#include <utility>
12
13namespace Aws
14{
15namespace KinesisVideo
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_KINESISVIDEO_API UpdateSignalingChannelRequest();
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 "UpdateSignalingChannel"; }
32
33 AWS_KINESISVIDEO_API Aws::String SerializePayload() const override;
34
35
37
41 inline const Aws::String& GetChannelARN() const{ return m_channelARN; }
42 inline bool ChannelARNHasBeenSet() const { return m_channelARNHasBeenSet; }
43 inline void SetChannelARN(const Aws::String& value) { m_channelARNHasBeenSet = true; m_channelARN = value; }
44 inline void SetChannelARN(Aws::String&& value) { m_channelARNHasBeenSet = true; m_channelARN = std::move(value); }
45 inline void SetChannelARN(const char* value) { m_channelARNHasBeenSet = true; m_channelARN.assign(value); }
46 inline UpdateSignalingChannelRequest& WithChannelARN(const Aws::String& value) { SetChannelARN(value); return *this;}
47 inline UpdateSignalingChannelRequest& WithChannelARN(Aws::String&& value) { SetChannelARN(std::move(value)); return *this;}
48 inline UpdateSignalingChannelRequest& WithChannelARN(const char* value) { SetChannelARN(value); return *this;}
50
52
55 inline const Aws::String& GetCurrentVersion() const{ return m_currentVersion; }
56 inline bool CurrentVersionHasBeenSet() const { return m_currentVersionHasBeenSet; }
57 inline void SetCurrentVersion(const Aws::String& value) { m_currentVersionHasBeenSet = true; m_currentVersion = value; }
58 inline void SetCurrentVersion(Aws::String&& value) { m_currentVersionHasBeenSet = true; m_currentVersion = std::move(value); }
59 inline void SetCurrentVersion(const char* value) { m_currentVersionHasBeenSet = true; m_currentVersion.assign(value); }
61 inline UpdateSignalingChannelRequest& WithCurrentVersion(Aws::String&& value) { SetCurrentVersion(std::move(value)); return *this;}
62 inline UpdateSignalingChannelRequest& WithCurrentVersion(const char* value) { SetCurrentVersion(value); return *this;}
64
66
70 inline const SingleMasterConfiguration& GetSingleMasterConfiguration() const{ return m_singleMasterConfiguration; }
71 inline bool SingleMasterConfigurationHasBeenSet() const { return m_singleMasterConfigurationHasBeenSet; }
72 inline void SetSingleMasterConfiguration(const SingleMasterConfiguration& value) { m_singleMasterConfigurationHasBeenSet = true; m_singleMasterConfiguration = value; }
73 inline void SetSingleMasterConfiguration(SingleMasterConfiguration&& value) { m_singleMasterConfigurationHasBeenSet = true; m_singleMasterConfiguration = std::move(value); }
77 private:
78
79 Aws::String m_channelARN;
80 bool m_channelARNHasBeenSet = false;
81
82 Aws::String m_currentVersion;
83 bool m_currentVersionHasBeenSet = false;
84
85 SingleMasterConfiguration m_singleMasterConfiguration;
86 bool m_singleMasterConfigurationHasBeenSet = false;
87 };
88
89} // namespace Model
90} // namespace KinesisVideo
91} // namespace Aws
const SingleMasterConfiguration & GetSingleMasterConfiguration() const
void SetSingleMasterConfiguration(const SingleMasterConfiguration &value)
UpdateSignalingChannelRequest & WithChannelARN(Aws::String &&value)
UpdateSignalingChannelRequest & WithChannelARN(const char *value)
UpdateSignalingChannelRequest & WithCurrentVersion(const char *value)
UpdateSignalingChannelRequest & WithChannelARN(const Aws::String &value)
AWS_KINESISVIDEO_API Aws::String SerializePayload() const override
UpdateSignalingChannelRequest & WithCurrentVersion(Aws::String &&value)
UpdateSignalingChannelRequest & WithSingleMasterConfiguration(SingleMasterConfiguration &&value)
UpdateSignalingChannelRequest & WithSingleMasterConfiguration(const SingleMasterConfiguration &value)
UpdateSignalingChannelRequest & WithCurrentVersion(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String