AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DeleteQueueRequest.h
1
6#pragma once
7#include <aws/pcs/PCS_EXPORTS.h>
8#include <aws/pcs/PCSRequest.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 PCS
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_PCS_API DeleteQueueRequest();
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 "DeleteQueue"; }
32
33 AWS_PCS_API Aws::String SerializePayload() const override;
34
36
37
39
42 inline const Aws::String& GetClusterIdentifier() const{ return m_clusterIdentifier; }
43 inline bool ClusterIdentifierHasBeenSet() const { return m_clusterIdentifierHasBeenSet; }
44 inline void SetClusterIdentifier(const Aws::String& value) { m_clusterIdentifierHasBeenSet = true; m_clusterIdentifier = value; }
45 inline void SetClusterIdentifier(Aws::String&& value) { m_clusterIdentifierHasBeenSet = true; m_clusterIdentifier = std::move(value); }
46 inline void SetClusterIdentifier(const char* value) { m_clusterIdentifierHasBeenSet = true; m_clusterIdentifier.assign(value); }
47 inline DeleteQueueRequest& WithClusterIdentifier(const Aws::String& value) { SetClusterIdentifier(value); return *this;}
48 inline DeleteQueueRequest& WithClusterIdentifier(Aws::String&& value) { SetClusterIdentifier(std::move(value)); return *this;}
49 inline DeleteQueueRequest& WithClusterIdentifier(const char* value) { SetClusterIdentifier(value); return *this;}
51
53
56 inline const Aws::String& GetQueueIdentifier() const{ return m_queueIdentifier; }
57 inline bool QueueIdentifierHasBeenSet() const { return m_queueIdentifierHasBeenSet; }
58 inline void SetQueueIdentifier(const Aws::String& value) { m_queueIdentifierHasBeenSet = true; m_queueIdentifier = value; }
59 inline void SetQueueIdentifier(Aws::String&& value) { m_queueIdentifierHasBeenSet = true; m_queueIdentifier = std::move(value); }
60 inline void SetQueueIdentifier(const char* value) { m_queueIdentifierHasBeenSet = true; m_queueIdentifier.assign(value); }
61 inline DeleteQueueRequest& WithQueueIdentifier(const Aws::String& value) { SetQueueIdentifier(value); return *this;}
62 inline DeleteQueueRequest& WithQueueIdentifier(Aws::String&& value) { SetQueueIdentifier(std::move(value)); return *this;}
63 inline DeleteQueueRequest& WithQueueIdentifier(const char* value) { SetQueueIdentifier(value); return *this;}
65
67
76 inline const Aws::String& GetClientToken() const{ return m_clientToken; }
77 inline bool ClientTokenHasBeenSet() const { return m_clientTokenHasBeenSet; }
78 inline void SetClientToken(const Aws::String& value) { m_clientTokenHasBeenSet = true; m_clientToken = value; }
79 inline void SetClientToken(Aws::String&& value) { m_clientTokenHasBeenSet = true; m_clientToken = std::move(value); }
80 inline void SetClientToken(const char* value) { m_clientTokenHasBeenSet = true; m_clientToken.assign(value); }
81 inline DeleteQueueRequest& WithClientToken(const Aws::String& value) { SetClientToken(value); return *this;}
82 inline DeleteQueueRequest& WithClientToken(Aws::String&& value) { SetClientToken(std::move(value)); return *this;}
83 inline DeleteQueueRequest& WithClientToken(const char* value) { SetClientToken(value); return *this;}
85 private:
86
87 Aws::String m_clusterIdentifier;
88 bool m_clusterIdentifierHasBeenSet = false;
89
90 Aws::String m_queueIdentifier;
91 bool m_queueIdentifierHasBeenSet = false;
92
93 Aws::String m_clientToken;
94 bool m_clientTokenHasBeenSet = false;
95 };
96
97} // namespace Model
98} // namespace PCS
99} // namespace Aws
AWS_PCS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
DeleteQueueRequest & WithClientToken(const Aws::String &value)
void SetQueueIdentifier(Aws::String &&value)
void SetClusterIdentifier(const char *value)
void SetQueueIdentifier(const char *value)
DeleteQueueRequest & WithQueueIdentifier(const Aws::String &value)
const Aws::String & GetQueueIdentifier() const
const Aws::String & GetClusterIdentifier() const
void SetClientToken(Aws::String &&value)
DeleteQueueRequest & WithQueueIdentifier(Aws::String &&value)
void SetClusterIdentifier(const Aws::String &value)
void SetClusterIdentifier(Aws::String &&value)
AWS_PCS_API Aws::String SerializePayload() const override
DeleteQueueRequest & WithClientToken(const char *value)
DeleteQueueRequest & WithQueueIdentifier(const char *value)
DeleteQueueRequest & WithClientToken(Aws::String &&value)
virtual const char * GetServiceRequestName() const override
void SetClientToken(const Aws::String &value)
DeleteQueueRequest & WithClusterIdentifier(Aws::String &&value)
const Aws::String & GetClientToken() const
DeleteQueueRequest & WithClusterIdentifier(const Aws::String &value)
DeleteQueueRequest & WithClusterIdentifier(const char *value)
void SetQueueIdentifier(const Aws::String &value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String