AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetManagedRuleSetRequest.h
1
6#pragma once
7#include <aws/wafv2/WAFV2_EXPORTS.h>
8#include <aws/wafv2/WAFV2Request.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/wafv2/model/Scope.h>
11#include <utility>
12
13namespace Aws
14{
15namespace WAFV2
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_WAFV2_API GetManagedRuleSetRequest();
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "GetManagedRuleSet"; }
32
33 AWS_WAFV2_API Aws::String SerializePayload() const override;
34
36
37
39
44 inline const Aws::String& GetName() const{ return m_name; }
45 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
46 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
47 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
48 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
49 inline GetManagedRuleSetRequest& WithName(const Aws::String& value) { SetName(value); return *this;}
50 inline GetManagedRuleSetRequest& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
51 inline GetManagedRuleSetRequest& WithName(const char* value) { SetName(value); return *this;}
53
55
66 inline const Scope& GetScope() const{ return m_scope; }
67 inline bool ScopeHasBeenSet() const { return m_scopeHasBeenSet; }
68 inline void SetScope(const Scope& value) { m_scopeHasBeenSet = true; m_scope = value; }
69 inline void SetScope(Scope&& value) { m_scopeHasBeenSet = true; m_scope = std::move(value); }
70 inline GetManagedRuleSetRequest& WithScope(const Scope& value) { SetScope(value); return *this;}
71 inline GetManagedRuleSetRequest& WithScope(Scope&& value) { SetScope(std::move(value)); return *this;}
73
75
80 inline const Aws::String& GetId() const{ return m_id; }
81 inline bool IdHasBeenSet() const { return m_idHasBeenSet; }
82 inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; }
83 inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); }
84 inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); }
85 inline GetManagedRuleSetRequest& WithId(const Aws::String& value) { SetId(value); return *this;}
86 inline GetManagedRuleSetRequest& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;}
87 inline GetManagedRuleSetRequest& WithId(const char* value) { SetId(value); return *this;}
89 private:
90
91 Aws::String m_name;
92 bool m_nameHasBeenSet = false;
93
94 Scope m_scope;
95 bool m_scopeHasBeenSet = false;
96
97 Aws::String m_id;
98 bool m_idHasBeenSet = false;
99 };
100
101} // namespace Model
102} // namespace WAFV2
103} // namespace Aws
virtual const char * GetServiceRequestName() const override
GetManagedRuleSetRequest & WithId(const char *value)
GetManagedRuleSetRequest & WithId(Aws::String &&value)
GetManagedRuleSetRequest & WithName(const char *value)
GetManagedRuleSetRequest & WithName(Aws::String &&value)
GetManagedRuleSetRequest & WithId(const Aws::String &value)
GetManagedRuleSetRequest & WithScope(const Scope &value)
GetManagedRuleSetRequest & WithName(const Aws::String &value)
AWS_WAFV2_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
GetManagedRuleSetRequest & WithScope(Scope &&value)
AWS_WAFV2_API Aws::String SerializePayload() const override
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String