/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace Glacier { namespace Model { /** *

Contains the Amazon S3 Glacier response to your request.

See * Also:

AWS * API Reference

*/ class AWS_GLACIER_API GetVaultNotificationsResult { public: GetVaultNotificationsResult(); GetVaultNotificationsResult(const Aws::AmazonWebServiceResult& result); GetVaultNotificationsResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

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