AWS SDK for C++

AWS SDK for C++ Version 1.11.812

Loading...
Searching...
No Matches
InitiateProviderRegistrationRequest.h
1
6#pragma once
7#include <aws/securityagent/SecurityAgentRequest.h>
8#include <aws/securityagent/SecurityAgent_EXPORTS.h>
9#include <aws/securityagent/model/Provider.h>
10
11#include <utility>
12
13namespace Aws {
14namespace SecurityAgent {
15namespace Model {
16
20 public:
21 AWS_SECURITYAGENT_API InitiateProviderRegistrationRequest() = default;
22
23 // Service request name is the Operation name which will send this request out,
24 // each operation should has unique request name, so that we can get operation's name from this request.
25 // Note: this is not true for response, multiple operations may have the same response name,
26 // so we can not get operation's name from response.
27 inline virtual const char* GetServiceRequestName() const override { return "InitiateProviderRegistration"; }
28
29 AWS_SECURITYAGENT_API Aws::String SerializePayload() const override;
30
32
36 inline Provider GetProvider() const { return m_provider; }
37 inline bool ProviderHasBeenSet() const { return m_providerHasBeenSet; }
38 inline void SetProvider(Provider value) {
39 m_providerHasBeenSet = true;
40 m_provider = value;
41 }
43 SetProvider(value);
44 return *this;
45 }
47 private:
48 Provider m_provider{Provider::NOT_SET};
49 bool m_providerHasBeenSet = false;
50};
51
52} // namespace Model
53} // namespace SecurityAgent
54} // namespace Aws
AWS_SECURITYAGENT_API InitiateProviderRegistrationRequest()=default
AWS_SECURITYAGENT_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String