AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
AwsGroundStationAgentEndpoint.h
1
6#pragma once
7#include <aws/groundstation/GroundStation_EXPORTS.h>
8#include <aws/groundstation/model/AgentStatus.h>
9#include <aws/groundstation/model/AuditResults.h>
10#include <aws/groundstation/model/ConnectionDetails.h>
11#include <aws/groundstation/model/RangedConnectionDetails.h>
12#include <aws/core/utils/memory/stl/AWSString.h>
13#include <utility>
14
15namespace Aws
16{
17namespace Utils
18{
19namespace Json
20{
21 class JsonValue;
22 class JsonView;
23} // namespace Json
24} // namespace Utils
25namespace GroundStation
26{
27namespace Model
28{
29
37 {
38 public:
39 AWS_GROUNDSTATION_API AwsGroundStationAgentEndpoint() = default;
42 AWS_GROUNDSTATION_API Aws::Utils::Json::JsonValue Jsonize() const;
43
44
46
49 inline AgentStatus GetAgentStatus() const { return m_agentStatus; }
50 inline bool AgentStatusHasBeenSet() const { return m_agentStatusHasBeenSet; }
51 inline void SetAgentStatus(AgentStatus value) { m_agentStatusHasBeenSet = true; m_agentStatus = value; }
54
56
59 inline AuditResults GetAuditResults() const { return m_auditResults; }
60 inline bool AuditResultsHasBeenSet() const { return m_auditResultsHasBeenSet; }
61 inline void SetAuditResults(AuditResults value) { m_auditResultsHasBeenSet = true; m_auditResults = value; }
64
66
69 inline const ConnectionDetails& GetEgressAddress() const { return m_egressAddress; }
70 inline bool EgressAddressHasBeenSet() const { return m_egressAddressHasBeenSet; }
71 template<typename EgressAddressT = ConnectionDetails>
72 void SetEgressAddress(EgressAddressT&& value) { m_egressAddressHasBeenSet = true; m_egressAddress = std::forward<EgressAddressT>(value); }
73 template<typename EgressAddressT = ConnectionDetails>
74 AwsGroundStationAgentEndpoint& WithEgressAddress(EgressAddressT&& value) { SetEgressAddress(std::forward<EgressAddressT>(value)); return *this;}
76
78
81 inline const RangedConnectionDetails& GetIngressAddress() const { return m_ingressAddress; }
82 inline bool IngressAddressHasBeenSet() const { return m_ingressAddressHasBeenSet; }
83 template<typename IngressAddressT = RangedConnectionDetails>
84 void SetIngressAddress(IngressAddressT&& value) { m_ingressAddressHasBeenSet = true; m_ingressAddress = std::forward<IngressAddressT>(value); }
85 template<typename IngressAddressT = RangedConnectionDetails>
86 AwsGroundStationAgentEndpoint& WithIngressAddress(IngressAddressT&& value) { SetIngressAddress(std::forward<IngressAddressT>(value)); return *this;}
88
90
94 inline const Aws::String& GetName() const { return m_name; }
95 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
96 template<typename NameT = Aws::String>
97 void SetName(NameT&& value) { m_nameHasBeenSet = true; m_name = std::forward<NameT>(value); }
98 template<typename NameT = Aws::String>
99 AwsGroundStationAgentEndpoint& WithName(NameT&& value) { SetName(std::forward<NameT>(value)); return *this;}
101 private:
102
103 AgentStatus m_agentStatus{AgentStatus::NOT_SET};
104 bool m_agentStatusHasBeenSet = false;
105
106 AuditResults m_auditResults{AuditResults::NOT_SET};
107 bool m_auditResultsHasBeenSet = false;
108
109 ConnectionDetails m_egressAddress;
110 bool m_egressAddressHasBeenSet = false;
111
112 RangedConnectionDetails m_ingressAddress;
113 bool m_ingressAddressHasBeenSet = false;
114
115 Aws::String m_name;
116 bool m_nameHasBeenSet = false;
117 };
118
119} // namespace Model
120} // namespace GroundStation
121} // namespace Aws
AwsGroundStationAgentEndpoint & WithAuditResults(AuditResults value)
AWS_GROUNDSTATION_API AwsGroundStationAgentEndpoint(Aws::Utils::Json::JsonView jsonValue)
AwsGroundStationAgentEndpoint & WithEgressAddress(EgressAddressT &&value)
AWS_GROUNDSTATION_API AwsGroundStationAgentEndpoint & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_GROUNDSTATION_API Aws::Utils::Json::JsonValue Jsonize() const
AwsGroundStationAgentEndpoint & WithAgentStatus(AgentStatus value)
AWS_GROUNDSTATION_API AwsGroundStationAgentEndpoint()=default
AwsGroundStationAgentEndpoint & WithIngressAddress(IngressAddressT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue