AWS SDK for C++

AWS SDK for C++ Version 1.11.875

Loading...
Searching...
No Matches
JiraConfiguration.h
1
6#pragma once
7#include <aws/core/utils/DateTime.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/wellarchitected/WellArchitected_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Utils {
15namespace Json {
16class JsonValue;
17class JsonView;
18} // namespace Json
19} // namespace Utils
20namespace WellArchitected {
21namespace Model {
22
29 public:
30 AWS_WELLARCHITECTED_API JiraConfiguration() = default;
31 AWS_WELLARCHITECTED_API JiraConfiguration(Aws::Utils::Json::JsonView jsonValue);
32 AWS_WELLARCHITECTED_API JiraConfiguration& operator=(Aws::Utils::Json::JsonView jsonValue);
33 AWS_WELLARCHITECTED_API Aws::Utils::Json::JsonValue Jsonize() const;
34
36
39 inline const Aws::String& GetJiraIssueUrl() const { return m_jiraIssueUrl; }
40 inline bool JiraIssueUrlHasBeenSet() const { return m_jiraIssueUrlHasBeenSet; }
41 template <typename JiraIssueUrlT = Aws::String>
42 void SetJiraIssueUrl(JiraIssueUrlT&& value) {
43 m_jiraIssueUrlHasBeenSet = true;
44 m_jiraIssueUrl = std::forward<JiraIssueUrlT>(value);
45 }
46 template <typename JiraIssueUrlT = Aws::String>
47 JiraConfiguration& WithJiraIssueUrl(JiraIssueUrlT&& value) {
48 SetJiraIssueUrl(std::forward<JiraIssueUrlT>(value));
49 return *this;
50 }
52
54
57 inline const Aws::Utils::DateTime& GetLastSyncedTime() const { return m_lastSyncedTime; }
58 inline bool LastSyncedTimeHasBeenSet() const { return m_lastSyncedTimeHasBeenSet; }
59 template <typename LastSyncedTimeT = Aws::Utils::DateTime>
60 void SetLastSyncedTime(LastSyncedTimeT&& value) {
61 m_lastSyncedTimeHasBeenSet = true;
62 m_lastSyncedTime = std::forward<LastSyncedTimeT>(value);
63 }
64 template <typename LastSyncedTimeT = Aws::Utils::DateTime>
65 JiraConfiguration& WithLastSyncedTime(LastSyncedTimeT&& value) {
66 SetLastSyncedTime(std::forward<LastSyncedTimeT>(value));
67 return *this;
68 }
70 private:
71 Aws::String m_jiraIssueUrl;
72
73 Aws::Utils::DateTime m_lastSyncedTime{};
74 bool m_jiraIssueUrlHasBeenSet = false;
75 bool m_lastSyncedTimeHasBeenSet = false;
76};
77
78} // namespace Model
79} // namespace WellArchitected
80} // namespace Aws
AWS_WELLARCHITECTED_API JiraConfiguration()=default
void SetLastSyncedTime(LastSyncedTimeT &&value)
AWS_WELLARCHITECTED_API JiraConfiguration & operator=(Aws::Utils::Json::JsonView jsonValue)
const Aws::Utils::DateTime & GetLastSyncedTime() const
AWS_WELLARCHITECTED_API JiraConfiguration(Aws::Utils::Json::JsonView jsonValue)
JiraConfiguration & WithJiraIssueUrl(JiraIssueUrlT &&value)
AWS_WELLARCHITECTED_API Aws::Utils::Json::JsonValue Jsonize() const
JiraConfiguration & WithLastSyncedTime(LastSyncedTimeT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue