AWS SDK for C++

AWS SDK for C++ Version 1.11.748

Loading...
Searching...
No Matches
DeleteXssMatchSetRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/waf/WAFRequest.h>
9#include <aws/waf/WAF_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace WAF {
15namespace Model {
16
24 public:
25 AWS_WAF_API DeleteXssMatchSetRequest() = default;
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 "DeleteXssMatchSet"; }
32
33 AWS_WAF_API Aws::String SerializePayload() const override;
34
36
38
43 inline const Aws::String& GetXssMatchSetId() const { return m_xssMatchSetId; }
44 inline bool XssMatchSetIdHasBeenSet() const { return m_xssMatchSetIdHasBeenSet; }
45 template <typename XssMatchSetIdT = Aws::String>
46 void SetXssMatchSetId(XssMatchSetIdT&& value) {
47 m_xssMatchSetIdHasBeenSet = true;
48 m_xssMatchSetId = std::forward<XssMatchSetIdT>(value);
49 }
50 template <typename XssMatchSetIdT = Aws::String>
52 SetXssMatchSetId(std::forward<XssMatchSetIdT>(value));
53 return *this;
54 }
56
58
61 inline const Aws::String& GetChangeToken() const { return m_changeToken; }
62 inline bool ChangeTokenHasBeenSet() const { return m_changeTokenHasBeenSet; }
63 template <typename ChangeTokenT = Aws::String>
64 void SetChangeToken(ChangeTokenT&& value) {
65 m_changeTokenHasBeenSet = true;
66 m_changeToken = std::forward<ChangeTokenT>(value);
67 }
68 template <typename ChangeTokenT = Aws::String>
70 SetChangeToken(std::forward<ChangeTokenT>(value));
71 return *this;
72 }
74 private:
75 Aws::String m_xssMatchSetId;
76
77 Aws::String m_changeToken;
78 bool m_xssMatchSetIdHasBeenSet = false;
79 bool m_changeTokenHasBeenSet = false;
80};
81
82} // namespace Model
83} // namespace WAF
84} // namespace Aws
AWS_WAF_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
DeleteXssMatchSetRequest & WithChangeToken(ChangeTokenT &&value)
virtual const char * GetServiceRequestName() const override
AWS_WAF_API Aws::String SerializePayload() const override
DeleteXssMatchSetRequest & WithXssMatchSetId(XssMatchSetIdT &&value)
AWS_WAF_API DeleteXssMatchSetRequest()=default
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String