AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DescribeRecoveryPointRequest.h
1
6#pragma once
7#include <aws/backup/Backup_EXPORTS.h>
8#include <aws/backup/BackupRequest.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 Backup
19{
20namespace Model
21{
22
26 {
27 public:
28 AWS_BACKUP_API DescribeRecoveryPointRequest() = 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 "DescribeRecoveryPoint"; }
35
36 AWS_BACKUP_API Aws::String SerializePayload() const override;
37
38 AWS_BACKUP_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
39
40
42
47 inline const Aws::String& GetBackupVaultName() const { return m_backupVaultName; }
48 inline bool BackupVaultNameHasBeenSet() const { return m_backupVaultNameHasBeenSet; }
49 template<typename BackupVaultNameT = Aws::String>
50 void SetBackupVaultName(BackupVaultNameT&& value) { m_backupVaultNameHasBeenSet = true; m_backupVaultName = std::forward<BackupVaultNameT>(value); }
51 template<typename BackupVaultNameT = Aws::String>
52 DescribeRecoveryPointRequest& WithBackupVaultName(BackupVaultNameT&& value) { SetBackupVaultName(std::forward<BackupVaultNameT>(value)); return *this;}
54
56
61 inline const Aws::String& GetRecoveryPointArn() const { return m_recoveryPointArn; }
62 inline bool RecoveryPointArnHasBeenSet() const { return m_recoveryPointArnHasBeenSet; }
63 template<typename RecoveryPointArnT = Aws::String>
64 void SetRecoveryPointArn(RecoveryPointArnT&& value) { m_recoveryPointArnHasBeenSet = true; m_recoveryPointArn = std::forward<RecoveryPointArnT>(value); }
65 template<typename RecoveryPointArnT = Aws::String>
66 DescribeRecoveryPointRequest& WithRecoveryPointArn(RecoveryPointArnT&& value) { SetRecoveryPointArn(std::forward<RecoveryPointArnT>(value)); return *this;}
68
70
73 inline const Aws::String& GetBackupVaultAccountId() const { return m_backupVaultAccountId; }
74 inline bool BackupVaultAccountIdHasBeenSet() const { return m_backupVaultAccountIdHasBeenSet; }
75 template<typename BackupVaultAccountIdT = Aws::String>
76 void SetBackupVaultAccountId(BackupVaultAccountIdT&& value) { m_backupVaultAccountIdHasBeenSet = true; m_backupVaultAccountId = std::forward<BackupVaultAccountIdT>(value); }
77 template<typename BackupVaultAccountIdT = Aws::String>
78 DescribeRecoveryPointRequest& WithBackupVaultAccountId(BackupVaultAccountIdT&& value) { SetBackupVaultAccountId(std::forward<BackupVaultAccountIdT>(value)); return *this;}
80 private:
81
82 Aws::String m_backupVaultName;
83 bool m_backupVaultNameHasBeenSet = false;
84
85 Aws::String m_recoveryPointArn;
86 bool m_recoveryPointArnHasBeenSet = false;
87
88 Aws::String m_backupVaultAccountId;
89 bool m_backupVaultAccountIdHasBeenSet = false;
90 };
91
92} // namespace Model
93} // namespace Backup
94} // namespace Aws
AWS_BACKUP_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
DescribeRecoveryPointRequest & WithBackupVaultAccountId(BackupVaultAccountIdT &&value)
DescribeRecoveryPointRequest & WithBackupVaultName(BackupVaultNameT &&value)
AWS_BACKUP_API DescribeRecoveryPointRequest()=default
virtual const char * GetServiceRequestName() const override
DescribeRecoveryPointRequest & WithRecoveryPointArn(RecoveryPointArnT &&value)
AWS_BACKUP_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String