AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetTaskTemplateRequest.h
1
6#pragma once
7#include <aws/connect/Connect_EXPORTS.h>
8#include <aws/connect/ConnectRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Http
15{
16 class URI;
17} //namespace Http
18namespace Connect
19{
20namespace Model
21{
22
26 {
27 public:
28 AWS_CONNECT_API GetTaskTemplateRequest();
29
30 // Service request name is the Operation name which will send this request out,
31 // each operation should has unique request name, so that we can get operation's name from this request.
32 // Note: this is not true for response, multiple operations may have the same response name,
33 // so we can not get operation's name from response.
34 inline virtual const char* GetServiceRequestName() const override { return "GetTaskTemplate"; }
35
36 AWS_CONNECT_API Aws::String SerializePayload() const override;
37
38 AWS_CONNECT_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
39
40
42
47 inline const Aws::String& GetInstanceId() const{ return m_instanceId; }
48 inline bool InstanceIdHasBeenSet() const { return m_instanceIdHasBeenSet; }
49 inline void SetInstanceId(const Aws::String& value) { m_instanceIdHasBeenSet = true; m_instanceId = value; }
50 inline void SetInstanceId(Aws::String&& value) { m_instanceIdHasBeenSet = true; m_instanceId = std::move(value); }
51 inline void SetInstanceId(const char* value) { m_instanceIdHasBeenSet = true; m_instanceId.assign(value); }
52 inline GetTaskTemplateRequest& WithInstanceId(const Aws::String& value) { SetInstanceId(value); return *this;}
53 inline GetTaskTemplateRequest& WithInstanceId(Aws::String&& value) { SetInstanceId(std::move(value)); return *this;}
54 inline GetTaskTemplateRequest& WithInstanceId(const char* value) { SetInstanceId(value); return *this;}
56
58
61 inline const Aws::String& GetTaskTemplateId() const{ return m_taskTemplateId; }
62 inline bool TaskTemplateIdHasBeenSet() const { return m_taskTemplateIdHasBeenSet; }
63 inline void SetTaskTemplateId(const Aws::String& value) { m_taskTemplateIdHasBeenSet = true; m_taskTemplateId = value; }
64 inline void SetTaskTemplateId(Aws::String&& value) { m_taskTemplateIdHasBeenSet = true; m_taskTemplateId = std::move(value); }
65 inline void SetTaskTemplateId(const char* value) { m_taskTemplateIdHasBeenSet = true; m_taskTemplateId.assign(value); }
66 inline GetTaskTemplateRequest& WithTaskTemplateId(const Aws::String& value) { SetTaskTemplateId(value); return *this;}
67 inline GetTaskTemplateRequest& WithTaskTemplateId(Aws::String&& value) { SetTaskTemplateId(std::move(value)); return *this;}
68 inline GetTaskTemplateRequest& WithTaskTemplateId(const char* value) { SetTaskTemplateId(value); return *this;}
70
72
76 inline const Aws::String& GetSnapshotVersion() const{ return m_snapshotVersion; }
77 inline bool SnapshotVersionHasBeenSet() const { return m_snapshotVersionHasBeenSet; }
78 inline void SetSnapshotVersion(const Aws::String& value) { m_snapshotVersionHasBeenSet = true; m_snapshotVersion = value; }
79 inline void SetSnapshotVersion(Aws::String&& value) { m_snapshotVersionHasBeenSet = true; m_snapshotVersion = std::move(value); }
80 inline void SetSnapshotVersion(const char* value) { m_snapshotVersionHasBeenSet = true; m_snapshotVersion.assign(value); }
81 inline GetTaskTemplateRequest& WithSnapshotVersion(const Aws::String& value) { SetSnapshotVersion(value); return *this;}
82 inline GetTaskTemplateRequest& WithSnapshotVersion(Aws::String&& value) { SetSnapshotVersion(std::move(value)); return *this;}
83 inline GetTaskTemplateRequest& WithSnapshotVersion(const char* value) { SetSnapshotVersion(value); return *this;}
85 private:
86
87 Aws::String m_instanceId;
88 bool m_instanceIdHasBeenSet = false;
89
90 Aws::String m_taskTemplateId;
91 bool m_taskTemplateIdHasBeenSet = false;
92
93 Aws::String m_snapshotVersion;
94 bool m_snapshotVersionHasBeenSet = false;
95 };
96
97} // namespace Model
98} // namespace Connect
99} // namespace Aws
GetTaskTemplateRequest & WithInstanceId(Aws::String &&value)
GetTaskTemplateRequest & WithTaskTemplateId(const char *value)
void SetSnapshotVersion(const Aws::String &value)
AWS_CONNECT_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
GetTaskTemplateRequest & WithTaskTemplateId(const Aws::String &value)
virtual const char * GetServiceRequestName() const override
GetTaskTemplateRequest & WithInstanceId(const Aws::String &value)
GetTaskTemplateRequest & WithSnapshotVersion(const Aws::String &value)
AWS_CONNECT_API Aws::String SerializePayload() const override
GetTaskTemplateRequest & WithSnapshotVersion(const char *value)
GetTaskTemplateRequest & WithSnapshotVersion(Aws::String &&value)
GetTaskTemplateRequest & WithTaskTemplateId(Aws::String &&value)
GetTaskTemplateRequest & WithInstanceId(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String