AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
DescribeRouterConfigurationRequest.h
1
6#pragma once
7#include <aws/directconnect/DirectConnect_EXPORTS.h>
8#include <aws/directconnect/DirectConnectRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace DirectConnect
15{
16namespace Model
17{
18
26 {
27 public:
28 AWS_DIRECTCONNECT_API DescribeRouterConfigurationRequest() = default;
29
30 // Service request name is the Operation name which will send this request out,
31 // each operation should has unique request name, so that we can get operation's name from this request.
32 // Note: this is not true for response, multiple operations may have the same response name,
33 // so we can not get operation's name from response.
34 inline virtual const char* GetServiceRequestName() const override { return "DescribeRouterConfiguration"; }
35
36 AWS_DIRECTCONNECT_API Aws::String SerializePayload() const override;
37
38 AWS_DIRECTCONNECT_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
39
40
42
45 inline const Aws::String& GetVirtualInterfaceId() const { return m_virtualInterfaceId; }
46 inline bool VirtualInterfaceIdHasBeenSet() const { return m_virtualInterfaceIdHasBeenSet; }
47 template<typename VirtualInterfaceIdT = Aws::String>
48 void SetVirtualInterfaceId(VirtualInterfaceIdT&& value) { m_virtualInterfaceIdHasBeenSet = true; m_virtualInterfaceId = std::forward<VirtualInterfaceIdT>(value); }
49 template<typename VirtualInterfaceIdT = Aws::String>
50 DescribeRouterConfigurationRequest& WithVirtualInterfaceId(VirtualInterfaceIdT&& value) { SetVirtualInterfaceId(std::forward<VirtualInterfaceIdT>(value)); return *this;}
52
54
58 inline const Aws::String& GetRouterTypeIdentifier() const { return m_routerTypeIdentifier; }
59 inline bool RouterTypeIdentifierHasBeenSet() const { return m_routerTypeIdentifierHasBeenSet; }
60 template<typename RouterTypeIdentifierT = Aws::String>
61 void SetRouterTypeIdentifier(RouterTypeIdentifierT&& value) { m_routerTypeIdentifierHasBeenSet = true; m_routerTypeIdentifier = std::forward<RouterTypeIdentifierT>(value); }
62 template<typename RouterTypeIdentifierT = Aws::String>
63 DescribeRouterConfigurationRequest& WithRouterTypeIdentifier(RouterTypeIdentifierT&& value) { SetRouterTypeIdentifier(std::forward<RouterTypeIdentifierT>(value)); return *this;}
65 private:
66
67 Aws::String m_virtualInterfaceId;
68 bool m_virtualInterfaceIdHasBeenSet = false;
69
70 Aws::String m_routerTypeIdentifier;
71 bool m_routerTypeIdentifierHasBeenSet = false;
72 };
73
74} // namespace Model
75} // namespace DirectConnect
76} // namespace Aws
DescribeRouterConfigurationRequest & WithVirtualInterfaceId(VirtualInterfaceIdT &&value)
AWS_DIRECTCONNECT_API DescribeRouterConfigurationRequest()=default
AWS_DIRECTCONNECT_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
AWS_DIRECTCONNECT_API Aws::String SerializePayload() const override
DescribeRouterConfigurationRequest & WithRouterTypeIdentifier(RouterTypeIdentifierT &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String