AWS SDK for C++

AWS SDK for C++ Version 1.11.606

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() = default;
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 template<typename ChannelARNT = Aws::String>
44 void SetChannelARN(ChannelARNT&& value) { m_channelARNHasBeenSet = true; m_channelARN = std::forward<ChannelARNT>(value); }
45 template<typename ChannelARNT = Aws::String>
46 GetSignalingChannelEndpointRequest& WithChannelARN(ChannelARNT&& value) { SetChannelARN(std::forward<ChannelARNT>(value)); return *this;}
48
50
54 inline const SingleMasterChannelEndpointConfiguration& GetSingleMasterChannelEndpointConfiguration() const { return m_singleMasterChannelEndpointConfiguration; }
55 inline bool SingleMasterChannelEndpointConfigurationHasBeenSet() const { return m_singleMasterChannelEndpointConfigurationHasBeenSet; }
56 template<typename SingleMasterChannelEndpointConfigurationT = SingleMasterChannelEndpointConfiguration>
57 void SetSingleMasterChannelEndpointConfiguration(SingleMasterChannelEndpointConfigurationT&& value) { m_singleMasterChannelEndpointConfigurationHasBeenSet = true; m_singleMasterChannelEndpointConfiguration = std::forward<SingleMasterChannelEndpointConfigurationT>(value); }
58 template<typename SingleMasterChannelEndpointConfigurationT = SingleMasterChannelEndpointConfiguration>
59 GetSignalingChannelEndpointRequest& WithSingleMasterChannelEndpointConfiguration(SingleMasterChannelEndpointConfigurationT&& value) { SetSingleMasterChannelEndpointConfiguration(std::forward<SingleMasterChannelEndpointConfigurationT>(value)); return *this;}
61 private:
62
63 Aws::String m_channelARN;
64 bool m_channelARNHasBeenSet = false;
65
66 SingleMasterChannelEndpointConfiguration m_singleMasterChannelEndpointConfiguration;
67 bool m_singleMasterChannelEndpointConfigurationHasBeenSet = false;
68 };
69
70} // namespace Model
71} // namespace KinesisVideo
72} // 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