AWS SDK for C++

AWS SDK for C++ Version 1.11.719

Loading...
Searching...
No Matches
BatchGetRouterInputRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/mediaconnect/MediaConnectRequest.h>
10#include <aws/mediaconnect/MediaConnect_EXPORTS.h>
11
12#include <utility>
13
14namespace Aws {
15namespace Http {
16class URI;
17} // namespace Http
18namespace MediaConnect {
19namespace Model {
20
24 public:
25 AWS_MEDIACONNECT_API BatchGetRouterInputRequest() = default;
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 "BatchGetRouterInput"; }
32
33 AWS_MEDIACONNECT_API Aws::String SerializePayload() const override;
34
35 AWS_MEDIACONNECT_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
36
38
42 inline const Aws::Vector<Aws::String>& GetArns() const { return m_arns; }
43 inline bool ArnsHasBeenSet() const { return m_arnsHasBeenSet; }
44 template <typename ArnsT = Aws::Vector<Aws::String>>
45 void SetArns(ArnsT&& value) {
46 m_arnsHasBeenSet = true;
47 m_arns = std::forward<ArnsT>(value);
48 }
49 template <typename ArnsT = Aws::Vector<Aws::String>>
51 SetArns(std::forward<ArnsT>(value));
52 return *this;
53 }
54 template <typename ArnsT = Aws::String>
56 m_arnsHasBeenSet = true;
57 m_arns.emplace_back(std::forward<ArnsT>(value));
58 return *this;
59 }
61 private:
63 bool m_arnsHasBeenSet = false;
64};
65
66} // namespace Model
67} // namespace MediaConnect
68} // namespace Aws
BatchGetRouterInputRequest & WithArns(ArnsT &&value)
BatchGetRouterInputRequest & AddArns(ArnsT &&value)
AWS_MEDIACONNECT_API Aws::String SerializePayload() const override
AWS_MEDIACONNECT_API BatchGetRouterInputRequest()=default
AWS_MEDIACONNECT_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector