AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ReportWithRawData.h
1
6#pragma once
7#include <aws/codebuild/CodeBuild_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Json
16{
17 class JsonValue;
18 class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace CodeBuild
22{
23namespace Model
24{
25
33 {
34 public:
35 AWS_CODEBUILD_API ReportWithRawData();
36 AWS_CODEBUILD_API ReportWithRawData(Aws::Utils::Json::JsonView jsonValue);
38 AWS_CODEBUILD_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
45 inline const Aws::String& GetReportArn() const{ return m_reportArn; }
46 inline bool ReportArnHasBeenSet() const { return m_reportArnHasBeenSet; }
47 inline void SetReportArn(const Aws::String& value) { m_reportArnHasBeenSet = true; m_reportArn = value; }
48 inline void SetReportArn(Aws::String&& value) { m_reportArnHasBeenSet = true; m_reportArn = std::move(value); }
49 inline void SetReportArn(const char* value) { m_reportArnHasBeenSet = true; m_reportArn.assign(value); }
50 inline ReportWithRawData& WithReportArn(const Aws::String& value) { SetReportArn(value); return *this;}
51 inline ReportWithRawData& WithReportArn(Aws::String&& value) { SetReportArn(std::move(value)); return *this;}
52 inline ReportWithRawData& WithReportArn(const char* value) { SetReportArn(value); return *this;}
54
56
59 inline const Aws::String& GetData() const{ return m_data; }
60 inline bool DataHasBeenSet() const { return m_dataHasBeenSet; }
61 inline void SetData(const Aws::String& value) { m_dataHasBeenSet = true; m_data = value; }
62 inline void SetData(Aws::String&& value) { m_dataHasBeenSet = true; m_data = std::move(value); }
63 inline void SetData(const char* value) { m_dataHasBeenSet = true; m_data.assign(value); }
64 inline ReportWithRawData& WithData(const Aws::String& value) { SetData(value); return *this;}
65 inline ReportWithRawData& WithData(Aws::String&& value) { SetData(std::move(value)); return *this;}
66 inline ReportWithRawData& WithData(const char* value) { SetData(value); return *this;}
68 private:
69
70 Aws::String m_reportArn;
71 bool m_reportArnHasBeenSet = false;
72
73 Aws::String m_data;
74 bool m_dataHasBeenSet = false;
75 };
76
77} // namespace Model
78} // namespace CodeBuild
79} // namespace Aws
ReportWithRawData & WithReportArn(const char *value)
const Aws::String & GetReportArn() const
ReportWithRawData & WithReportArn(Aws::String &&value)
ReportWithRawData & WithData(const Aws::String &value)
void SetReportArn(const Aws::String &value)
ReportWithRawData & WithReportArn(const Aws::String &value)
AWS_CODEBUILD_API ReportWithRawData & operator=(Aws::Utils::Json::JsonView jsonValue)
ReportWithRawData & WithData(const char *value)
AWS_CODEBUILD_API ReportWithRawData(Aws::Utils::Json::JsonView jsonValue)
AWS_CODEBUILD_API Aws::Utils::Json::JsonValue Jsonize() const
ReportWithRawData & WithData(Aws::String &&value)
void SetData(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue