AWS SDK for C++

AWS SDK for C++ Version 1.11.788

Loading...
Searching...
No Matches
UpdateIngestConfigurationRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/ivs-realtime/IvsrealtimeRequest.h>
9#include <aws/ivs-realtime/Ivsrealtime_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace ivsrealtime {
15namespace Model {
16
20 public:
21 AWS_IVSREALTIME_API UpdateIngestConfigurationRequest() = default;
22
23 // Service request name is the Operation name which will send this request out,
24 // each operation should has unique request name, so that we can get operation's name from this request.
25 // Note: this is not true for response, multiple operations may have the same response name,
26 // so we can not get operation's name from response.
27 inline virtual const char* GetServiceRequestName() const override { return "UpdateIngestConfiguration"; }
28
29 AWS_IVSREALTIME_API Aws::String SerializePayload() const override;
30
32
36 inline const Aws::String& GetArn() const { return m_arn; }
37 inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; }
38 template <typename ArnT = Aws::String>
39 void SetArn(ArnT&& value) {
40 m_arnHasBeenSet = true;
41 m_arn = std::forward<ArnT>(value);
42 }
43 template <typename ArnT = Aws::String>
45 SetArn(std::forward<ArnT>(value));
46 return *this;
47 }
49
51
54 inline const Aws::String& GetStageArn() const { return m_stageArn; }
55 inline bool StageArnHasBeenSet() const { return m_stageArnHasBeenSet; }
56 template <typename StageArnT = Aws::String>
57 void SetStageArn(StageArnT&& value) {
58 m_stageArnHasBeenSet = true;
59 m_stageArn = std::forward<StageArnT>(value);
60 }
61 template <typename StageArnT = Aws::String>
63 SetStageArn(std::forward<StageArnT>(value));
64 return *this;
65 }
67
69
73 inline bool GetRedundantIngest() const { return m_redundantIngest; }
74 inline bool RedundantIngestHasBeenSet() const { return m_redundantIngestHasBeenSet; }
75 inline void SetRedundantIngest(bool value) {
76 m_redundantIngestHasBeenSet = true;
77 m_redundantIngest = value;
78 }
80 SetRedundantIngest(value);
81 return *this;
82 }
84 private:
85 Aws::String m_arn;
86
87 Aws::String m_stageArn;
88
89 bool m_redundantIngest{false};
90 bool m_arnHasBeenSet = false;
91 bool m_stageArnHasBeenSet = false;
92 bool m_redundantIngestHasBeenSet = false;
93};
94
95} // namespace Model
96} // namespace ivsrealtime
97} // namespace Aws
AWS_IVSREALTIME_API Aws::String SerializePayload() const override
UpdateIngestConfigurationRequest & WithRedundantIngest(bool value)
UpdateIngestConfigurationRequest & WithStageArn(StageArnT &&value)
AWS_IVSREALTIME_API UpdateIngestConfigurationRequest()=default
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String