/* * 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 rds-2014-10-31.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.RDS.Model { /// /// This data type is used as a response element to DownloadDBLogFilePortion. /// public partial class DownloadDBLogFilePortionResponse : AmazonWebServiceResponse { private bool? _additionalDataPending; private string _logFileData; private string _marker; /// /// Gets and sets the property AdditionalDataPending. /// /// Boolean value that if true, indicates there is more data to be downloaded. /// /// public bool AdditionalDataPending { get { return this._additionalDataPending.GetValueOrDefault(); } set { this._additionalDataPending = value; } } // Check to see if AdditionalDataPending property is set internal bool IsSetAdditionalDataPending() { return this._additionalDataPending.HasValue; } /// /// Gets and sets the property LogFileData. /// /// Entries from the specified log file. /// /// public string LogFileData { get { return this._logFileData; } set { this._logFileData = value; } } // Check to see if LogFileData property is set internal bool IsSetLogFileData() { return this._logFileData != null; } /// /// Gets and sets the property Marker. /// /// A pagination token that can be used in a later DownloadDBLogFilePortion /// request. /// /// public string Marker { get { return this._marker; } set { this._marker = value; } } // Check to see if Marker property is set internal bool IsSetMarker() { return this._marker != null; } } }