AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
SetVaultNotificationsRequest.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 <aws/glacier/model/VaultNotificationConfig.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Glacier
16{
17namespace Model
18{
19
27 {
28 public:
30
31 // Service request name is the Operation name which will send this request out,
32 // each operation should has unique request name, so that we can get operation's name from this request.
33 // Note: this is not true for response, multiple operations may have the same response name,
34 // so we can not get operation's name from response.
35 inline virtual const char* GetServiceRequestName() const override { return "SetVaultNotifications"; }
36
37 AWS_GLACIER_API Aws::String SerializePayload() const override;
38
39
41
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 SetVaultNotificationsRequest& WithAccountId(const Aws::String& value) { SetAccountId(value); return *this;}
54 inline SetVaultNotificationsRequest& WithAccountId(Aws::String&& value) { SetAccountId(std::move(value)); return *this;}
55 inline SetVaultNotificationsRequest& 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 SetVaultNotificationsRequest& WithVaultName(const Aws::String& value) { SetVaultName(value); return *this;}
68 inline SetVaultNotificationsRequest& WithVaultName(Aws::String&& value) { SetVaultName(std::move(value)); return *this;}
69 inline SetVaultNotificationsRequest& WithVaultName(const char* value) { SetVaultName(value); return *this;}
71
73
76 inline const VaultNotificationConfig& GetVaultNotificationConfig() const{ return m_vaultNotificationConfig; }
77 inline bool VaultNotificationConfigHasBeenSet() const { return m_vaultNotificationConfigHasBeenSet; }
78 inline void SetVaultNotificationConfig(const VaultNotificationConfig& value) { m_vaultNotificationConfigHasBeenSet = true; m_vaultNotificationConfig = value; }
79 inline void SetVaultNotificationConfig(VaultNotificationConfig&& value) { m_vaultNotificationConfigHasBeenSet = true; m_vaultNotificationConfig = std::move(value); }
83 private:
84
85 Aws::String m_accountId;
86 bool m_accountIdHasBeenSet = false;
87
88 Aws::String m_vaultName;
89 bool m_vaultNameHasBeenSet = false;
90
91 VaultNotificationConfig m_vaultNotificationConfig;
92 bool m_vaultNotificationConfigHasBeenSet = false;
93 };
94
95} // namespace Model
96} // namespace Glacier
97} // namespace Aws
SetVaultNotificationsRequest & WithAccountId(const char *value)
void SetVaultNotificationConfig(const VaultNotificationConfig &value)
SetVaultNotificationsRequest & WithAccountId(Aws::String &&value)
const VaultNotificationConfig & GetVaultNotificationConfig() const
void SetVaultNotificationConfig(VaultNotificationConfig &&value)
AWS_GLACIER_API Aws::String SerializePayload() const override
virtual const char * GetServiceRequestName() const override
SetVaultNotificationsRequest & WithVaultNotificationConfig(VaultNotificationConfig &&value)
SetVaultNotificationsRequest & WithVaultNotificationConfig(const VaultNotificationConfig &value)
SetVaultNotificationsRequest & WithVaultName(Aws::String &&value)
SetVaultNotificationsRequest & WithVaultName(const Aws::String &value)
SetVaultNotificationsRequest & WithAccountId(const Aws::String &value)
SetVaultNotificationsRequest & WithVaultName(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String