AWS SDK for C++

AWS SDK for C++ Version 1.11.608

Loading...
Searching...
No Matches
ProtectedJobOutput.h
1
6#pragma once
7#include <aws/cleanrooms/CleanRooms_EXPORTS.h>
8#include <aws/cleanrooms/model/ProtectedJobS3Output.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/cleanrooms/model/ProtectedJobSingleMemberOutput.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Utils
16{
17namespace Json
18{
19 class JsonValue;
20 class JsonView;
21} // namespace Json
22} // namespace Utils
23namespace CleanRooms
24{
25namespace Model
26{
27
35 {
36 public:
37 AWS_CLEANROOMS_API ProtectedJobOutput() = default;
38 AWS_CLEANROOMS_API ProtectedJobOutput(Aws::Utils::Json::JsonView jsonValue);
40 AWS_CLEANROOMS_API Aws::Utils::Json::JsonValue Jsonize() const;
41
42
44
47 inline const ProtectedJobS3Output& GetS3() const { return m_s3; }
48 inline bool S3HasBeenSet() const { return m_s3HasBeenSet; }
49 template<typename S3T = ProtectedJobS3Output>
50 void SetS3(S3T&& value) { m_s3HasBeenSet = true; m_s3 = std::forward<S3T>(value); }
51 template<typename S3T = ProtectedJobS3Output>
52 ProtectedJobOutput& WithS3(S3T&& value) { SetS3(std::forward<S3T>(value)); return *this;}
54
56
60 inline const Aws::Vector<ProtectedJobSingleMemberOutput>& GetMemberList() const { return m_memberList; }
61 inline bool MemberListHasBeenSet() const { return m_memberListHasBeenSet; }
62 template<typename MemberListT = Aws::Vector<ProtectedJobSingleMemberOutput>>
63 void SetMemberList(MemberListT&& value) { m_memberListHasBeenSet = true; m_memberList = std::forward<MemberListT>(value); }
64 template<typename MemberListT = Aws::Vector<ProtectedJobSingleMemberOutput>>
65 ProtectedJobOutput& WithMemberList(MemberListT&& value) { SetMemberList(std::forward<MemberListT>(value)); return *this;}
66 template<typename MemberListT = ProtectedJobSingleMemberOutput>
67 ProtectedJobOutput& AddMemberList(MemberListT&& value) { m_memberListHasBeenSet = true; m_memberList.emplace_back(std::forward<MemberListT>(value)); return *this; }
69 private:
70
72 bool m_s3HasBeenSet = false;
73
75 bool m_memberListHasBeenSet = false;
76 };
77
78} // namespace Model
79} // namespace CleanRooms
80} // namespace Aws
ProtectedJobOutput & AddMemberList(MemberListT &&value)
ProtectedJobOutput & WithMemberList(MemberListT &&value)
AWS_CLEANROOMS_API ProtectedJobOutput & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_CLEANROOMS_API ProtectedJobOutput()=default
const Aws::Vector< ProtectedJobSingleMemberOutput > & GetMemberList() const
AWS_CLEANROOMS_API ProtectedJobOutput(Aws::Utils::Json::JsonView jsonValue)
AWS_CLEANROOMS_API Aws::Utils::Json::JsonValue Jsonize() const
const ProtectedJobS3Output & GetS3() const
ProtectedJobOutput & WithS3(S3T &&value)
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue