AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DescribeDocumentRequest.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:
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 "DescribeDocument"; }
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 DescribeDocumentRequest& WithName(const Aws::String& value) { SetName(value); return *this;}
47 inline DescribeDocumentRequest& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
48 inline DescribeDocumentRequest& 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 DescribeDocumentRequest& WithDocumentVersion(const Aws::String& value) { SetDocumentVersion(value); return *this;}
62 inline DescribeDocumentRequest& WithDocumentVersion(Aws::String&& value) { SetDocumentVersion(std::move(value)); return *this;}
63 inline DescribeDocumentRequest& WithDocumentVersion(const char* value) { SetDocumentVersion(value); return *this;}
65
67
72 inline const Aws::String& GetVersionName() const{ return m_versionName; }
73 inline bool VersionNameHasBeenSet() const { return m_versionNameHasBeenSet; }
74 inline void SetVersionName(const Aws::String& value) { m_versionNameHasBeenSet = true; m_versionName = value; }
75 inline void SetVersionName(Aws::String&& value) { m_versionNameHasBeenSet = true; m_versionName = std::move(value); }
76 inline void SetVersionName(const char* value) { m_versionNameHasBeenSet = true; m_versionName.assign(value); }
77 inline DescribeDocumentRequest& WithVersionName(const Aws::String& value) { SetVersionName(value); return *this;}
78 inline DescribeDocumentRequest& WithVersionName(Aws::String&& value) { SetVersionName(std::move(value)); return *this;}
79 inline DescribeDocumentRequest& WithVersionName(const char* value) { SetVersionName(value); return *this;}
81 private:
82
83 Aws::String m_name;
84 bool m_nameHasBeenSet = false;
85
86 Aws::String m_documentVersion;
87 bool m_documentVersionHasBeenSet = false;
88
89 Aws::String m_versionName;
90 bool m_versionNameHasBeenSet = false;
91 };
92
93} // namespace Model
94} // namespace SSM
95} // namespace Aws
DescribeDocumentRequest & WithDocumentVersion(const Aws::String &value)
DescribeDocumentRequest & WithVersionName(const Aws::String &value)
AWS_SSM_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
DescribeDocumentRequest & WithName(Aws::String &&value)
AWS_SSM_API Aws::String SerializePayload() const override
DescribeDocumentRequest & WithName(const Aws::String &value)
void SetDocumentVersion(const Aws::String &value)
DescribeDocumentRequest & WithDocumentVersion(Aws::String &&value)
DescribeDocumentRequest & WithDocumentVersion(const char *value)
void SetVersionName(const Aws::String &value)
DescribeDocumentRequest & WithName(const char *value)
virtual const char * GetServiceRequestName() const override
DescribeDocumentRequest & WithVersionName(Aws::String &&value)
DescribeDocumentRequest & WithVersionName(const char *value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String