AWS SDK for C++

AWS SDK for C++ Version 1.11.608

Loading...
Searching...
No Matches
JiraConfiguration.h
1
6#pragma once
7#include <aws/wellarchitected/WellArchitected_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/DateTime.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 WellArchitected
23{
24namespace Model
25{
26
33 {
34 public:
35 AWS_WELLARCHITECTED_API JiraConfiguration() = default;
36 AWS_WELLARCHITECTED_API JiraConfiguration(Aws::Utils::Json::JsonView jsonValue);
37 AWS_WELLARCHITECTED_API JiraConfiguration& operator=(Aws::Utils::Json::JsonView jsonValue);
38 AWS_WELLARCHITECTED_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
45 inline const Aws::String& GetJiraIssueUrl() const { return m_jiraIssueUrl; }
46 inline bool JiraIssueUrlHasBeenSet() const { return m_jiraIssueUrlHasBeenSet; }
47 template<typename JiraIssueUrlT = Aws::String>
48 void SetJiraIssueUrl(JiraIssueUrlT&& value) { m_jiraIssueUrlHasBeenSet = true; m_jiraIssueUrl = std::forward<JiraIssueUrlT>(value); }
49 template<typename JiraIssueUrlT = Aws::String>
50 JiraConfiguration& WithJiraIssueUrl(JiraIssueUrlT&& value) { SetJiraIssueUrl(std::forward<JiraIssueUrlT>(value)); return *this;}
52
54
55 inline const Aws::Utils::DateTime& GetLastSyncedTime() const { return m_lastSyncedTime; }
56 inline bool LastSyncedTimeHasBeenSet() const { return m_lastSyncedTimeHasBeenSet; }
57 template<typename LastSyncedTimeT = Aws::Utils::DateTime>
58 void SetLastSyncedTime(LastSyncedTimeT&& value) { m_lastSyncedTimeHasBeenSet = true; m_lastSyncedTime = std::forward<LastSyncedTimeT>(value); }
59 template<typename LastSyncedTimeT = Aws::Utils::DateTime>
60 JiraConfiguration& WithLastSyncedTime(LastSyncedTimeT&& value) { SetLastSyncedTime(std::forward<LastSyncedTimeT>(value)); return *this;}
62 private:
63
64 Aws::String m_jiraIssueUrl;
65 bool m_jiraIssueUrlHasBeenSet = false;
66
67 Aws::Utils::DateTime m_lastSyncedTime{};
68 bool m_lastSyncedTimeHasBeenSet = false;
69 };
70
71} // namespace Model
72} // namespace WellArchitected
73} // 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