/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The details of the retention settings for a channel.See Also:
* AWS
* API Reference
The time in days to retain the messages in a channel.
*/ inline int GetRetentionDays() const{ return m_retentionDays; } /** *The time in days to retain the messages in a channel.
*/ inline bool RetentionDaysHasBeenSet() const { return m_retentionDaysHasBeenSet; } /** *The time in days to retain the messages in a channel.
*/ inline void SetRetentionDays(int value) { m_retentionDaysHasBeenSet = true; m_retentionDays = value; } /** *The time in days to retain the messages in a channel.
*/ inline ChannelRetentionSettings& WithRetentionDays(int value) { SetRetentionDays(value); return *this;} private: int m_retentionDays; bool m_retentionDaysHasBeenSet = false; }; } // namespace Model } // namespace Chime } // namespace Aws