AWS SDK for C++

AWS SDK for C++ Version 1.11.717

Loading...
Searching...
No Matches
AgentNetworkInfo.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/discovery/ApplicationDiscoveryService_EXPORTS.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace ApplicationDiscoveryService {
20namespace Model {
21
29 public:
30 AWS_APPLICATIONDISCOVERYSERVICE_API AgentNetworkInfo() = default;
31 AWS_APPLICATIONDISCOVERYSERVICE_API AgentNetworkInfo(Aws::Utils::Json::JsonView jsonValue);
32 AWS_APPLICATIONDISCOVERYSERVICE_API AgentNetworkInfo& operator=(Aws::Utils::Json::JsonView jsonValue);
33 AWS_APPLICATIONDISCOVERYSERVICE_API Aws::Utils::Json::JsonValue Jsonize() const;
34
36
39 inline const Aws::String& GetIpAddress() const { return m_ipAddress; }
40 inline bool IpAddressHasBeenSet() const { return m_ipAddressHasBeenSet; }
41 template <typename IpAddressT = Aws::String>
42 void SetIpAddress(IpAddressT&& value) {
43 m_ipAddressHasBeenSet = true;
44 m_ipAddress = std::forward<IpAddressT>(value);
45 }
46 template <typename IpAddressT = Aws::String>
47 AgentNetworkInfo& WithIpAddress(IpAddressT&& value) {
48 SetIpAddress(std::forward<IpAddressT>(value));
49 return *this;
50 }
52
54
57 inline const Aws::String& GetMacAddress() const { return m_macAddress; }
58 inline bool MacAddressHasBeenSet() const { return m_macAddressHasBeenSet; }
59 template <typename MacAddressT = Aws::String>
60 void SetMacAddress(MacAddressT&& value) {
61 m_macAddressHasBeenSet = true;
62 m_macAddress = std::forward<MacAddressT>(value);
63 }
64 template <typename MacAddressT = Aws::String>
65 AgentNetworkInfo& WithMacAddress(MacAddressT&& value) {
66 SetMacAddress(std::forward<MacAddressT>(value));
67 return *this;
68 }
70 private:
71 Aws::String m_ipAddress;
72
73 Aws::String m_macAddress;
74 bool m_ipAddressHasBeenSet = false;
75 bool m_macAddressHasBeenSet = false;
76};
77
78} // namespace Model
79} // namespace ApplicationDiscoveryService
80} // namespace Aws
AgentNetworkInfo & WithMacAddress(MacAddressT &&value)
AWS_APPLICATIONDISCOVERYSERVICE_API AgentNetworkInfo()=default
AWS_APPLICATIONDISCOVERYSERVICE_API AgentNetworkInfo & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_APPLICATIONDISCOVERYSERVICE_API AgentNetworkInfo(Aws::Utils::Json::JsonView jsonValue)
AgentNetworkInfo & WithIpAddress(IpAddressT &&value)
AWS_APPLICATIONDISCOVERYSERVICE_API Aws::Utils::Json::JsonValue Jsonize() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue