AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
AddFlowSourcesRequest.h
1
6#pragma once
7#include <aws/mediaconnect/MediaConnect_EXPORTS.h>
8#include <aws/mediaconnect/MediaConnectRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/core/utils/memory/stl/AWSVector.h>
11#include <aws/mediaconnect/model/SetSourceRequest.h>
12#include <utility>
13
14namespace Aws
15{
16namespace MediaConnect
17{
18namespace Model
19{
20
27 {
28 public:
29 AWS_MEDIACONNECT_API AddFlowSourcesRequest();
30
31 // Service request name is the Operation name which will send this request out,
32 // each operation should has unique request name, so that we can get operation's name from this request.
33 // Note: this is not true for response, multiple operations may have the same response name,
34 // so we can not get operation's name from response.
35 inline virtual const char* GetServiceRequestName() const override { return "AddFlowSources"; }
36
37 AWS_MEDIACONNECT_API Aws::String SerializePayload() const override;
38
39
41
44 inline const Aws::String& GetFlowArn() const{ return m_flowArn; }
45 inline bool FlowArnHasBeenSet() const { return m_flowArnHasBeenSet; }
46 inline void SetFlowArn(const Aws::String& value) { m_flowArnHasBeenSet = true; m_flowArn = value; }
47 inline void SetFlowArn(Aws::String&& value) { m_flowArnHasBeenSet = true; m_flowArn = std::move(value); }
48 inline void SetFlowArn(const char* value) { m_flowArnHasBeenSet = true; m_flowArn.assign(value); }
49 inline AddFlowSourcesRequest& WithFlowArn(const Aws::String& value) { SetFlowArn(value); return *this;}
50 inline AddFlowSourcesRequest& WithFlowArn(Aws::String&& value) { SetFlowArn(std::move(value)); return *this;}
51 inline AddFlowSourcesRequest& WithFlowArn(const char* value) { SetFlowArn(value); return *this;}
53
55
58 inline const Aws::Vector<SetSourceRequest>& GetSources() const{ return m_sources; }
59 inline bool SourcesHasBeenSet() const { return m_sourcesHasBeenSet; }
60 inline void SetSources(const Aws::Vector<SetSourceRequest>& value) { m_sourcesHasBeenSet = true; m_sources = value; }
61 inline void SetSources(Aws::Vector<SetSourceRequest>&& value) { m_sourcesHasBeenSet = true; m_sources = std::move(value); }
62 inline AddFlowSourcesRequest& WithSources(const Aws::Vector<SetSourceRequest>& value) { SetSources(value); return *this;}
63 inline AddFlowSourcesRequest& WithSources(Aws::Vector<SetSourceRequest>&& value) { SetSources(std::move(value)); return *this;}
64 inline AddFlowSourcesRequest& AddSources(const SetSourceRequest& value) { m_sourcesHasBeenSet = true; m_sources.push_back(value); return *this; }
65 inline AddFlowSourcesRequest& AddSources(SetSourceRequest&& value) { m_sourcesHasBeenSet = true; m_sources.push_back(std::move(value)); return *this; }
67 private:
68
69 Aws::String m_flowArn;
70 bool m_flowArnHasBeenSet = false;
71
73 bool m_sourcesHasBeenSet = false;
74 };
75
76} // namespace Model
77} // namespace MediaConnect
78} // namespace Aws
AWS_MEDIACONNECT_API Aws::String SerializePayload() const override
const Aws::Vector< SetSourceRequest > & GetSources() const
AddFlowSourcesRequest & WithFlowArn(const Aws::String &value)
virtual const char * GetServiceRequestName() const override
AddFlowSourcesRequest & AddSources(const SetSourceRequest &value)
void SetSources(const Aws::Vector< SetSourceRequest > &value)
AddFlowSourcesRequest & WithSources(Aws::Vector< SetSourceRequest > &&value)
AddFlowSourcesRequest & WithFlowArn(Aws::String &&value)
AddFlowSourcesRequest & AddSources(SetSourceRequest &&value)
void SetSources(Aws::Vector< SetSourceRequest > &&value)
AddFlowSourcesRequest & WithFlowArn(const char *value)
AddFlowSourcesRequest & WithSources(const Aws::Vector< SetSourceRequest > &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector