/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains the Amazon S3 Glacier response to your request.See
* Also:
AWS
* API Reference
Returns the notification configuration set on the vault.
*/ inline const VaultNotificationConfig& GetVaultNotificationConfig() const{ return m_vaultNotificationConfig; } /** *Returns the notification configuration set on the vault.
*/ inline void SetVaultNotificationConfig(const VaultNotificationConfig& value) { m_vaultNotificationConfig = value; } /** *Returns the notification configuration set on the vault.
*/ inline void SetVaultNotificationConfig(VaultNotificationConfig&& value) { m_vaultNotificationConfig = std::move(value); } /** *Returns the notification configuration set on the vault.
*/ inline GetVaultNotificationsResult& WithVaultNotificationConfig(const VaultNotificationConfig& value) { SetVaultNotificationConfig(value); return *this;} /** *Returns the notification configuration set on the vault.
*/ inline GetVaultNotificationsResult& WithVaultNotificationConfig(VaultNotificationConfig&& value) { SetVaultNotificationConfig(std::move(value)); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline GetVaultNotificationsResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetVaultNotificationsResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetVaultNotificationsResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: VaultNotificationConfig m_vaultNotificationConfig; Aws::String m_requestId; }; } // namespace Model } // namespace Glacier } // namespace Aws