AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
GetProtectedJobRequest.h
1
6#pragma once
7#include <aws/cleanrooms/CleanRooms_EXPORTS.h>
8#include <aws/cleanrooms/CleanRoomsRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace CleanRooms
15{
16namespace Model
17{
18
22 {
23 public:
24 AWS_CLEANROOMS_API GetProtectedJobRequest() = default;
25
26 // Service request name is the Operation name which will send this request out,
27 // each operation should has unique request name, so that we can get operation's name from this request.
28 // Note: this is not true for response, multiple operations may have the same response name,
29 // so we can not get operation's name from response.
30 inline virtual const char* GetServiceRequestName() const override { return "GetProtectedJob"; }
31
32 AWS_CLEANROOMS_API Aws::String SerializePayload() const override;
33
34
36
39 inline const Aws::String& GetMembershipIdentifier() const { return m_membershipIdentifier; }
40 inline bool MembershipIdentifierHasBeenSet() const { return m_membershipIdentifierHasBeenSet; }
41 template<typename MembershipIdentifierT = Aws::String>
42 void SetMembershipIdentifier(MembershipIdentifierT&& value) { m_membershipIdentifierHasBeenSet = true; m_membershipIdentifier = std::forward<MembershipIdentifierT>(value); }
43 template<typename MembershipIdentifierT = Aws::String>
44 GetProtectedJobRequest& WithMembershipIdentifier(MembershipIdentifierT&& value) { SetMembershipIdentifier(std::forward<MembershipIdentifierT>(value)); return *this;}
46
48
51 inline const Aws::String& GetProtectedJobIdentifier() const { return m_protectedJobIdentifier; }
52 inline bool ProtectedJobIdentifierHasBeenSet() const { return m_protectedJobIdentifierHasBeenSet; }
53 template<typename ProtectedJobIdentifierT = Aws::String>
54 void SetProtectedJobIdentifier(ProtectedJobIdentifierT&& value) { m_protectedJobIdentifierHasBeenSet = true; m_protectedJobIdentifier = std::forward<ProtectedJobIdentifierT>(value); }
55 template<typename ProtectedJobIdentifierT = Aws::String>
56 GetProtectedJobRequest& WithProtectedJobIdentifier(ProtectedJobIdentifierT&& value) { SetProtectedJobIdentifier(std::forward<ProtectedJobIdentifierT>(value)); return *this;}
58 private:
59
60 Aws::String m_membershipIdentifier;
61 bool m_membershipIdentifierHasBeenSet = false;
62
63 Aws::String m_protectedJobIdentifier;
64 bool m_protectedJobIdentifierHasBeenSet = false;
65 };
66
67} // namespace Model
68} // namespace CleanRooms
69} // namespace Aws
virtual const char * GetServiceRequestName() const override
void SetMembershipIdentifier(MembershipIdentifierT &&value)
GetProtectedJobRequest & WithProtectedJobIdentifier(ProtectedJobIdentifierT &&value)
AWS_CLEANROOMS_API GetProtectedJobRequest()=default
GetProtectedJobRequest & WithMembershipIdentifier(MembershipIdentifierT &&value)
void SetProtectedJobIdentifier(ProtectedJobIdentifierT &&value)
AWS_CLEANROOMS_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String