AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetWebACLRequest.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 GetWebACLRequest();
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 "GetWebACL"; }
32
33 AWS_WAFV2_API Aws::String SerializePayload() const override;
34
36
37
39
43 inline const Aws::String& GetName() const{ return m_name; }
44 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
45 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
46 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
47 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
48 inline GetWebACLRequest& WithName(const Aws::String& value) { SetName(value); return *this;}
49 inline GetWebACLRequest& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
50 inline GetWebACLRequest& WithName(const char* value) { SetName(value); return *this;}
52
54
65 inline const Scope& GetScope() const{ return m_scope; }
66 inline bool ScopeHasBeenSet() const { return m_scopeHasBeenSet; }
67 inline void SetScope(const Scope& value) { m_scopeHasBeenSet = true; m_scope = value; }
68 inline void SetScope(Scope&& value) { m_scopeHasBeenSet = true; m_scope = std::move(value); }
69 inline GetWebACLRequest& WithScope(const Scope& value) { SetScope(value); return *this;}
70 inline GetWebACLRequest& WithScope(Scope&& value) { SetScope(std::move(value)); return *this;}
72
74
79 inline const Aws::String& GetId() const{ return m_id; }
80 inline bool IdHasBeenSet() const { return m_idHasBeenSet; }
81 inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; }
82 inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); }
83 inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); }
84 inline GetWebACLRequest& WithId(const Aws::String& value) { SetId(value); return *this;}
85 inline GetWebACLRequest& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;}
86 inline GetWebACLRequest& WithId(const char* value) { SetId(value); return *this;}
88 private:
89
90 Aws::String m_name;
91 bool m_nameHasBeenSet = false;
92
93 Scope m_scope;
94 bool m_scopeHasBeenSet = false;
95
96 Aws::String m_id;
97 bool m_idHasBeenSet = false;
98 };
99
100} // namespace Model
101} // namespace WAFV2
102} // namespace Aws
const Aws::String & GetId() const
void SetName(const Aws::String &value)
GetWebACLRequest & WithScope(const Scope &value)
GetWebACLRequest & WithId(const Aws::String &value)
GetWebACLRequest & WithName(Aws::String &&value)
void SetName(Aws::String &&value)
const Aws::String & GetName() const
GetWebACLRequest & WithName(const char *value)
virtual const char * GetServiceRequestName() const override
AWS_WAFV2_API Aws::String SerializePayload() const override
void SetId(const Aws::String &value)
GetWebACLRequest & WithId(Aws::String &&value)
void SetId(Aws::String &&value)
GetWebACLRequest & WithId(const char *value)
GetWebACLRequest & WithScope(Scope &&value)
AWS_WAFV2_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
GetWebACLRequest & WithName(const Aws::String &value)
void SetScope(const Scope &value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String