AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ReportExportConfig.h
1
6#pragma once
7#include <aws/codebuild/CodeBuild_EXPORTS.h>
8#include <aws/codebuild/model/ReportExportConfigType.h>
9#include <aws/codebuild/model/S3ReportExportConfig.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 CodeBuild
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_CODEBUILD_API ReportExportConfig();
37 AWS_CODEBUILD_API ReportExportConfig(Aws::Utils::Json::JsonView jsonValue);
39 AWS_CODEBUILD_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
49 inline const ReportExportConfigType& GetExportConfigType() const{ return m_exportConfigType; }
50 inline bool ExportConfigTypeHasBeenSet() const { return m_exportConfigTypeHasBeenSet; }
51 inline void SetExportConfigType(const ReportExportConfigType& value) { m_exportConfigTypeHasBeenSet = true; m_exportConfigType = value; }
52 inline void SetExportConfigType(ReportExportConfigType&& value) { m_exportConfigTypeHasBeenSet = true; m_exportConfigType = std::move(value); }
54 inline ReportExportConfig& WithExportConfigType(ReportExportConfigType&& value) { SetExportConfigType(std::move(value)); return *this;}
56
58
62 inline const S3ReportExportConfig& GetS3Destination() const{ return m_s3Destination; }
63 inline bool S3DestinationHasBeenSet() const { return m_s3DestinationHasBeenSet; }
64 inline void SetS3Destination(const S3ReportExportConfig& value) { m_s3DestinationHasBeenSet = true; m_s3Destination = value; }
65 inline void SetS3Destination(S3ReportExportConfig&& value) { m_s3DestinationHasBeenSet = true; m_s3Destination = std::move(value); }
66 inline ReportExportConfig& WithS3Destination(const S3ReportExportConfig& value) { SetS3Destination(value); return *this;}
67 inline ReportExportConfig& WithS3Destination(S3ReportExportConfig&& value) { SetS3Destination(std::move(value)); return *this;}
69 private:
70
71 ReportExportConfigType m_exportConfigType;
72 bool m_exportConfigTypeHasBeenSet = false;
73
74 S3ReportExportConfig m_s3Destination;
75 bool m_s3DestinationHasBeenSet = false;
76 };
77
78} // namespace Model
79} // namespace CodeBuild
80} // namespace Aws
AWS_CODEBUILD_API Aws::Utils::Json::JsonValue Jsonize() const
ReportExportConfig & WithExportConfigType(const ReportExportConfigType &value)
const S3ReportExportConfig & GetS3Destination() const
void SetS3Destination(S3ReportExportConfig &&value)
AWS_CODEBUILD_API ReportExportConfig & operator=(Aws::Utils::Json::JsonView jsonValue)
ReportExportConfig & WithS3Destination(const S3ReportExportConfig &value)
void SetExportConfigType(const ReportExportConfigType &value)
ReportExportConfig & WithExportConfigType(ReportExportConfigType &&value)
void SetS3Destination(const S3ReportExportConfig &value)
ReportExportConfig & WithS3Destination(S3ReportExportConfig &&value)
const ReportExportConfigType & GetExportConfigType() const
void SetExportConfigType(ReportExportConfigType &&value)
AWS_CODEBUILD_API ReportExportConfig(Aws::Utils::Json::JsonView jsonValue)
Aws::Utils::Json::JsonValue JsonValue