AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
SendAlexaOfferToMasterRequest.h
1
6#pragma once
7#include <aws/kinesis-video-signaling/KinesisVideoSignalingChannels_EXPORTS.h>
8#include <aws/kinesis-video-signaling/KinesisVideoSignalingChannelsRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace KinesisVideoSignalingChannels
15{
16namespace Model
17{
18
22 {
23 public:
24 AWS_KINESISVIDEOSIGNALINGCHANNELS_API SendAlexaOfferToMasterRequest();
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 "SendAlexaOfferToMaster"; }
31
32 AWS_KINESISVIDEOSIGNALINGCHANNELS_API Aws::String SerializePayload() const override;
33
34
36
40 inline const Aws::String& GetChannelARN() const{ return m_channelARN; }
41 inline bool ChannelARNHasBeenSet() const { return m_channelARNHasBeenSet; }
42 inline void SetChannelARN(const Aws::String& value) { m_channelARNHasBeenSet = true; m_channelARN = value; }
43 inline void SetChannelARN(Aws::String&& value) { m_channelARNHasBeenSet = true; m_channelARN = std::move(value); }
44 inline void SetChannelARN(const char* value) { m_channelARNHasBeenSet = true; m_channelARN.assign(value); }
45 inline SendAlexaOfferToMasterRequest& WithChannelARN(const Aws::String& value) { SetChannelARN(value); return *this;}
46 inline SendAlexaOfferToMasterRequest& WithChannelARN(Aws::String&& value) { SetChannelARN(std::move(value)); return *this;}
47 inline SendAlexaOfferToMasterRequest& WithChannelARN(const char* value) { SetChannelARN(value); return *this;}
49
51
54 inline const Aws::String& GetSenderClientId() const{ return m_senderClientId; }
55 inline bool SenderClientIdHasBeenSet() const { return m_senderClientIdHasBeenSet; }
56 inline void SetSenderClientId(const Aws::String& value) { m_senderClientIdHasBeenSet = true; m_senderClientId = value; }
57 inline void SetSenderClientId(Aws::String&& value) { m_senderClientIdHasBeenSet = true; m_senderClientId = std::move(value); }
58 inline void SetSenderClientId(const char* value) { m_senderClientIdHasBeenSet = true; m_senderClientId.assign(value); }
60 inline SendAlexaOfferToMasterRequest& WithSenderClientId(Aws::String&& value) { SetSenderClientId(std::move(value)); return *this;}
61 inline SendAlexaOfferToMasterRequest& WithSenderClientId(const char* value) { SetSenderClientId(value); return *this;}
63
65
68 inline const Aws::String& GetMessagePayload() const{ return m_messagePayload; }
69 inline bool MessagePayloadHasBeenSet() const { return m_messagePayloadHasBeenSet; }
70 inline void SetMessagePayload(const Aws::String& value) { m_messagePayloadHasBeenSet = true; m_messagePayload = value; }
71 inline void SetMessagePayload(Aws::String&& value) { m_messagePayloadHasBeenSet = true; m_messagePayload = std::move(value); }
72 inline void SetMessagePayload(const char* value) { m_messagePayloadHasBeenSet = true; m_messagePayload.assign(value); }
74 inline SendAlexaOfferToMasterRequest& WithMessagePayload(Aws::String&& value) { SetMessagePayload(std::move(value)); return *this;}
75 inline SendAlexaOfferToMasterRequest& WithMessagePayload(const char* value) { SetMessagePayload(value); return *this;}
77 private:
78
79 Aws::String m_channelARN;
80 bool m_channelARNHasBeenSet = false;
81
82 Aws::String m_senderClientId;
83 bool m_senderClientIdHasBeenSet = false;
84
85 Aws::String m_messagePayload;
86 bool m_messagePayloadHasBeenSet = false;
87 };
88
89} // namespace Model
90} // namespace KinesisVideoSignalingChannels
91} // namespace Aws
SendAlexaOfferToMasterRequest & WithSenderClientId(const Aws::String &value)
SendAlexaOfferToMasterRequest & WithChannelARN(const Aws::String &value)
AWS_KINESISVIDEOSIGNALINGCHANNELS_API SendAlexaOfferToMasterRequest()
SendAlexaOfferToMasterRequest & WithMessagePayload(const Aws::String &value)
AWS_KINESISVIDEOSIGNALINGCHANNELS_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String