/** * 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 DynamoDB { namespace Model { class AWS_DYNAMODB_API DescribeTimeToLiveResult { public: DescribeTimeToLiveResult(); DescribeTimeToLiveResult(const Aws::AmazonWebServiceResult& result); DescribeTimeToLiveResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

*/ inline const TimeToLiveDescription& GetTimeToLiveDescription() const{ return m_timeToLiveDescription; } /** *

*/ inline void SetTimeToLiveDescription(const TimeToLiveDescription& value) { m_timeToLiveDescription = value; } /** *

*/ inline void SetTimeToLiveDescription(TimeToLiveDescription&& value) { m_timeToLiveDescription = std::move(value); } /** *

*/ inline DescribeTimeToLiveResult& WithTimeToLiveDescription(const TimeToLiveDescription& value) { SetTimeToLiveDescription(value); return *this;} /** *

*/ inline DescribeTimeToLiveResult& WithTimeToLiveDescription(TimeToLiveDescription&& value) { SetTimeToLiveDescription(std::move(value)); return *this;} private: TimeToLiveDescription m_timeToLiveDescription; }; } // namespace Model } // namespace DynamoDB } // namespace Aws