AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
StartEdgeConfigurationUpdateRequest.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/EdgeConfig.h>
11#include <utility>
12
13namespace Aws
14{
15namespace KinesisVideo
16{
17namespace Model
18{
19
23 {
24 public:
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 "StartEdgeConfigurationUpdate"; }
32
33 AWS_KINESISVIDEO_API Aws::String SerializePayload() const override;
34
35
37
41 inline const Aws::String& GetStreamName() const{ return m_streamName; }
42 inline bool StreamNameHasBeenSet() const { return m_streamNameHasBeenSet; }
43 inline void SetStreamName(const Aws::String& value) { m_streamNameHasBeenSet = true; m_streamName = value; }
44 inline void SetStreamName(Aws::String&& value) { m_streamNameHasBeenSet = true; m_streamName = std::move(value); }
45 inline void SetStreamName(const char* value) { m_streamNameHasBeenSet = true; m_streamName.assign(value); }
46 inline StartEdgeConfigurationUpdateRequest& WithStreamName(const Aws::String& value) { SetStreamName(value); return *this;}
47 inline StartEdgeConfigurationUpdateRequest& WithStreamName(Aws::String&& value) { SetStreamName(std::move(value)); return *this;}
48 inline StartEdgeConfigurationUpdateRequest& WithStreamName(const char* value) { SetStreamName(value); return *this;}
50
52
56 inline const Aws::String& GetStreamARN() const{ return m_streamARN; }
57 inline bool StreamARNHasBeenSet() const { return m_streamARNHasBeenSet; }
58 inline void SetStreamARN(const Aws::String& value) { m_streamARNHasBeenSet = true; m_streamARN = value; }
59 inline void SetStreamARN(Aws::String&& value) { m_streamARNHasBeenSet = true; m_streamARN = std::move(value); }
60 inline void SetStreamARN(const char* value) { m_streamARNHasBeenSet = true; m_streamARN.assign(value); }
61 inline StartEdgeConfigurationUpdateRequest& WithStreamARN(const Aws::String& value) { SetStreamARN(value); return *this;}
62 inline StartEdgeConfigurationUpdateRequest& WithStreamARN(Aws::String&& value) { SetStreamARN(std::move(value)); return *this;}
63 inline StartEdgeConfigurationUpdateRequest& WithStreamARN(const char* value) { SetStreamARN(value); return *this;}
65
67
70 inline const EdgeConfig& GetEdgeConfig() const{ return m_edgeConfig; }
71 inline bool EdgeConfigHasBeenSet() const { return m_edgeConfigHasBeenSet; }
72 inline void SetEdgeConfig(const EdgeConfig& value) { m_edgeConfigHasBeenSet = true; m_edgeConfig = value; }
73 inline void SetEdgeConfig(EdgeConfig&& value) { m_edgeConfigHasBeenSet = true; m_edgeConfig = std::move(value); }
74 inline StartEdgeConfigurationUpdateRequest& WithEdgeConfig(const EdgeConfig& value) { SetEdgeConfig(value); return *this;}
75 inline StartEdgeConfigurationUpdateRequest& WithEdgeConfig(EdgeConfig&& value) { SetEdgeConfig(std::move(value)); return *this;}
77 private:
78
79 Aws::String m_streamName;
80 bool m_streamNameHasBeenSet = false;
81
82 Aws::String m_streamARN;
83 bool m_streamARNHasBeenSet = false;
84
85 EdgeConfig m_edgeConfig;
86 bool m_edgeConfigHasBeenSet = false;
87 };
88
89} // namespace Model
90} // namespace KinesisVideo
91} // namespace Aws
StartEdgeConfigurationUpdateRequest & WithEdgeConfig(const EdgeConfig &value)
StartEdgeConfigurationUpdateRequest & WithStreamName(const Aws::String &value)
StartEdgeConfigurationUpdateRequest & WithStreamARN(const Aws::String &value)
StartEdgeConfigurationUpdateRequest & WithEdgeConfig(EdgeConfig &&value)
StartEdgeConfigurationUpdateRequest & WithStreamARN(Aws::String &&value)
StartEdgeConfigurationUpdateRequest & WithStreamARN(const char *value)
AWS_KINESISVIDEO_API Aws::String SerializePayload() const override
StartEdgeConfigurationUpdateRequest & WithStreamName(const char *value)
StartEdgeConfigurationUpdateRequest & WithStreamName(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String