AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
CompleteVaultLockRequest.h
1
6#pragma once
7#include <aws/glacier/Glacier_EXPORTS.h>
8#include <aws/glacier/GlacierRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Glacier
15{
16namespace Model
17{
18
26 {
27 public:
28 AWS_GLACIER_API CompleteVaultLockRequest();
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 "CompleteVaultLock"; }
35
36 AWS_GLACIER_API Aws::String SerializePayload() const override;
37
38
40
48 inline const Aws::String& GetAccountId() const{ return m_accountId; }
49 inline bool AccountIdHasBeenSet() const { return m_accountIdHasBeenSet; }
50 inline void SetAccountId(const Aws::String& value) { m_accountIdHasBeenSet = true; m_accountId = value; }
51 inline void SetAccountId(Aws::String&& value) { m_accountIdHasBeenSet = true; m_accountId = std::move(value); }
52 inline void SetAccountId(const char* value) { m_accountIdHasBeenSet = true; m_accountId.assign(value); }
53 inline CompleteVaultLockRequest& WithAccountId(const Aws::String& value) { SetAccountId(value); return *this;}
54 inline CompleteVaultLockRequest& WithAccountId(Aws::String&& value) { SetAccountId(std::move(value)); return *this;}
55 inline CompleteVaultLockRequest& WithAccountId(const char* value) { SetAccountId(value); return *this;}
57
59
62 inline const Aws::String& GetVaultName() const{ return m_vaultName; }
63 inline bool VaultNameHasBeenSet() const { return m_vaultNameHasBeenSet; }
64 inline void SetVaultName(const Aws::String& value) { m_vaultNameHasBeenSet = true; m_vaultName = value; }
65 inline void SetVaultName(Aws::String&& value) { m_vaultNameHasBeenSet = true; m_vaultName = std::move(value); }
66 inline void SetVaultName(const char* value) { m_vaultNameHasBeenSet = true; m_vaultName.assign(value); }
67 inline CompleteVaultLockRequest& WithVaultName(const Aws::String& value) { SetVaultName(value); return *this;}
68 inline CompleteVaultLockRequest& WithVaultName(Aws::String&& value) { SetVaultName(std::move(value)); return *this;}
69 inline CompleteVaultLockRequest& WithVaultName(const char* value) { SetVaultName(value); return *this;}
71
73
77 inline const Aws::String& GetLockId() const{ return m_lockId; }
78 inline bool LockIdHasBeenSet() const { return m_lockIdHasBeenSet; }
79 inline void SetLockId(const Aws::String& value) { m_lockIdHasBeenSet = true; m_lockId = value; }
80 inline void SetLockId(Aws::String&& value) { m_lockIdHasBeenSet = true; m_lockId = std::move(value); }
81 inline void SetLockId(const char* value) { m_lockIdHasBeenSet = true; m_lockId.assign(value); }
82 inline CompleteVaultLockRequest& WithLockId(const Aws::String& value) { SetLockId(value); return *this;}
83 inline CompleteVaultLockRequest& WithLockId(Aws::String&& value) { SetLockId(std::move(value)); return *this;}
84 inline CompleteVaultLockRequest& WithLockId(const char* value) { SetLockId(value); return *this;}
86 private:
87
88 Aws::String m_accountId;
89 bool m_accountIdHasBeenSet = false;
90
91 Aws::String m_vaultName;
92 bool m_vaultNameHasBeenSet = false;
93
94 Aws::String m_lockId;
95 bool m_lockIdHasBeenSet = false;
96 };
97
98} // namespace Model
99} // namespace Glacier
100} // namespace Aws
CompleteVaultLockRequest & WithVaultName(Aws::String &&value)
CompleteVaultLockRequest & WithLockId(const Aws::String &value)
CompleteVaultLockRequest & WithLockId(Aws::String &&value)
CompleteVaultLockRequest & WithVaultName(const Aws::String &value)
CompleteVaultLockRequest & WithAccountId(Aws::String &&value)
AWS_GLACIER_API Aws::String SerializePayload() const override
CompleteVaultLockRequest & WithAccountId(const char *value)
CompleteVaultLockRequest & WithAccountId(const Aws::String &value)
CompleteVaultLockRequest & WithLockId(const char *value)
virtual const char * GetServiceRequestName() const override
CompleteVaultLockRequest & WithVaultName(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String