/*
 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License").
 * You may not use this file except in compliance with the License.
 * A copy of the License is located at
 * 
 *  http://aws.amazon.com/apache2.0
 * 
 * or in the "license" file accompanying this file. This file is distributed
 * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
 * express or implied. See the License for the specific language governing
 * permissions and limitations under the License.
 */
/*
 * Do not modify this file. This file is generated from the lightsail-2016-11-28.normal.json service model.
 */
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Lightsail.Model
{
    /// 
    /// This is the response object from the GetRelationalDatabaseLogEvents operation.
    /// 
    public partial class GetRelationalDatabaseLogEventsResponse : AmazonWebServiceResponse
    {
        private string _nextBackwardToken;
        private string _nextForwardToken;
        private List _resourceLogEvents = new List();
        /// 
        /// Gets and sets the property NextBackwardToken. 
        /// 
        /// A token used for advancing to the previous page of results from your get relational
        /// database log events request.
        /// 
        /// 
        public string NextBackwardToken
        {
            get { return this._nextBackwardToken; }
            set { this._nextBackwardToken = value; }
        }
        // Check to see if NextBackwardToken property is set
        internal bool IsSetNextBackwardToken()
        {
            return this._nextBackwardToken != null;
        }
        /// 
        /// Gets and sets the property NextForwardToken. 
        /// 
        /// A token used for advancing to the next page of results from your get relational database
        /// log events request.
        /// 
        /// 
        public string NextForwardToken
        {
            get { return this._nextForwardToken; }
            set { this._nextForwardToken = value; }
        }
        // Check to see if NextForwardToken property is set
        internal bool IsSetNextForwardToken()
        {
            return this._nextForwardToken != null;
        }
        /// 
        /// Gets and sets the property ResourceLogEvents. 
        /// 
        /// An object describing the result of your get relational database log events request.
        /// 
        /// 
        public List ResourceLogEvents
        {
            get { return this._resourceLogEvents; }
            set { this._resourceLogEvents = value; }
        }
        // Check to see if ResourceLogEvents property is set
        internal bool IsSetResourceLogEvents()
        {
            return this._resourceLogEvents != null && this._resourceLogEvents.Count > 0; 
        }
    }
}