AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
PutDestinationPolicyRequest.h
1
6#pragma once
7#include <aws/logs/CloudWatchLogs_EXPORTS.h>
8#include <aws/logs/CloudWatchLogsRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace CloudWatchLogs
15{
16namespace Model
17{
18
22 {
23 public:
24 AWS_CLOUDWATCHLOGS_API PutDestinationPolicyRequest() = 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 "PutDestinationPolicy"; }
31
32 AWS_CLOUDWATCHLOGS_API Aws::String SerializePayload() const override;
33
34 AWS_CLOUDWATCHLOGS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
35
36
38
41 inline const Aws::String& GetDestinationName() const { return m_destinationName; }
42 inline bool DestinationNameHasBeenSet() const { return m_destinationNameHasBeenSet; }
43 template<typename DestinationNameT = Aws::String>
44 void SetDestinationName(DestinationNameT&& value) { m_destinationNameHasBeenSet = true; m_destinationName = std::forward<DestinationNameT>(value); }
45 template<typename DestinationNameT = Aws::String>
46 PutDestinationPolicyRequest& WithDestinationName(DestinationNameT&& value) { SetDestinationName(std::forward<DestinationNameT>(value)); return *this;}
48
50
54 inline const Aws::String& GetAccessPolicy() const { return m_accessPolicy; }
55 inline bool AccessPolicyHasBeenSet() const { return m_accessPolicyHasBeenSet; }
56 template<typename AccessPolicyT = Aws::String>
57 void SetAccessPolicy(AccessPolicyT&& value) { m_accessPolicyHasBeenSet = true; m_accessPolicy = std::forward<AccessPolicyT>(value); }
58 template<typename AccessPolicyT = Aws::String>
59 PutDestinationPolicyRequest& WithAccessPolicy(AccessPolicyT&& value) { SetAccessPolicy(std::forward<AccessPolicyT>(value)); return *this;}
61
63
76 inline bool GetForceUpdate() const { return m_forceUpdate; }
77 inline bool ForceUpdateHasBeenSet() const { return m_forceUpdateHasBeenSet; }
78 inline void SetForceUpdate(bool value) { m_forceUpdateHasBeenSet = true; m_forceUpdate = value; }
79 inline PutDestinationPolicyRequest& WithForceUpdate(bool value) { SetForceUpdate(value); return *this;}
81 private:
82
83 Aws::String m_destinationName;
84 bool m_destinationNameHasBeenSet = false;
85
86 Aws::String m_accessPolicy;
87 bool m_accessPolicyHasBeenSet = false;
88
89 bool m_forceUpdate{false};
90 bool m_forceUpdateHasBeenSet = false;
91 };
92
93} // namespace Model
94} // namespace CloudWatchLogs
95} // namespace Aws
AWS_CLOUDWATCHLOGS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
PutDestinationPolicyRequest & WithDestinationName(DestinationNameT &&value)
AWS_CLOUDWATCHLOGS_API PutDestinationPolicyRequest()=default
AWS_CLOUDWATCHLOGS_API Aws::String SerializePayload() const override
PutDestinationPolicyRequest & WithAccessPolicy(AccessPolicyT &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String