AWS SDK for C++

AWS SDK for C++ Version 1.11.608

Loading...
Searching...
No Matches
AudienceExportJobSummary.h
1
6#pragma once
7#include <aws/cleanroomsml/CleanRoomsML_EXPORTS.h>
8#include <aws/core/utils/DateTime.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/cleanroomsml/model/AudienceSize.h>
11#include <aws/cleanroomsml/model/AudienceExportJobStatus.h>
12#include <aws/cleanroomsml/model/StatusDetails.h>
13#include <utility>
14
15namespace Aws
16{
17namespace Utils
18{
19namespace Json
20{
21 class JsonValue;
22 class JsonView;
23} // namespace Json
24} // namespace Utils
25namespace CleanRoomsML
26{
27namespace Model
28{
29
37 {
38 public:
39 AWS_CLEANROOMSML_API AudienceExportJobSummary() = default;
42 AWS_CLEANROOMSML_API Aws::Utils::Json::JsonValue Jsonize() const;
43
44
46
49 inline const Aws::Utils::DateTime& GetCreateTime() const { return m_createTime; }
50 inline bool CreateTimeHasBeenSet() const { return m_createTimeHasBeenSet; }
51 template<typename CreateTimeT = Aws::Utils::DateTime>
52 void SetCreateTime(CreateTimeT&& value) { m_createTimeHasBeenSet = true; m_createTime = std::forward<CreateTimeT>(value); }
53 template<typename CreateTimeT = Aws::Utils::DateTime>
54 AudienceExportJobSummary& WithCreateTime(CreateTimeT&& value) { SetCreateTime(std::forward<CreateTimeT>(value)); return *this;}
56
58
61 inline const Aws::Utils::DateTime& GetUpdateTime() const { return m_updateTime; }
62 inline bool UpdateTimeHasBeenSet() const { return m_updateTimeHasBeenSet; }
63 template<typename UpdateTimeT = Aws::Utils::DateTime>
64 void SetUpdateTime(UpdateTimeT&& value) { m_updateTimeHasBeenSet = true; m_updateTime = std::forward<UpdateTimeT>(value); }
65 template<typename UpdateTimeT = Aws::Utils::DateTime>
66 AudienceExportJobSummary& WithUpdateTime(UpdateTimeT&& value) { SetUpdateTime(std::forward<UpdateTimeT>(value)); return *this;}
68
70
73 inline const Aws::String& GetName() const { return m_name; }
74 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
75 template<typename NameT = Aws::String>
76 void SetName(NameT&& value) { m_nameHasBeenSet = true; m_name = std::forward<NameT>(value); }
77 template<typename NameT = Aws::String>
78 AudienceExportJobSummary& WithName(NameT&& value) { SetName(std::forward<NameT>(value)); return *this;}
80
82
86 inline const Aws::String& GetAudienceGenerationJobArn() const { return m_audienceGenerationJobArn; }
87 inline bool AudienceGenerationJobArnHasBeenSet() const { return m_audienceGenerationJobArnHasBeenSet; }
88 template<typename AudienceGenerationJobArnT = Aws::String>
89 void SetAudienceGenerationJobArn(AudienceGenerationJobArnT&& value) { m_audienceGenerationJobArnHasBeenSet = true; m_audienceGenerationJobArn = std::forward<AudienceGenerationJobArnT>(value); }
90 template<typename AudienceGenerationJobArnT = Aws::String>
91 AudienceExportJobSummary& WithAudienceGenerationJobArn(AudienceGenerationJobArnT&& value) { SetAudienceGenerationJobArn(std::forward<AudienceGenerationJobArnT>(value)); return *this;}
93
95
96 inline const AudienceSize& GetAudienceSize() const { return m_audienceSize; }
97 inline bool AudienceSizeHasBeenSet() const { return m_audienceSizeHasBeenSet; }
98 template<typename AudienceSizeT = AudienceSize>
99 void SetAudienceSize(AudienceSizeT&& value) { m_audienceSizeHasBeenSet = true; m_audienceSize = std::forward<AudienceSizeT>(value); }
100 template<typename AudienceSizeT = AudienceSize>
101 AudienceExportJobSummary& WithAudienceSize(AudienceSizeT&& value) { SetAudienceSize(std::forward<AudienceSizeT>(value)); return *this;}
103
105
108 inline const Aws::String& GetDescription() const { return m_description; }
109 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
110 template<typename DescriptionT = Aws::String>
111 void SetDescription(DescriptionT&& value) { m_descriptionHasBeenSet = true; m_description = std::forward<DescriptionT>(value); }
112 template<typename DescriptionT = Aws::String>
113 AudienceExportJobSummary& WithDescription(DescriptionT&& value) { SetDescription(std::forward<DescriptionT>(value)); return *this;}
115
117
120 inline AudienceExportJobStatus GetStatus() const { return m_status; }
121 inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; }
122 inline void SetStatus(AudienceExportJobStatus value) { m_statusHasBeenSet = true; m_status = value; }
125
127
128 inline const StatusDetails& GetStatusDetails() const { return m_statusDetails; }
129 inline bool StatusDetailsHasBeenSet() const { return m_statusDetailsHasBeenSet; }
130 template<typename StatusDetailsT = StatusDetails>
131 void SetStatusDetails(StatusDetailsT&& value) { m_statusDetailsHasBeenSet = true; m_statusDetails = std::forward<StatusDetailsT>(value); }
132 template<typename StatusDetailsT = StatusDetails>
133 AudienceExportJobSummary& WithStatusDetails(StatusDetailsT&& value) { SetStatusDetails(std::forward<StatusDetailsT>(value)); return *this;}
135
137
140 inline const Aws::String& GetOutputLocation() const { return m_outputLocation; }
141 inline bool OutputLocationHasBeenSet() const { return m_outputLocationHasBeenSet; }
142 template<typename OutputLocationT = Aws::String>
143 void SetOutputLocation(OutputLocationT&& value) { m_outputLocationHasBeenSet = true; m_outputLocation = std::forward<OutputLocationT>(value); }
144 template<typename OutputLocationT = Aws::String>
145 AudienceExportJobSummary& WithOutputLocation(OutputLocationT&& value) { SetOutputLocation(std::forward<OutputLocationT>(value)); return *this;}
147 private:
148
149 Aws::Utils::DateTime m_createTime{};
150 bool m_createTimeHasBeenSet = false;
151
152 Aws::Utils::DateTime m_updateTime{};
153 bool m_updateTimeHasBeenSet = false;
154
155 Aws::String m_name;
156 bool m_nameHasBeenSet = false;
157
158 Aws::String m_audienceGenerationJobArn;
159 bool m_audienceGenerationJobArnHasBeenSet = false;
160
161 AudienceSize m_audienceSize;
162 bool m_audienceSizeHasBeenSet = false;
163
164 Aws::String m_description;
165 bool m_descriptionHasBeenSet = false;
166
168 bool m_statusHasBeenSet = false;
169
170 StatusDetails m_statusDetails;
171 bool m_statusDetailsHasBeenSet = false;
172
173 Aws::String m_outputLocation;
174 bool m_outputLocationHasBeenSet = false;
175 };
176
177} // namespace Model
178} // namespace CleanRoomsML
179} // namespace Aws
void SetAudienceGenerationJobArn(AudienceGenerationJobArnT &&value)
AudienceExportJobSummary & WithStatus(AudienceExportJobStatus value)
AudienceExportJobSummary & WithUpdateTime(UpdateTimeT &&value)
AudienceExportJobSummary & WithStatusDetails(StatusDetailsT &&value)
AudienceExportJobSummary & WithDescription(DescriptionT &&value)
AudienceExportJobSummary & WithOutputLocation(OutputLocationT &&value)
AudienceExportJobSummary & WithAudienceGenerationJobArn(AudienceGenerationJobArnT &&value)
AudienceExportJobSummary & WithName(NameT &&value)
AudienceExportJobSummary & WithCreateTime(CreateTimeT &&value)
AWS_CLEANROOMSML_API AudienceExportJobSummary & operator=(Aws::Utils::Json::JsonView jsonValue)
AudienceExportJobSummary & WithAudienceSize(AudienceSizeT &&value)
AWS_CLEANROOMSML_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_CLEANROOMSML_API AudienceExportJobSummary()=default
AWS_CLEANROOMSML_API AudienceExportJobSummary(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue