AWS SDK for C++

AWS SDK for C++ Version 1.11.816

Loading...
Searching...
No Matches
HttpVerification.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/securityagent/SecurityAgent_EXPORTS.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace SecurityAgent {
20namespace Model {
21
30 public:
31 AWS_SECURITYAGENT_API HttpVerification() = default;
32 AWS_SECURITYAGENT_API HttpVerification(Aws::Utils::Json::JsonView jsonValue);
33 AWS_SECURITYAGENT_API HttpVerification& operator=(Aws::Utils::Json::JsonView jsonValue);
34 AWS_SECURITYAGENT_API Aws::Utils::Json::JsonValue Jsonize() const;
35
37
40 inline const Aws::String& GetToken() const { return m_token; }
41 inline bool TokenHasBeenSet() const { return m_tokenHasBeenSet; }
42 template <typename TokenT = Aws::String>
43 void SetToken(TokenT&& value) {
44 m_tokenHasBeenSet = true;
45 m_token = std::forward<TokenT>(value);
46 }
47 template <typename TokenT = Aws::String>
48 HttpVerification& WithToken(TokenT&& value) {
49 SetToken(std::forward<TokenT>(value));
50 return *this;
51 }
53
55
58 inline const Aws::String& GetRoutePath() const { return m_routePath; }
59 inline bool RoutePathHasBeenSet() const { return m_routePathHasBeenSet; }
60 template <typename RoutePathT = Aws::String>
61 void SetRoutePath(RoutePathT&& value) {
62 m_routePathHasBeenSet = true;
63 m_routePath = std::forward<RoutePathT>(value);
64 }
65 template <typename RoutePathT = Aws::String>
66 HttpVerification& WithRoutePath(RoutePathT&& value) {
67 SetRoutePath(std::forward<RoutePathT>(value));
68 return *this;
69 }
71 private:
72 Aws::String m_token;
73
74 Aws::String m_routePath;
75 bool m_tokenHasBeenSet = false;
76 bool m_routePathHasBeenSet = false;
77};
78
79} // namespace Model
80} // namespace SecurityAgent
81} // namespace Aws
AWS_SECURITYAGENT_API HttpVerification & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_SECURITYAGENT_API HttpVerification(Aws::Utils::Json::JsonView jsonValue)
HttpVerification & WithRoutePath(RoutePathT &&value)
HttpVerification & WithToken(TokenT &&value)
AWS_SECURITYAGENT_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_SECURITYAGENT_API HttpVerification()=default
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue