AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
GetSyncJobRequest.h
1
6#pragma once
7#include <aws/iottwinmaker/IoTTwinMaker_EXPORTS.h>
8#include <aws/iottwinmaker/IoTTwinMakerRequest.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 IoTTwinMaker
19{
20namespace Model
21{
22
26 {
27 public:
28 AWS_IOTTWINMAKER_API GetSyncJobRequest() = default;
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 "GetSyncJob"; }
35
36 AWS_IOTTWINMAKER_API Aws::String SerializePayload() const override;
37
38 AWS_IOTTWINMAKER_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
39
40
42
46 inline const Aws::String& GetSyncSource() const { return m_syncSource; }
47 inline bool SyncSourceHasBeenSet() const { return m_syncSourceHasBeenSet; }
48 template<typename SyncSourceT = Aws::String>
49 void SetSyncSource(SyncSourceT&& value) { m_syncSourceHasBeenSet = true; m_syncSource = std::forward<SyncSourceT>(value); }
50 template<typename SyncSourceT = Aws::String>
51 GetSyncJobRequest& WithSyncSource(SyncSourceT&& value) { SetSyncSource(std::forward<SyncSourceT>(value)); return *this;}
53
55
58 inline const Aws::String& GetWorkspaceId() const { return m_workspaceId; }
59 inline bool WorkspaceIdHasBeenSet() const { return m_workspaceIdHasBeenSet; }
60 template<typename WorkspaceIdT = Aws::String>
61 void SetWorkspaceId(WorkspaceIdT&& value) { m_workspaceIdHasBeenSet = true; m_workspaceId = std::forward<WorkspaceIdT>(value); }
62 template<typename WorkspaceIdT = Aws::String>
63 GetSyncJobRequest& WithWorkspaceId(WorkspaceIdT&& value) { SetWorkspaceId(std::forward<WorkspaceIdT>(value)); return *this;}
65 private:
66
67 Aws::String m_syncSource;
68 bool m_syncSourceHasBeenSet = false;
69
70 Aws::String m_workspaceId;
71 bool m_workspaceIdHasBeenSet = false;
72 };
73
74} // namespace Model
75} // namespace IoTTwinMaker
76} // namespace Aws
AWS_IOTTWINMAKER_API Aws::String SerializePayload() const override
GetSyncJobRequest & WithSyncSource(SyncSourceT &&value)
AWS_IOTTWINMAKER_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
AWS_IOTTWINMAKER_API GetSyncJobRequest()=default
virtual const char * GetServiceRequestName() const override
GetSyncJobRequest & WithWorkspaceId(WorkspaceIdT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String