AWS SDK for C++

AWS SDK for C++ Version 1.11.717

Loading...
Searching...
No Matches
FipsEndpoints.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/opensearchserverless/OpenSearchServerless_EXPORTS.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace OpenSearchServerless {
20namespace Model {
21
31 public:
32 AWS_OPENSEARCHSERVERLESS_API FipsEndpoints() = default;
33 AWS_OPENSEARCHSERVERLESS_API FipsEndpoints(Aws::Utils::Json::JsonView jsonValue);
34 AWS_OPENSEARCHSERVERLESS_API FipsEndpoints& operator=(Aws::Utils::Json::JsonView jsonValue);
35 AWS_OPENSEARCHSERVERLESS_API Aws::Utils::Json::JsonValue Jsonize() const;
36
38
44 inline const Aws::String& GetCollectionEndpoint() const { return m_collectionEndpoint; }
45 inline bool CollectionEndpointHasBeenSet() const { return m_collectionEndpointHasBeenSet; }
46 template <typename CollectionEndpointT = Aws::String>
47 void SetCollectionEndpoint(CollectionEndpointT&& value) {
48 m_collectionEndpointHasBeenSet = true;
49 m_collectionEndpoint = std::forward<CollectionEndpointT>(value);
50 }
51 template <typename CollectionEndpointT = Aws::String>
52 FipsEndpoints& WithCollectionEndpoint(CollectionEndpointT&& value) {
53 SetCollectionEndpoint(std::forward<CollectionEndpointT>(value));
54 return *this;
55 }
57
59
64 inline const Aws::String& GetDashboardEndpoint() const { return m_dashboardEndpoint; }
65 inline bool DashboardEndpointHasBeenSet() const { return m_dashboardEndpointHasBeenSet; }
66 template <typename DashboardEndpointT = Aws::String>
67 void SetDashboardEndpoint(DashboardEndpointT&& value) {
68 m_dashboardEndpointHasBeenSet = true;
69 m_dashboardEndpoint = std::forward<DashboardEndpointT>(value);
70 }
71 template <typename DashboardEndpointT = Aws::String>
72 FipsEndpoints& WithDashboardEndpoint(DashboardEndpointT&& value) {
73 SetDashboardEndpoint(std::forward<DashboardEndpointT>(value));
74 return *this;
75 }
77 private:
78 Aws::String m_collectionEndpoint;
79
80 Aws::String m_dashboardEndpoint;
81 bool m_collectionEndpointHasBeenSet = false;
82 bool m_dashboardEndpointHasBeenSet = false;
83};
84
85} // namespace Model
86} // namespace OpenSearchServerless
87} // namespace Aws
FipsEndpoints & WithDashboardEndpoint(DashboardEndpointT &&value)
AWS_OPENSEARCHSERVERLESS_API Aws::Utils::Json::JsonValue Jsonize() const
FipsEndpoints & WithCollectionEndpoint(CollectionEndpointT &&value)
AWS_OPENSEARCHSERVERLESS_API FipsEndpoints & operator=(Aws::Utils::Json::JsonView jsonValue)
void SetCollectionEndpoint(CollectionEndpointT &&value)
AWS_OPENSEARCHSERVERLESS_API FipsEndpoints()=default
const Aws::String & GetCollectionEndpoint() const
void SetDashboardEndpoint(DashboardEndpointT &&value)
const Aws::String & GetDashboardEndpoint() const
AWS_OPENSEARCHSERVERLESS_API FipsEndpoints(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue