AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DeleteCollectionRequest.h
1
6#pragma once
7#include <aws/opensearchserverless/OpenSearchServerless_EXPORTS.h>
8#include <aws/opensearchserverless/OpenSearchServerlessRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11#include <aws/core/utils/UUID.h>
12
13namespace Aws
14{
15namespace OpenSearchServerless
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_OPENSEARCHSERVERLESS_API DeleteCollectionRequest();
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 "DeleteCollection"; }
32
33 AWS_OPENSEARCHSERVERLESS_API Aws::String SerializePayload() const override;
34
35 AWS_OPENSEARCHSERVERLESS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
36
37
39
42 inline const Aws::String& GetClientToken() const{ return m_clientToken; }
43 inline bool ClientTokenHasBeenSet() const { return m_clientTokenHasBeenSet; }
44 inline void SetClientToken(const Aws::String& value) { m_clientTokenHasBeenSet = true; m_clientToken = value; }
45 inline void SetClientToken(Aws::String&& value) { m_clientTokenHasBeenSet = true; m_clientToken = std::move(value); }
46 inline void SetClientToken(const char* value) { m_clientTokenHasBeenSet = true; m_clientToken.assign(value); }
47 inline DeleteCollectionRequest& WithClientToken(const Aws::String& value) { SetClientToken(value); return *this;}
48 inline DeleteCollectionRequest& WithClientToken(Aws::String&& value) { SetClientToken(std::move(value)); return *this;}
49 inline DeleteCollectionRequest& WithClientToken(const char* value) { SetClientToken(value); return *this;}
51
53
60 inline const Aws::String& GetId() const{ return m_id; }
61 inline bool IdHasBeenSet() const { return m_idHasBeenSet; }
62 inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; }
63 inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); }
64 inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); }
65 inline DeleteCollectionRequest& WithId(const Aws::String& value) { SetId(value); return *this;}
66 inline DeleteCollectionRequest& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;}
67 inline DeleteCollectionRequest& WithId(const char* value) { SetId(value); return *this;}
69 private:
70
71 Aws::String m_clientToken;
72 bool m_clientTokenHasBeenSet = false;
73
74 Aws::String m_id;
75 bool m_idHasBeenSet = false;
76 };
77
78} // namespace Model
79} // namespace OpenSearchServerless
80} // namespace Aws
AWS_OPENSEARCHSERVERLESS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
DeleteCollectionRequest & WithClientToken(Aws::String &&value)
AWS_OPENSEARCHSERVERLESS_API Aws::String SerializePayload() const override
DeleteCollectionRequest & WithClientToken(const char *value)
DeleteCollectionRequest & WithId(const char *value)
DeleteCollectionRequest & WithId(const Aws::String &value)
DeleteCollectionRequest & WithClientToken(const Aws::String &value)
DeleteCollectionRequest & WithId(Aws::String &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String