AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetSignalingChannelEndpointRequest.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/SingleMasterChannelEndpointConfiguration.h>
11#include <utility>
12
13namespace Aws
14{
15namespace KinesisVideo
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_KINESISVIDEO_API GetSignalingChannelEndpointRequest();
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 "GetSignalingChannelEndpoint"; }
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 GetSignalingChannelEndpointRequest& WithChannelARN(const Aws::String& value) { SetChannelARN(value); return *this;}
47 inline GetSignalingChannelEndpointRequest& WithChannelARN(Aws::String&& value) { SetChannelARN(std::move(value)); return *this;}
48 inline GetSignalingChannelEndpointRequest& WithChannelARN(const char* value) { SetChannelARN(value); return *this;}
50
52
56 inline const SingleMasterChannelEndpointConfiguration& GetSingleMasterChannelEndpointConfiguration() const{ return m_singleMasterChannelEndpointConfiguration; }
57 inline bool SingleMasterChannelEndpointConfigurationHasBeenSet() const { return m_singleMasterChannelEndpointConfigurationHasBeenSet; }
58 inline void SetSingleMasterChannelEndpointConfiguration(const SingleMasterChannelEndpointConfiguration& value) { m_singleMasterChannelEndpointConfigurationHasBeenSet = true; m_singleMasterChannelEndpointConfiguration = value; }
59 inline void SetSingleMasterChannelEndpointConfiguration(SingleMasterChannelEndpointConfiguration&& value) { m_singleMasterChannelEndpointConfigurationHasBeenSet = true; m_singleMasterChannelEndpointConfiguration = std::move(value); }
63 private:
64
65 Aws::String m_channelARN;
66 bool m_channelARNHasBeenSet = false;
67
68 SingleMasterChannelEndpointConfiguration m_singleMasterChannelEndpointConfiguration;
69 bool m_singleMasterChannelEndpointConfigurationHasBeenSet = false;
70 };
71
72} // namespace Model
73} // namespace KinesisVideo
74} // namespace Aws
GetSignalingChannelEndpointRequest & WithChannelARN(Aws::String &&value)
GetSignalingChannelEndpointRequest & WithChannelARN(const char *value)
void SetSingleMasterChannelEndpointConfiguration(const SingleMasterChannelEndpointConfiguration &value)
void SetSingleMasterChannelEndpointConfiguration(SingleMasterChannelEndpointConfiguration &&value)
const SingleMasterChannelEndpointConfiguration & GetSingleMasterChannelEndpointConfiguration() const
GetSignalingChannelEndpointRequest & WithSingleMasterChannelEndpointConfiguration(SingleMasterChannelEndpointConfiguration &&value)
AWS_KINESISVIDEO_API Aws::String SerializePayload() const override
GetSignalingChannelEndpointRequest & WithChannelARN(const Aws::String &value)
GetSignalingChannelEndpointRequest & WithSingleMasterChannelEndpointConfiguration(const SingleMasterChannelEndpointConfiguration &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String