AWS SDK for C++

AWS SDK for C++ Version 1.11.754

Loading...
Searching...
No Matches
PutSinkPolicyRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/oam/OAMRequest.h>
9#include <aws/oam/OAM_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace OAM {
15namespace Model {
16
20 public:
21 AWS_OAM_API PutSinkPolicyRequest() = 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 "PutSinkPolicy"; }
28
29 AWS_OAM_API Aws::String SerializePayload() const override;
30
32
39 inline const Aws::String& GetPolicy() const { return m_policy; }
40 inline bool PolicyHasBeenSet() const { return m_policyHasBeenSet; }
41 template <typename PolicyT = Aws::String>
42 void SetPolicy(PolicyT&& value) {
43 m_policyHasBeenSet = true;
44 m_policy = std::forward<PolicyT>(value);
45 }
46 template <typename PolicyT = Aws::String>
47 PutSinkPolicyRequest& WithPolicy(PolicyT&& value) {
48 SetPolicy(std::forward<PolicyT>(value));
49 return *this;
50 }
52
54
57 inline const Aws::String& GetSinkIdentifier() const { return m_sinkIdentifier; }
58 inline bool SinkIdentifierHasBeenSet() const { return m_sinkIdentifierHasBeenSet; }
59 template <typename SinkIdentifierT = Aws::String>
60 void SetSinkIdentifier(SinkIdentifierT&& value) {
61 m_sinkIdentifierHasBeenSet = true;
62 m_sinkIdentifier = std::forward<SinkIdentifierT>(value);
63 }
64 template <typename SinkIdentifierT = Aws::String>
65 PutSinkPolicyRequest& WithSinkIdentifier(SinkIdentifierT&& value) {
66 SetSinkIdentifier(std::forward<SinkIdentifierT>(value));
67 return *this;
68 }
70 private:
71 Aws::String m_policy;
72
73 Aws::String m_sinkIdentifier;
74 bool m_policyHasBeenSet = false;
75 bool m_sinkIdentifierHasBeenSet = false;
76};
77
78} // namespace Model
79} // namespace OAM
80} // namespace Aws
void SetSinkIdentifier(SinkIdentifierT &&value)
PutSinkPolicyRequest & WithPolicy(PolicyT &&value)
AWS_OAM_API PutSinkPolicyRequest()=default
virtual const char * GetServiceRequestName() const override
const Aws::String & GetSinkIdentifier() const
PutSinkPolicyRequest & WithSinkIdentifier(SinkIdentifierT &&value)
AWS_OAM_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String