AWS SDK for C++

AWS SDK for C++ Version 1.11.685

Loading...
Searching...
No Matches
GetSignalingChannelEndpointRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/kinesisvideo/KinesisVideoRequest.h>
9#include <aws/kinesisvideo/KinesisVideo_EXPORTS.h>
10#include <aws/kinesisvideo/model/SingleMasterChannelEndpointConfiguration.h>
11
12#include <utility>
13
14namespace Aws {
15namespace KinesisVideo {
16namespace Model {
17
21 public:
22 AWS_KINESISVIDEO_API GetSignalingChannelEndpointRequest() = default;
23
24 // Service request name is the Operation name which will send this request out,
25 // each operation should has unique request name, so that we can get operation's name from this request.
26 // Note: this is not true for response, multiple operations may have the same response name,
27 // so we can not get operation's name from response.
28 inline virtual const char* GetServiceRequestName() const override { return "GetSignalingChannelEndpoint"; }
29
30 AWS_KINESISVIDEO_API Aws::String SerializePayload() const override;
31
33
37 inline const Aws::String& GetChannelARN() const { return m_channelARN; }
38 inline bool ChannelARNHasBeenSet() const { return m_channelARNHasBeenSet; }
39 template <typename ChannelARNT = Aws::String>
40 void SetChannelARN(ChannelARNT&& value) {
41 m_channelARNHasBeenSet = true;
42 m_channelARN = std::forward<ChannelARNT>(value);
43 }
44 template <typename ChannelARNT = Aws::String>
46 SetChannelARN(std::forward<ChannelARNT>(value));
47 return *this;
48 }
50
52
57 return m_singleMasterChannelEndpointConfiguration;
58 }
59 inline bool SingleMasterChannelEndpointConfigurationHasBeenSet() const { return m_singleMasterChannelEndpointConfigurationHasBeenSet; }
60 template <typename SingleMasterChannelEndpointConfigurationT = SingleMasterChannelEndpointConfiguration>
61 void SetSingleMasterChannelEndpointConfiguration(SingleMasterChannelEndpointConfigurationT&& value) {
62 m_singleMasterChannelEndpointConfigurationHasBeenSet = true;
63 m_singleMasterChannelEndpointConfiguration = std::forward<SingleMasterChannelEndpointConfigurationT>(value);
64 }
65 template <typename SingleMasterChannelEndpointConfigurationT = SingleMasterChannelEndpointConfiguration>
66 GetSignalingChannelEndpointRequest& WithSingleMasterChannelEndpointConfiguration(SingleMasterChannelEndpointConfigurationT&& value) {
67 SetSingleMasterChannelEndpointConfiguration(std::forward<SingleMasterChannelEndpointConfigurationT>(value));
68 return *this;
69 }
71 private:
72 Aws::String m_channelARN;
73 bool m_channelARNHasBeenSet = false;
74
75 SingleMasterChannelEndpointConfiguration m_singleMasterChannelEndpointConfiguration;
76 bool m_singleMasterChannelEndpointConfigurationHasBeenSet = false;
77};
78
79} // namespace Model
80} // namespace KinesisVideo
81} // namespace Aws
void SetSingleMasterChannelEndpointConfiguration(SingleMasterChannelEndpointConfigurationT &&value)
GetSignalingChannelEndpointRequest & WithSingleMasterChannelEndpointConfiguration(SingleMasterChannelEndpointConfigurationT &&value)
const SingleMasterChannelEndpointConfiguration & GetSingleMasterChannelEndpointConfiguration() const
GetSignalingChannelEndpointRequest & WithChannelARN(ChannelARNT &&value)
AWS_KINESISVIDEO_API Aws::String SerializePayload() const override
AWS_KINESISVIDEO_API GetSignalingChannelEndpointRequest()=default
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String