AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DeleteDocumentRequest.h
1
6#pragma once
7#include <aws/ssm/SSM_EXPORTS.h>
8#include <aws/ssm/SSMRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace SSM
15{
16namespace Model
17{
18
22 {
23 public:
24 AWS_SSM_API DeleteDocumentRequest();
25
26 // Service request name is the Operation name which will send this request out,
27 // each operation should has unique request name, so that we can get operation's name from this request.
28 // Note: this is not true for response, multiple operations may have the same response name,
29 // so we can not get operation's name from response.
30 inline virtual const char* GetServiceRequestName() const override { return "DeleteDocument"; }
31
32 AWS_SSM_API Aws::String SerializePayload() const override;
33
35
36
38
41 inline const Aws::String& GetName() const{ return m_name; }
42 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
43 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
44 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
45 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
46 inline DeleteDocumentRequest& WithName(const Aws::String& value) { SetName(value); return *this;}
47 inline DeleteDocumentRequest& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
48 inline DeleteDocumentRequest& WithName(const char* value) { SetName(value); return *this;}
50
52
56 inline const Aws::String& GetDocumentVersion() const{ return m_documentVersion; }
57 inline bool DocumentVersionHasBeenSet() const { return m_documentVersionHasBeenSet; }
58 inline void SetDocumentVersion(const Aws::String& value) { m_documentVersionHasBeenSet = true; m_documentVersion = value; }
59 inline void SetDocumentVersion(Aws::String&& value) { m_documentVersionHasBeenSet = true; m_documentVersion = std::move(value); }
60 inline void SetDocumentVersion(const char* value) { m_documentVersionHasBeenSet = true; m_documentVersion.assign(value); }
61 inline DeleteDocumentRequest& WithDocumentVersion(const Aws::String& value) { SetDocumentVersion(value); return *this;}
62 inline DeleteDocumentRequest& WithDocumentVersion(Aws::String&& value) { SetDocumentVersion(std::move(value)); return *this;}
63 inline DeleteDocumentRequest& WithDocumentVersion(const char* value) { SetDocumentVersion(value); return *this;}
65
67
71 inline const Aws::String& GetVersionName() const{ return m_versionName; }
72 inline bool VersionNameHasBeenSet() const { return m_versionNameHasBeenSet; }
73 inline void SetVersionName(const Aws::String& value) { m_versionNameHasBeenSet = true; m_versionName = value; }
74 inline void SetVersionName(Aws::String&& value) { m_versionNameHasBeenSet = true; m_versionName = std::move(value); }
75 inline void SetVersionName(const char* value) { m_versionNameHasBeenSet = true; m_versionName.assign(value); }
76 inline DeleteDocumentRequest& WithVersionName(const Aws::String& value) { SetVersionName(value); return *this;}
77 inline DeleteDocumentRequest& WithVersionName(Aws::String&& value) { SetVersionName(std::move(value)); return *this;}
78 inline DeleteDocumentRequest& WithVersionName(const char* value) { SetVersionName(value); return *this;}
80
82
89 inline bool GetForce() const{ return m_force; }
90 inline bool ForceHasBeenSet() const { return m_forceHasBeenSet; }
91 inline void SetForce(bool value) { m_forceHasBeenSet = true; m_force = value; }
92 inline DeleteDocumentRequest& WithForce(bool value) { SetForce(value); return *this;}
94 private:
95
96 Aws::String m_name;
97 bool m_nameHasBeenSet = false;
98
99 Aws::String m_documentVersion;
100 bool m_documentVersionHasBeenSet = false;
101
102 Aws::String m_versionName;
103 bool m_versionNameHasBeenSet = false;
104
105 bool m_force;
106 bool m_forceHasBeenSet = false;
107 };
108
109} // namespace Model
110} // namespace SSM
111} // namespace Aws
DeleteDocumentRequest & WithName(Aws::String &&value)
const Aws::String & GetDocumentVersion() const
DeleteDocumentRequest & WithName(const Aws::String &value)
DeleteDocumentRequest & WithDocumentVersion(Aws::String &&value)
DeleteDocumentRequest & WithVersionName(const Aws::String &value)
DeleteDocumentRequest & WithName(const char *value)
virtual const char * GetServiceRequestName() const override
DeleteDocumentRequest & WithDocumentVersion(const char *value)
AWS_SSM_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
DeleteDocumentRequest & WithForce(bool value)
DeleteDocumentRequest & WithVersionName(Aws::String &&value)
DeleteDocumentRequest & WithVersionName(const char *value)
DeleteDocumentRequest & WithDocumentVersion(const Aws::String &value)
void SetName(const Aws::String &value)
void SetDocumentVersion(const Aws::String &value)
AWS_SSM_API Aws::String SerializePayload() const override
void SetVersionName(const Aws::String &value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String