AWS SDK for C++

AWS SDK for C++ Version 1.11.717

Loading...
Searching...
No Matches
GetSigningProfileRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/signer/SignerRequest.h>
9#include <aws/signer/Signer_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Http {
15class URI;
16} // namespace Http
17namespace signer {
18namespace Model {
19
23 public:
24 AWS_SIGNER_API GetSigningProfileRequest() = 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 "GetSigningProfile"; }
31
32 AWS_SIGNER_API Aws::String SerializePayload() const override;
33
34 AWS_SIGNER_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
35
37
40 inline const Aws::String& GetProfileName() const { return m_profileName; }
41 inline bool ProfileNameHasBeenSet() const { return m_profileNameHasBeenSet; }
42 template <typename ProfileNameT = Aws::String>
43 void SetProfileName(ProfileNameT&& value) {
44 m_profileNameHasBeenSet = true;
45 m_profileName = std::forward<ProfileNameT>(value);
46 }
47 template <typename ProfileNameT = Aws::String>
49 SetProfileName(std::forward<ProfileNameT>(value));
50 return *this;
51 }
53
55
58 inline const Aws::String& GetProfileOwner() const { return m_profileOwner; }
59 inline bool ProfileOwnerHasBeenSet() const { return m_profileOwnerHasBeenSet; }
60 template <typename ProfileOwnerT = Aws::String>
61 void SetProfileOwner(ProfileOwnerT&& value) {
62 m_profileOwnerHasBeenSet = true;
63 m_profileOwner = std::forward<ProfileOwnerT>(value);
64 }
65 template <typename ProfileOwnerT = Aws::String>
67 SetProfileOwner(std::forward<ProfileOwnerT>(value));
68 return *this;
69 }
71 private:
72 Aws::String m_profileName;
73
74 Aws::String m_profileOwner;
75 bool m_profileNameHasBeenSet = false;
76 bool m_profileOwnerHasBeenSet = false;
77};
78
79} // namespace Model
80} // namespace signer
81} // namespace Aws
AWS_SIGNER_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
GetSigningProfileRequest & WithProfileOwner(ProfileOwnerT &&value)
AWS_SIGNER_API Aws::String SerializePayload() const override
virtual const char * GetServiceRequestName() const override
AWS_SIGNER_API GetSigningProfileRequest()=default
GetSigningProfileRequest & WithProfileName(ProfileNameT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String