AWS SDK for C++

AWS SDK for C++ Version 1.11.714

Loading...
Searching...
No Matches
RemoveFlowOutputRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/mediaconnect/MediaConnectRequest.h>
9#include <aws/mediaconnect/MediaConnect_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace MediaConnect {
15namespace Model {
16
20 public:
21 AWS_MEDIACONNECT_API RemoveFlowOutputRequest() = 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 "RemoveFlowOutput"; }
28
29 AWS_MEDIACONNECT_API Aws::String SerializePayload() const override;
30
32
36 inline const Aws::String& GetFlowArn() const { return m_flowArn; }
37 inline bool FlowArnHasBeenSet() const { return m_flowArnHasBeenSet; }
38 template <typename FlowArnT = Aws::String>
39 void SetFlowArn(FlowArnT&& value) {
40 m_flowArnHasBeenSet = true;
41 m_flowArn = std::forward<FlowArnT>(value);
42 }
43 template <typename FlowArnT = Aws::String>
45 SetFlowArn(std::forward<FlowArnT>(value));
46 return *this;
47 }
49
51
54 inline const Aws::String& GetOutputArn() const { return m_outputArn; }
55 inline bool OutputArnHasBeenSet() const { return m_outputArnHasBeenSet; }
56 template <typename OutputArnT = Aws::String>
57 void SetOutputArn(OutputArnT&& value) {
58 m_outputArnHasBeenSet = true;
59 m_outputArn = std::forward<OutputArnT>(value);
60 }
61 template <typename OutputArnT = Aws::String>
63 SetOutputArn(std::forward<OutputArnT>(value));
64 return *this;
65 }
67 private:
68 Aws::String m_flowArn;
69
70 Aws::String m_outputArn;
71 bool m_flowArnHasBeenSet = false;
72 bool m_outputArnHasBeenSet = false;
73};
74
75} // namespace Model
76} // namespace MediaConnect
77} // namespace Aws
AWS_MEDIACONNECT_API RemoveFlowOutputRequest()=default
RemoveFlowOutputRequest & WithOutputArn(OutputArnT &&value)
AWS_MEDIACONNECT_API Aws::String SerializePayload() const override
RemoveFlowOutputRequest & WithFlowArn(FlowArnT &&value)
virtual const char * GetServiceRequestName() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String