AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
PutDataProtectionPolicyRequest.h
1
6#pragma once
7#include <aws/sns/SNS_EXPORTS.h>
8#include <aws/sns/SNSRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace SNS
15{
16namespace Model
17{
18
22 {
23 public:
24 AWS_SNS_API PutDataProtectionPolicyRequest() = 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 "PutDataProtectionPolicy"; }
31
32 AWS_SNS_API Aws::String SerializePayload() const override;
33
34 protected:
35 AWS_SNS_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
36
37 public:
38
40
46 inline const Aws::String& GetResourceArn() const { return m_resourceArn; }
47 inline bool ResourceArnHasBeenSet() const { return m_resourceArnHasBeenSet; }
48 template<typename ResourceArnT = Aws::String>
49 void SetResourceArn(ResourceArnT&& value) { m_resourceArnHasBeenSet = true; m_resourceArn = std::forward<ResourceArnT>(value); }
50 template<typename ResourceArnT = Aws::String>
51 PutDataProtectionPolicyRequest& WithResourceArn(ResourceArnT&& value) { SetResourceArn(std::forward<ResourceArnT>(value)); return *this;}
53
55
60 inline const Aws::String& GetDataProtectionPolicy() const { return m_dataProtectionPolicy; }
61 inline bool DataProtectionPolicyHasBeenSet() const { return m_dataProtectionPolicyHasBeenSet; }
62 template<typename DataProtectionPolicyT = Aws::String>
63 void SetDataProtectionPolicy(DataProtectionPolicyT&& value) { m_dataProtectionPolicyHasBeenSet = true; m_dataProtectionPolicy = std::forward<DataProtectionPolicyT>(value); }
64 template<typename DataProtectionPolicyT = Aws::String>
65 PutDataProtectionPolicyRequest& WithDataProtectionPolicy(DataProtectionPolicyT&& value) { SetDataProtectionPolicy(std::forward<DataProtectionPolicyT>(value)); return *this;}
67 private:
68
69 Aws::String m_resourceArn;
70 bool m_resourceArnHasBeenSet = false;
71
72 Aws::String m_dataProtectionPolicy;
73 bool m_dataProtectionPolicyHasBeenSet = false;
74 };
75
76} // namespace Model
77} // namespace SNS
78} // namespace Aws
virtual const char * GetServiceRequestName() const override
AWS_SNS_API Aws::String SerializePayload() const override
PutDataProtectionPolicyRequest & WithDataProtectionPolicy(DataProtectionPolicyT &&value)
PutDataProtectionPolicyRequest & WithResourceArn(ResourceArnT &&value)
AWS_SNS_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String