AWS SDK for C++

AWS SDK for C++ Version 1.11.752

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
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) {
59 m_lastSyncedTimeHasBeenSet = true;
60 m_lastSyncedTime = std::forward<LastSyncedTimeT>(value);
61 }
62 template <typename LastSyncedTimeT = Aws::Utils::DateTime>
63 JiraConfiguration& WithLastSyncedTime(LastSyncedTimeT&& value) {
64 SetLastSyncedTime(std::forward<LastSyncedTimeT>(value));
65 return *this;
66 }
68 private:
69 Aws::String m_jiraIssueUrl;
70
71 Aws::Utils::DateTime m_lastSyncedTime{};
72 bool m_jiraIssueUrlHasBeenSet = false;
73 bool m_lastSyncedTimeHasBeenSet = false;
74};
75
76} // namespace Model
77} // namespace WellArchitected
78} // 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