AWS SDK for C++

AWS SDK for C++ Version 1.11.748

Loading...
Searching...
No Matches
DescribeRestoreJobRequest.h
1
6#pragma once
7#include <aws/backup/BackupRequest.h>
8#include <aws/backup/Backup_EXPORTS.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Backup {
15namespace Model {
16
20 public:
21 AWS_BACKUP_API DescribeRestoreJobRequest() = default;
22
23 // Service request name is the Operation name which will send this request out,
24 // each operation should has unique request name, so that we can get operation's name from this request.
25 // Note: this is not true for response, multiple operations may have the same response name,
26 // so we can not get operation's name from response.
27 inline virtual const char* GetServiceRequestName() const override { return "DescribeRestoreJob"; }
28
29 AWS_BACKUP_API Aws::String SerializePayload() const override;
30
32
35 inline const Aws::String& GetRestoreJobId() const { return m_restoreJobId; }
36 inline bool RestoreJobIdHasBeenSet() const { return m_restoreJobIdHasBeenSet; }
37 template <typename RestoreJobIdT = Aws::String>
38 void SetRestoreJobId(RestoreJobIdT&& value) {
39 m_restoreJobIdHasBeenSet = true;
40 m_restoreJobId = std::forward<RestoreJobIdT>(value);
41 }
42 template <typename RestoreJobIdT = Aws::String>
44 SetRestoreJobId(std::forward<RestoreJobIdT>(value));
45 return *this;
46 }
48 private:
49 Aws::String m_restoreJobId;
50 bool m_restoreJobIdHasBeenSet = false;
51};
52
53} // namespace Model
54} // namespace Backup
55} // namespace Aws
DescribeRestoreJobRequest & WithRestoreJobId(RestoreJobIdT &&value)
AWS_BACKUP_API DescribeRestoreJobRequest()=default
virtual const char * GetServiceRequestName() const override
AWS_BACKUP_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String