AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
Endpoint.h
1
6#pragma once
7#include <aws/connect/Connect_EXPORTS.h>
8#include <aws/connect/model/EndpointType.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Json
17{
18 class JsonValue;
19 class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace Connect
23{
24namespace Model
25{
26
33 {
34 public:
35 AWS_CONNECT_API Endpoint() = default;
36 AWS_CONNECT_API Endpoint(Aws::Utils::Json::JsonView jsonValue);
37 AWS_CONNECT_API Endpoint& operator=(Aws::Utils::Json::JsonView jsonValue);
38 AWS_CONNECT_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
45 inline EndpointType GetType() const { return m_type; }
46 inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; }
47 inline void SetType(EndpointType value) { m_typeHasBeenSet = true; m_type = value; }
48 inline Endpoint& WithType(EndpointType value) { SetType(value); return *this;}
50
52
55 inline const Aws::String& GetAddress() const { return m_address; }
56 inline bool AddressHasBeenSet() const { return m_addressHasBeenSet; }
57 template<typename AddressT = Aws::String>
58 void SetAddress(AddressT&& value) { m_addressHasBeenSet = true; m_address = std::forward<AddressT>(value); }
59 template<typename AddressT = Aws::String>
60 Endpoint& WithAddress(AddressT&& value) { SetAddress(std::forward<AddressT>(value)); return *this;}
62 private:
63
65 bool m_typeHasBeenSet = false;
66
67 Aws::String m_address;
68 bool m_addressHasBeenSet = false;
69 };
70
71} // namespace Model
72} // namespace Connect
73} // namespace Aws
void SetAddress(AddressT &&value)
Definition Endpoint.h:58
AWS_CONNECT_API Endpoint()=default
EndpointType GetType() const
Definition Endpoint.h:45
Endpoint & WithAddress(AddressT &&value)
Definition Endpoint.h:60
AWS_CONNECT_API Aws::Utils::Json::JsonValue Jsonize() const
const Aws::String & GetAddress() const
Definition Endpoint.h:55
void SetType(EndpointType value)
Definition Endpoint.h:47
AWS_CONNECT_API Endpoint(Aws::Utils::Json::JsonView jsonValue)
AWS_CONNECT_API Endpoint & operator=(Aws::Utils::Json::JsonView jsonValue)
bool AddressHasBeenSet() const
Definition Endpoint.h:56
Endpoint & WithType(EndpointType value)
Definition Endpoint.h:48
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue