/**
* 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;} private: VaultNotificationConfig m_vaultNotificationConfig; }; } // namespace Model } // namespace Glacier } // namespace Aws