AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
S3BucketRepository.h
1
6#pragma once
7#include <aws/codeguru-reviewer/CodeGuruReviewer_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/codeguru-reviewer/model/S3RepositoryDetails.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 CodeGuruReviewer
23{
24namespace Model
25{
26
35 {
36 public:
37 AWS_CODEGURUREVIEWER_API S3BucketRepository() = default;
38 AWS_CODEGURUREVIEWER_API S3BucketRepository(Aws::Utils::Json::JsonView jsonValue);
39 AWS_CODEGURUREVIEWER_API S3BucketRepository& operator=(Aws::Utils::Json::JsonView jsonValue);
40 AWS_CODEGURUREVIEWER_API Aws::Utils::Json::JsonValue Jsonize() const;
41
42
44
48 inline const Aws::String& GetName() const { return m_name; }
49 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
50 template<typename NameT = Aws::String>
51 void SetName(NameT&& value) { m_nameHasBeenSet = true; m_name = std::forward<NameT>(value); }
52 template<typename NameT = Aws::String>
53 S3BucketRepository& WithName(NameT&& value) { SetName(std::forward<NameT>(value)); return *this;}
55
57
63 inline const S3RepositoryDetails& GetDetails() const { return m_details; }
64 inline bool DetailsHasBeenSet() const { return m_detailsHasBeenSet; }
65 template<typename DetailsT = S3RepositoryDetails>
66 void SetDetails(DetailsT&& value) { m_detailsHasBeenSet = true; m_details = std::forward<DetailsT>(value); }
67 template<typename DetailsT = S3RepositoryDetails>
68 S3BucketRepository& WithDetails(DetailsT&& value) { SetDetails(std::forward<DetailsT>(value)); return *this;}
70 private:
71
72 Aws::String m_name;
73 bool m_nameHasBeenSet = false;
74
75 S3RepositoryDetails m_details;
76 bool m_detailsHasBeenSet = false;
77 };
78
79} // namespace Model
80} // namespace CodeGuruReviewer
81} // namespace Aws
AWS_CODEGURUREVIEWER_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_CODEGURUREVIEWER_API S3BucketRepository(Aws::Utils::Json::JsonView jsonValue)
S3BucketRepository & WithName(NameT &&value)
AWS_CODEGURUREVIEWER_API S3BucketRepository & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_CODEGURUREVIEWER_API S3BucketRepository()=default
S3BucketRepository & WithDetails(DetailsT &&value)
const S3RepositoryDetails & GetDetails() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue